fix for bug 558126

This commit is contained in:
brianb 2002-12-27 21:27:06 +00:00
parent d1e586cdf0
commit feddbece22
2 changed files with 10 additions and 1 deletions

View File

@ -123,7 +123,7 @@ do
echo "Making $dr/aclocal.m4 writable ..."
test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4
fi
if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then
if grep "^AC_PROG_LIBTOOL" configure.in >/dev/null; then
echo "Running libtoolize..."
#libtoolize --force --copy
fi

View File

@ -72,6 +72,15 @@ AC_SUBST(ODBC_INC)
dnl check for glib/gtk/gnome
AM_PATH_GLIB_2_0(2.0.0)
if test "$no_glib" == yes; then
echo
echo "glib 2.0 is required by MDB Tools."
echo "It can be downloaded at www.gtk.org."
echo
exit 1
fi
AM_PATH_GTK_2_0(2.0.0)
AM_CONDITIONAL(HAVE_GTK, test x$no_gtk = xtrue)
AC_SUBST(HAVE_GTK)