Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libcdio/files: libcdio-0.80-automagic-cddb.patch
Date: Fri, 28 Aug 2009 12:42:04
Message-Id: E1Mh5bT-00045l-CJ@stork.gentoo.org
1 pva 09/08/28 17:51:11
2
3 Added: libcdio-0.80-automagic-cddb.patch
4 Log:
5 Fixed automagic dependency on libcddb, bug #272788.
6 (Portage version: 2.1.6.13/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-libs/libcdio/files/libcdio-0.80-automagic-cddb.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libcdio/files/libcdio-0.80-automagic-cddb.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libcdio/files/libcdio-0.80-automagic-cddb.patch?rev=1.1&content-type=text/plain
13
14 Index: libcdio-0.80-automagic-cddb.patch
15 ===================================================================
16 https://savannah.gnu.org/patch/index.php?6904
17
18 --- configure.ac 2009-08-28 16:57:41 +0000
19 +++ configure.ac 2009-08-28 17:04:44 +0000
20 @@ -582,9 +582,9 @@
21 enable_cddb=yes
22 AC_ARG_ENABLE(cddb,
23 [ --enable-cddb include CDDB lookups in cd_info (default enabled)],
24 - enable_cddb=yes, enable_cddb=no)
25 + [], enable_cddb=check)
26 fi
27 -if test x$enable_cddb != "no" ; then
28 +if test x$enable_cddb != x"no" ; then
29 PKG_CHECK_MODULES(CDDB, libcddb >= 1.0.1, [
30 HAVE_CDDB=yes
31 AC_DEFINE(HAVE_CDDB, [], [Define this if you have libcddb installed])