diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2006-06-06 18:50:13 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2006-06-06 18:50:13 +0000 |
commit | da10a29df7c8ba92dd2a0d3636705756adeee846 (patch) | |
tree | d3a3c457c1ec32c7715c1944b294325cf5d174cf /dev-libs | |
parent | Stable on ppc64; bug #135318 (diff) | |
download | gentoo-2-da10a29df7c8ba92dd2a0d3636705756adeee846.tar.gz gentoo-2-da10a29df7c8ba92dd2a0d3636705756adeee846.tar.bz2 gentoo-2-da10a29df7c8ba92dd2a0d3636705756adeee846.zip |
Make USE="-alsa oss" work, thanks to Christophe PEREZ <chris@novazur.fr> in bug 127677
(Portage version: 2.1_rc4-r3)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/pwlib/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/pwlib/pwlib-1.10.1.ebuild | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/dev-libs/pwlib/ChangeLog b/dev-libs/pwlib/ChangeLog index 8fbdc5445b8f..bdb8d26373df 100644 --- a/dev-libs/pwlib/ChangeLog +++ b/dev-libs/pwlib/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/pwlib # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/pwlib/ChangeLog,v 1.96 2006/06/06 18:08:21 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pwlib/ChangeLog,v 1.97 2006/06/06 18:50:13 genstef Exp $ + + 06 Jun 2006; Stefan Schweizer <genstef@gentoo.org> pwlib-1.10.1.ebuild: + Make USE="-alsa oss" work, thanks to Christophe PEREZ <chris@novazur.fr> in + bug 127677 *pwlib-1.10.1 (06 Jun 2006) diff --git a/dev-libs/pwlib/pwlib-1.10.1.ebuild b/dev-libs/pwlib/pwlib-1.10.1.ebuild index f10d62c7ccdd..6928c6b81872 100644 --- a/dev-libs/pwlib/pwlib-1.10.1.ebuild +++ b/dev-libs/pwlib/pwlib-1.10.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/pwlib/pwlib-1.10.1.ebuild,v 1.1 2006/06/06 18:08:21 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pwlib/pwlib-1.10.1.ebuild,v 1.2 2006/06/06 18:50:13 genstef Exp $ inherit eutils flag-o-matic multilib @@ -54,8 +54,11 @@ src_unpack() { } src_compile() { + local myconf="" # may cause ICE (bug #70638) filter-flags -fstack-protector + # disable-alsa breaks oss, see bug 127677 + use alsa && myconf="--enable-alsa" econf \ --enable-plugins \ @@ -64,7 +67,6 @@ src_compile() { $(use_enable ieee1394 dc) \ $(use_enable ieee1394 avc) \ $(use_enable oss) \ - $(use_enable alsa) \ $(use_enable ipv6) \ $(use_enable sdl) \ $(use_enable ssl openssl) \ @@ -73,6 +75,7 @@ src_compile() { $(use_enable ldap openldap) \ $(use_enable sasl) \ $(use_enable xml expat) \ + ${myconf} \ || die "configure failed" # Horrible hack to strip out -L/usr/lib to allow upgrades |