From 901ab0672284e17909f301c295c11156e5e10577 Mon Sep 17 00:00:00 2001 From: rocky Date: Sun, 18 Sep 2005 20:30:33 +0000 Subject: [PATCH] Change needed for building cdda-player: -lcdrom needs to come after -ldvd Problem determination and patch all from Steve Schultz. Thanks! --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 85a93fc2..5f0231c7 100644 --- a/configure.ac +++ b/configure.ac @@ -19,7 +19,7 @@ define(RELEASE_NUM, 76) define(CDIO_VERSION_STR, 0.$1cvs) AC_PREREQ(2.52) -AC_REVISION([$Id: configure.ac,v 1.167 2005/09/17 15:30:08 rocky Exp $])dnl +AC_REVISION([$Id: configure.ac,v 1.168 2005/09/18 20:30:33 rocky Exp $])dnl AC_INIT(libcdio, CDIO_VERSION_STR(RELEASE_NUM)) AC_CONFIG_SRCDIR(src/cd-info.c) @@ -409,7 +409,7 @@ int has_timeout=sizeof(test.timeout);], if test "x$have_bsdi_dvd_h" = "xyes" ; then AC_DEFINE([HAVE_BSDI_CDROM], [1], [Define 1 if you have BSDI-type CD-ROM support]) - LIBS="$LIBS -ldvd" + LIBS="$LIBS -ldvd -lcdrom" LIBCDIO_LIBS="$LIBCDIO_LIBS -lcdrom" cd_drivers="${cd_drivers}, BSDI" fi