Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/rss-glx/files: rss-glx-0.9.1-asneeded.patch rss-glx-0.9.1-quesoglc.patch
Date: Sun, 30 May 2010 10:54:51
Message-Id: 20100530105446.3B1422CF39@corvid.gentoo.org
1 xarthisius 10/05/30 10:54:46
2
3 Added: rss-glx-0.9.1-asneeded.patch
4 rss-glx-0.9.1-quesoglc.patch
5 Log:
6 Fixing build with forced --as-needed and automagic dependency on media-libs/quesoglc wrt bug 313837
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 x11-misc/rss-glx/files/rss-glx-0.9.1-asneeded.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rss-glx/files/rss-glx-0.9.1-asneeded.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rss-glx/files/rss-glx-0.9.1-asneeded.patch?rev=1.1&content-type=text/plain
14
15 Index: rss-glx-0.9.1-asneeded.patch
16 ===================================================================
17 Fixing as-needed issue
18
19 http://bugs.gentoo.org/313837
20
21 --- src/PixelCity/Makefile.am
22 +++ src/PixelCity/Makefile.am
23 @@ -23,3 +23,5 @@
24 Texture.cpp \
25 Visible.cpp \
26 World.cpp
27 +libPixelCity_la_LIBADD=@quesoglc_LIBS@
28 +libPixelCity_la_CFLAGS=@quesoglc_CFLAGS@
29
30
31
32 1.1 x11-misc/rss-glx/files/rss-glx-0.9.1-quesoglc.patch
33
34 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rss-glx/files/rss-glx-0.9.1-quesoglc.patch?rev=1.1&view=markup
35 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rss-glx/files/rss-glx-0.9.1-quesoglc.patch?rev=1.1&content-type=text/plain
36
37 Index: rss-glx-0.9.1-quesoglc.patch
38 ===================================================================
39 Removing automagic dependency on media-libs/quesoglc
40
41 http://bugs.gentoo.org/313837
42
43 --- configure.in
44 +++ configure.in
45 @@ -200,7 +200,10 @@
46
47 AM_CONDITIONAL(INSTALL_KDE_CONFIG_FILES, test "$INSTALL_KDE_CONFIG_FILES" = "yes")
48
49 -PKG_CHECK_MODULES(quesoglc, quesoglc >= 0.7, AC_DEFINE([HAVE_GLC], , [QuesoGLC is available for use.]), AC_DEFINE([MISSING_GLC], , [QuesoGLC not available.]))
50 +AC_ARG_WITH([quesoglc], AS_HELP_STRING([--with-quesoglc], [Build with QuusoGLC library (default: disabled)]))
51 +if test "x$with_quesoglc" == "xyes"; then
52 + PKG_CHECK_MODULES(quesoglc, quesoglc >= 0.7, AC_DEFINE([HAVE_GLC], , [QuesoGLC is available for use.]), AC_DEFINE([MISSING_GLC], , [QuesoGLC not available.]))
53 +fi
54
55 AC_OUTPUT([
56 Makefile