diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-11-23 03:56:20 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-11-23 03:56:20 +0000 |
commit | b54c5b6e6a2c614c02d6cea6d630d59a60d144b9 (patch) | |
tree | 695161db14669fde15e8618ae11c4b0addab500b /media-sound/fluidsynth | |
parent | Fix bytecode compilation (diff) | |
download | gentoo-2-b54c5b6e6a2c614c02d6cea6d630d59a60d144b9.tar.gz gentoo-2-b54c5b6e6a2c614c02d6cea6d630d59a60d144b9.tar.bz2 gentoo-2-b54c5b6e6a2c614c02d6cea6d630d59a60d144b9.zip |
Use append-flags -pthread to avoid missing symbol pthread_create wrt #436762 by "ungift-ed"
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'media-sound/fluidsynth')
-rw-r--r-- | media-sound/fluidsynth/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/fluidsynth/fluidsynth-1.1.6.ebuild | 8 |
2 files changed, 11 insertions, 3 deletions
diff --git a/media-sound/fluidsynth/ChangeLog b/media-sound/fluidsynth/ChangeLog index 88800308e2b7..c3013d016e21 100644 --- a/media-sound/fluidsynth/ChangeLog +++ b/media-sound/fluidsynth/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/fluidsynth # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.71 2012/08/16 16:56:42 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.72 2012/11/23 03:56:20 ssuominen Exp $ + + 23 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> fluidsynth-1.1.6.ebuild: + Use append-flags -pthread to avoid missing symbol pthread_create wrt #436762 + by "ungift-ed" 16 Aug 2012; Tim Harder <radhermit@gentoo.org> -fluidsynth-1.0.9.ebuild, -files/fluidsynth-1.0.9-pkg.patch, -fluidsynth-1.1.3.ebuild, diff --git a/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild b/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild index bec3b7750bbd..9745d0f3cf2b 100644 --- a/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild +++ b/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild,v 1.1 2012/08/16 16:50:38 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild,v 1.2 2012/11/23 03:56:20 ssuominen Exp $ EAPI=4 -inherit cmake-utils +inherit cmake-utils flag-o-matic DESCRIPTION="Fluidsynth is a software real-time synthesizer based on the Soundfont 2 specifications." HOMEPAGE="http://www.fluidsynth.org/" @@ -29,6 +29,10 @@ DEPEND="${RDEPEND} virtual/pkgconfig" src_configure() { + # autotools based build system has AC_CHECK_LIB(pthread, pthread_create) wrt + # bug #436762 + append-flags -pthread + mycmakeargs=( $(cmake-utils_use alsa enable-alsa) $(cmake-utils_use dbus enable-dbus) |