From owner-svn-ports-all@FreeBSD.ORG Sun May 31 07:18:01 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C262E9E5; Sun, 31 May 2015 07:18:01 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B085F1AF8; Sun, 31 May 2015 07:18:01 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4V7I1XL044904; Sun, 31 May 2015 07:18:01 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4V7I18D044903; Sun, 31 May 2015 07:18:01 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201505310718.t4V7I18D044903@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 31 May 2015 07:18:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388047 - head/audio/fluidsynth X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 May 2015 07:18:01 -0000 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 \