diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-11-23 03:56:25 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-11-23 03:56:25 +0000 |
commit | 77ba2dd2ebd45e7a11b64a8e9c8081f2e691ef29 (patch) | |
tree | 5801eb3f03acb585d41effe76fbc39deb61d7a0c /media-sound/fluidsynth/fluidsynth-1.1.6.ebuild | |
parent | Fix bytecode compilation (diff) | |
download | historical-77ba2dd2ebd45e7a11b64a8e9c8081f2e691ef29.tar.gz historical-77ba2dd2ebd45e7a11b64a8e9c8081f2e691ef29.tar.bz2 historical-77ba2dd2ebd45e7a11b64a8e9c8081f2e691ef29.zip |
Use append-flags -pthread to avoid missing symbol pthread_create wrt #436762 by "ungift-ed"
Package-Manager: portage-2.2.0_alpha142/cvs/Linux x86_64
Manifest-Sign-Key: 0x4868F14D
Diffstat (limited to 'media-sound/fluidsynth/fluidsynth-1.1.6.ebuild')
-rw-r--r-- | media-sound/fluidsynth/fluidsynth-1.1.6.ebuild | 8 |
1 files changed, 6 insertions, 2 deletions
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) |