diff options
author | Peter Volkov <pva@gentoo.org> | 2009-08-28 17:51:11 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2009-08-28 17:51:11 +0000 |
commit | 723649fa5f1820abd68113ebc9cabfd02c320841 (patch) | |
tree | a35f6f87cfa65bdf68d5d2532ca278515741cde7 /dev-libs/libcdio/files | |
parent | arm/ia64/s390/sh stable wrt #277354 (diff) | |
download | gentoo-2-723649fa5f1820abd68113ebc9cabfd02c320841.tar.gz gentoo-2-723649fa5f1820abd68113ebc9cabfd02c320841.tar.bz2 gentoo-2-723649fa5f1820abd68113ebc9cabfd02c320841.zip |
Fixed automagic dependency on libcddb, bug #272788.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libcdio/files')
-rw-r--r-- | dev-libs/libcdio/files/libcdio-0.80-automagic-cddb.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/dev-libs/libcdio/files/libcdio-0.80-automagic-cddb.patch b/dev-libs/libcdio/files/libcdio-0.80-automagic-cddb.patch new file mode 100644 index 000000000000..981ddfb246ce --- /dev/null +++ b/dev-libs/libcdio/files/libcdio-0.80-automagic-cddb.patch @@ -0,0 +1,17 @@ +https://savannah.gnu.org/patch/index.php?6904 + +--- configure.ac 2009-08-28 16:57:41 +0000 ++++ configure.ac 2009-08-28 17:04:44 +0000 +@@ -582,9 +582,9 @@ + enable_cddb=yes + AC_ARG_ENABLE(cddb, + [ --enable-cddb include CDDB lookups in cd_info (default enabled)], +- enable_cddb=yes, enable_cddb=no) ++ [], enable_cddb=check) + fi +-if test x$enable_cddb != "no" ; then ++if test x$enable_cddb != x"no" ; then + PKG_CHECK_MODULES(CDDB, libcddb >= 1.0.1, [ + HAVE_CDDB=yes + AC_DEFINE(HAVE_CDDB, [], [Define this if you have libcddb installed]) + |