Date: Sun, 31 May 2015 07:18:01 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388047 - head/audio/fluidsynth Message-ID: <201505310718.t4V7I18D044903@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505310718.t4V7I18D044903>