svn commit: r388047 - head/audio/fluidsynth
Antoine Brodin
antoine at FreeBSD.org
Sun May 31 07:18:01 UTC 2015
Author: antoine
Date: Sun May 31 07:18:00 2015
New Revision: 388047
URL: https://svnweb.freebsd.org/changeset/ports/388047
Log:
- Add back part of LDFLAGS removed in r387982, it's needed to link at least
on FreeBSD 9.3:
fluid_sys.c:(.text+0xced): undefined reference to `pthread_setschedparam'
- While here, fix a typo in an option helper
Modified:
head/audio/fluidsynth/Makefile
Modified: head/audio/fluidsynth/Makefile
==============================================================================
--- head/audio/fluidsynth/Makefile Sun May 31 02:26:56 2015 (r388046)
+++ head/audio/fluidsynth/Makefile Sun May 31 07:18:00 2015 (r388047)
@@ -22,6 +22,8 @@ CMAKE_ARGS= -Denable-ladcca:BOOL=FALSE \
-Denable-midishare:BOOL=FALSE
USE_LDCONFIG= yes
+LDFLAGS+= -lpthread
+
JACK_LIB_DEPENDS= libjack.so:${PORTSDIR}/audio/jack
JACK_CMAKE_OFF= -Denable-jack:BOOL=FALSE
@@ -45,7 +47,7 @@ PULSEAUDIO_LIB_DEPENDS= libpulse.so:${PO
PULSEAUDIO_CMAKE_OFF= -Denable-pulseaudio:BOOL=FALSE
SNDFILE_LIB_DEPENDS= libsndfile.so:${PORTSDIR}/audio/libsndfile
-SNDFILE_CMAKe_OFF= -Denable-libsndfile:BOOL=FALSE
+SNDFILE_CMAKE_OFF= -Denable-libsndfile:BOOL=FALSE
post-patch:
@${REINPLACE_CMD} -e \
More information about the svn-ports-all
mailing list