fix buglet with making GLIB_LIBS (shouldn't have been tripped, but bug

* configure.in: fix buglet with making GLIB_LIBS (shouldn't have
        been tripped, but bug nevertheless)

-Yosh
This commit is contained in:
Manish Singh 1998-11-11 12:19:57 +00:00
parent 68f7fee7e8
commit 476d930069
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Wed Nov 11 04:18:57 PST 1998 Manish Singh <yosh@gimp.org>
* configure.in: fix buglet with making GLIB_LIBS (shouldn't have
been tripped, but bug nevertheless)
Wed Nov 11 02:27:46 CET 1998 Marc Lehmann <pcg@goof.com>
* libgimp/gimp.c (gimp_run_procedure2): fixed a memory leak,

View File

@ -75,7 +75,7 @@ dnl Evil stuff to extract GLIB stuff from gtk-config output
dnl (we want to make sure it matches with the gtk we're using)
GLIB_CFLAGS=`echo $GTK_CFLAGS | sed 's/^.*\(-I[^ ]*glib[^ ]* *-I[^ ]*\).*$/\1/'`
GLIB_LDFLAGS=`echo $gtk_libs | sed -e 's/^.*-lgdk[^ ]* *\(-L[^ ]*\).*$/\1/' -e 's/^.* -lgdk[^ ]* .*$//'`
if test -z "$glib_ldflags" ; then
if test -z "$GLIB_LDFLAGS" ; then
GLIB_LDFLAGS=`echo $GTK_LIBS | sed 's/^ *\(-L[^ ]*\) .*$/\1/'`
fi
GLIB_LIBS="$GLIB_LDFLAGS `echo $GTK_LIBS | sed 's/^.*\(-lglib[^ ]*\).*$/\1/'`"