diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-05-12 15:51:24 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-05-12 15:51:24 +0000 |
commit | 479f566d111b7c5bf5140e5ff0adca280df7f5a3 (patch) | |
tree | 81db8cecbb86dd268b32b860e42968d00a80e0fa /media-libs/libvpx | |
parent | keyword ~amd64-fbsd (diff) | |
download | gentoo-2-479f566d111b7c5bf5140e5ff0adca280df7f5a3.tar.gz gentoo-2-479f566d111b7c5bf5140e5ff0adca280df7f5a3.tar.bz2 gentoo-2-479f566d111b7c5bf5140e5ff0adca280df7f5a3.zip |
use extra-cflags to overshadow optimizations if needed and do not force disabling optimizations
(Portage version: 2.2.0_alpha104/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/libvpx')
-rw-r--r-- | media-libs/libvpx/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/libvpx/libvpx-1.1.0.ebuild | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/media-libs/libvpx/ChangeLog b/media-libs/libvpx/ChangeLog index 13b892e4e5c0..79453cbc4c8f 100644 --- a/media-libs/libvpx/ChangeLog +++ b/media-libs/libvpx/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/libvpx # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.53 2012/05/12 15:07:31 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.54 2012/05/12 15:51:24 aballier Exp $ + + 12 May 2012; Alexis Ballier <aballier@gentoo.org> libvpx-1.1.0.ebuild: + use extra-cflags to overshadow optimizations if needed and do not force + disabling optimizations 12 May 2012; Alexis Ballier <aballier@gentoo.org> libvpx-1.1.0.ebuild: disable hardcoded cflags by disabling (compiler) optimizations, user cflags diff --git a/media-libs/libvpx/libvpx-1.1.0.ebuild b/media-libs/libvpx/libvpx-1.1.0.ebuild index d23f026ac244..45c7c2bbfcef 100644 --- a/media-libs/libvpx/libvpx-1.1.0.ebuild +++ b/media-libs/libvpx/libvpx-1.1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-1.1.0.ebuild,v 1.3 2012/05/12 15:07:31 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-1.1.0.ebuild,v 1.4 2012/05/12 15:51:24 aballier Exp $ EAPI=4 inherit multilib @@ -60,7 +60,7 @@ src_configure() { --enable-pic \ --enable-vp8 \ --enable-shared \ - --disable-optimizations \ + --extra-cflags="${CFLAGS}" \ $(use_enable altivec) \ $(use_enable debug debug-libs) \ $(use_enable debug) \ |