summaryrefslogtreecommitdiff
path: root/gtk.m4
diff options
context:
space:
mode:
authorElliot Lee <sopwith@src.gnome.org>1998-12-31 21:01:18 +0000
committerElliot Lee <sopwith@src.gnome.org>1998-12-31 21:01:18 +0000
commit385108e0dee634a08ed6de5703c43e2aaafd80df (patch)
treef39ec6bd59d8d6d325fdebd7d2675cfcbfb4d84a /gtk.m4
parentd9f5d8f25586645525c3d124cba62a64248bd3df (diff)
downloadgtk+-385108e0dee634a08ed6de5703c43e2aaafd80df.tar.gz
gtk.m4: When testing to see if glib exists, set LIBS="$GTK_LIBS $LIBS" NOT
gtk.m4: When testing to see if glib exists, set LIBS="$GTK_LIBS $LIBS" NOT LIBS="$LIBS $GTK_LIBS" because order matters - if the user specifies their own $LIBS to ./configure, these need to be passed in last. gtk/Makefile.am: Fix problems with gtktypebuiltins* getting rebuilt every single time 'make' was run. gtk/gtkcalendar.c: Set 'week' variable to 0 to get rid of uninitialized variable warning. Better solution is to give it the right value somewhere :) gtk/gtkclist.c: When computing optimum column size, don't subtract the borders.(?) gtk/gtkcolorsel.c: Don't read past end of array.
Diffstat (limited to 'gtk.m4')
-rw-r--r--gtk.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk.m4 b/gtk.m4
index 0fcfd9f3c5..6cce827ea9 100644
--- a/gtk.m4
+++ b/gtk.m4
@@ -47,7 +47,7 @@ AC_ARG_ENABLE(gtktest, [ --disable-gtktest Do not try to compile and run
ac_save_CFLAGS="$CFLAGS"
ac_save_LIBS="$LIBS"
CFLAGS="$CFLAGS $GTK_CFLAGS"
- LIBS="$LIBS $GTK_LIBS"
+ LIBS="$GTK_LIBS $LIBS"
dnl
dnl Now check if the installed GTK is sufficiently new. (Also sanity
dnl checks the results of gtk-config to some extent