summaryrefslogtreecommitdiff
path: root/x11-wm
diff options
context:
space:
mode:
authorYuri Vasilevski <yvasilev@gentoo.org>2008-02-06 20:09:50 +0000
committerYuri Vasilevski <yvasilev@gentoo.org>2008-02-06 20:09:50 +0000
commit69d08e8dcb7aeadab218dbf8c74d48585f9f3183 (patch)
tree032bce769e5ac77d55d5545629eaf25a73509c24 /x11-wm
parentDropped ppc-macos keyword, see you in prefix (diff)
downloadgentoo-2-69d08e8dcb7aeadab218dbf8c74d48585f9f3183.tar.gz
gentoo-2-69d08e8dcb7aeadab218dbf8c74d48585f9f3183.tar.bz2
gentoo-2-69d08e8dcb7aeadab218dbf8c74d48585f9f3183.zip
Added -Wl,--no-as-needed to LDFLAGS to fix Bug #203150: x11-wm/matchbox-0.7.1: undefined reference to XShm* w/ --as-needed
(Portage version: 2.1.4.1)
Diffstat (limited to 'x11-wm')
-rw-r--r--x11-wm/matchbox/ChangeLog8
-rw-r--r--x11-wm/matchbox/matchbox-0.7.1.ebuild8
2 files changed, 12 insertions, 4 deletions
diff --git a/x11-wm/matchbox/ChangeLog b/x11-wm/matchbox/ChangeLog
index 90dae2a6ec2b..6823644d7486 100644
--- a/x11-wm/matchbox/ChangeLog
+++ b/x11-wm/matchbox/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-wm/matchbox
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/matchbox/ChangeLog,v 1.16 2007/09/26 04:06:56 jer Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/matchbox/ChangeLog,v 1.17 2008/02/06 20:09:50 yvasilev Exp $
+
+ 06 Feb 2008; <yvasilev@gentoo.org> matchbox-0.7.1.ebuild:
+ Added -Wl,--no-as-needed to LDFLAGS to fix Bug #203150:
+ x11-wm/matchbox-0.7.1: undefined reference to XShm* w/ --as-needed
26 Sep 2007; Jeroen Roovers <jer@gentoo.org> matchbox-1.0.ebuild:
Marked ~hppa too.
diff --git a/x11-wm/matchbox/matchbox-0.7.1.ebuild b/x11-wm/matchbox/matchbox-0.7.1.ebuild
index 716d50ad8545..fb35f4404a92 100644
--- a/x11-wm/matchbox/matchbox-0.7.1.ebuild
+++ b/x11-wm/matchbox/matchbox-0.7.1.ebuild
@@ -1,6 +1,8 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/matchbox/matchbox-0.7.1.ebuild,v 1.11 2007/07/22 06:04:45 dberkholz Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/matchbox/matchbox-0.7.1.ebuild,v 1.12 2008/02/06 20:09:50 yvasilev Exp $
+
+inherit flag-o-matic
IUSE="jpeg png nls debug"
@@ -40,6 +42,8 @@ src_compile() {
use png || myconf="${myconf} --disable-png"
use debug && myconf="${myconf} --enable-debug"
+ append-ldflags -Wl,--no-as-needed
+
econf ${myconf} || die "Configuration failed"
emake || die "Make feiled"
}