diff options
author | Tim Harder <radhermit@gentoo.org> | 2015-01-08 04:41:01 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2015-01-08 04:41:01 +0000 |
commit | 9baf0c4da3ed7bb9e66186f85dc5524a1c467a63 (patch) | |
tree | 60c38e2d26bc15c73f210e32237369c60ea98004 /media-gfx | |
parent | Bump slime to 2.12 (diff) | |
download | gentoo-2-9baf0c4da3ed7bb9e66186f85dc5524a1c467a63.tar.gz gentoo-2-9baf0c4da3ed7bb9e66186f85dc5524a1c467a63.tar.bz2 gentoo-2-9baf0c4da3ed7bb9e66186f85dc5524a1c467a63.zip |
Append to C++ flags instead of C preprocessor flags (fixes bug #533016).
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/gmic/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/gmic/gmic-1.6.0.2.ebuild | 6 |
2 files changed, 8 insertions, 5 deletions
diff --git a/media-gfx/gmic/ChangeLog b/media-gfx/gmic/ChangeLog index f72f00143be1..536c36283fd4 100644 --- a/media-gfx/gmic/ChangeLog +++ b/media-gfx/gmic/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-gfx/gmic -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gmic/ChangeLog,v 1.54 2014/12/03 08:04:56 radhermit Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gmic/ChangeLog,v 1.55 2015/01/08 04:41:01 radhermit Exp $ + + 08 Jan 2015; Tim Harder <radhermit@gentoo.org> gmic-1.6.0.2.ebuild: + Append to C++ flags instead of C preprocessor flags (fixes bug #533016). *gmic-1.6.0.2 (03 Dec 2014) diff --git a/media-gfx/gmic/gmic-1.6.0.2.ebuild b/media-gfx/gmic/gmic-1.6.0.2.ebuild index 0b0897458ff4..59248cac774a 100644 --- a/media-gfx/gmic/gmic-1.6.0.2.ebuild +++ b/media-gfx/gmic/gmic-1.6.0.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gmic/gmic-1.6.0.2.ebuild,v 1.1 2014/12/03 08:04:56 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gmic/gmic-1.6.0.2.ebuild,v 1.2 2015/01/08 04:41:01 radhermit Exp $ EAPI=5 @@ -61,7 +61,7 @@ src_prepare() { sed -i -r "s/^((X11|XSHM)_(CFLAGS|LIBS) =).*/\1/" Makefile || die # disable display capabilities when X support is disabled - append-cppflags -Dcimg_display=0 + append-cxxflags -Dcimg_display=0 fi } |