From 9cf7ef0010f2f9e065b7ad6453ef371dcca4d6a1 Mon Sep 17 00:00:00 2001 From: rocky Date: Fri, 13 Jun 2003 04:47:20 +0000 Subject: [PATCH] Order of libraries is important in cygwin (and perhaps others): -lvcdinfo comes before -lvcd. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 77bfd9bc..ef1a094d 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,7 @@ dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA dnl 02111-1307, USA. -AC_REVISION([$Id: configure.ac,v 1.28 2003/06/10 01:19:15 rocky Exp $])dnl +AC_REVISION([$Id: configure.ac,v 1.29 2003/06/13 04:47:20 rocky Exp $])dnl AC_INIT(lib/cdio.c) AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE(libcdio, 0.61) @@ -276,7 +276,7 @@ AC_ARG_ENABLE(vcdinfo, fi if test x$enable_vcdinfo = xyes; then AC_DEFINE([HAVE_VCDINFO],1, [Define this if you have libvcdinfo installed]) - VCDINFO_LIB="-lvcd -lvcdinfo" + VCDINFO_LIB="-lvcdinfo -lvcd" fi AC_SUBST(VCDINFO_LIB)