From f067ff205cc8565caa46a723fd3316aa08ec6213 Mon Sep 17 00:00:00 2001 From: Daniel Mierswa Date: Mon, 15 Sep 2008 01:11:02 +0200 Subject: [PATCH 1/1] fix automagic dependency on vcdinfo when --enable-libcdio was passed to configure, vcdinfo was searched and linked against if found (only do that when vcdinfo wasn't disabled) Signed-off-by: Christophe Mutricy --- configure.ac | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index c9041b620a..a8e6807cda 100644 --- a/configure.ac +++ b/configure.ac @@ -2427,6 +2427,8 @@ dnl Need to test libcdio and libvcdinfo for a number of things. Do it now. AC_ARG_ENABLE(libcdio, [ --enable-libcdio CD input and control library support (default enabled)]) +AC_ARG_ENABLE(vcdinfo, + [ --enable-libvcdinfo VCD information library support (default enabled)]) have_libcdio=no have_libvcdinfo=no @@ -2438,11 +2440,14 @@ then [Define if you have libcdio 0.78.2 or greater installed]), [AC_MSG_WARN(CD Reading and information library not found)]) - PKG_CHECK_MODULES(VCDINFO, libvcdinfo >= 0.7.22, - [have_libvcdinfo=yes - AC_DEFINE(HAVE_VCDINFO, 1, - [Define if you have libvcdinfo 0.7.22 or greater installed])], - [AC_MSG_WARN(VCD information library not found)]) + if test "${enable_vcdinfo}" != "no" + then + PKG_CHECK_MODULES(VCDINFO, libvcdinfo >= 0.7.22, + [have_libvcdinfo=yes + AC_DEFINE(HAVE_VCDINFO, 1, + [Define if you have libvcdinfo 0.7.22 or greater installed])], + [AC_MSG_WARN(VCD information library not found)]) + fi fi dnl -- 2.39.2