diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-12-25 10:05:37 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-12-25 10:05:37 +0000 |
commit | ced130114c67a3afafccb77ea9eaa1f7f700ef29 (patch) | |
tree | 788c38a6a25277280a28b84d20e9182fd215afa4 /media-libs | |
parent | Tarball fix. (diff) | |
download | gentoo-2-ced130114c67a3afafccb77ea9eaa1f7f700ef29.tar.gz gentoo-2-ced130114c67a3afafccb77ea9eaa1f7f700ef29.tar.bz2 gentoo-2-ced130114c67a3afafccb77ea9eaa1f7f700ef29.zip |
Removed C(XX)FLAGS as configure sets very specific optimization settings
already. This should fix problems such as the one found on bug #11779
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/xine-lib/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/xine-lib/xine-lib-1_beta1.ebuild | 8 |
2 files changed, 13 insertions, 2 deletions
diff --git a/media-libs/xine-lib/ChangeLog b/media-libs/xine-lib/ChangeLog index 68fa0480c799..d18a655e63a5 100644 --- a/media-libs/xine-lib/ChangeLog +++ b/media-libs/xine-lib/ChangeLog @@ -1,9 +1,14 @@ # ChangeLog for media-libs/xine-lib # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-libs/xine-lib/ChangeLog,v 1.27 2002/12/25 03:45:12 agenkin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/xine-lib/ChangeLog,v 1.28 2002/12/25 10:05:37 raker Exp $ *xine-lib-1_beta1 (24 Dec 2002) + 25 Dec 2002; Nick Hadaway <raker@gentoo.org> xine-lib-1_beta1.ebuild : + Removed {C.CXX}FLAGS as configure sets very specific optimization + settings already and this should solve problems such as those found + on bug #11779. + 24 Dec 2002; Arcady Genkin <agenkin@gentoo.org> : Version bump. diff --git a/media-libs/xine-lib/xine-lib-1_beta1.ebuild b/media-libs/xine-lib/xine-lib-1_beta1.ebuild index 924a7a7bade7..558bca7b26c5 100644 --- a/media-libs/xine-lib/xine-lib-1_beta1.ebuild +++ b/media-libs/xine-lib/xine-lib-1_beta1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/xine-lib/xine-lib-1_beta1.ebuild,v 1.1 2002/12/25 03:45:12 agenkin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/xine-lib/xine-lib-1_beta1.ebuild,v 1.2 2002/12/25 10:05:37 raker Exp $ DESCRIPTION="Core libraries for Xine movie player." HOMEPAGE="http://xine.sourceforge.net/" @@ -60,6 +60,12 @@ src_compile() { einfo "myconf: ${myconf}" + # Very specific optimization is set by configure + # Should fix problems like the one found on bug #11779 + # raker@gentoo.org (25 Dec 2002) + export CFLAGS="" + export CXXFLAGS="" + econf ${myconf} || die emake || die } |