From b16bea1a87ff83906c1c3e522e65eba054553799 Mon Sep 17 00:00:00 2001 From: Elliot Lee Date: Thu, 31 Dec 1998 20:58:03 +0000 Subject: [PATCH] When testing to see if glib exists, set LIBS="$GLIB_LIBS $LIBS" NOT When testing to see if glib exists, set LIBS="$GLIB_LIBS $LIBS" NOT LIBS="$LIBS $GLIB_LIBS" because order matters - if the user specifies their own $LIBS to ./configure, these need to be passed in last. --- glib.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glib.m4 b/glib.m4 index 3757a760..b8094bbf 100644 --- a/glib.m4 +++ b/glib.m4 @@ -60,7 +60,7 @@ AC_ARG_ENABLE(glibtest, [ --disable-glibtest Do not try to compile and ru ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $GLIB_CFLAGS" - LIBS="$LIBS $GLIB_LIBS" + LIBS="$GLIB_LIBS $LIBS" dnl dnl Now check if the installed GLIB is sufficiently new. (Also sanity dnl checks the results of glib-config to some extent -- 2.34.1