Changed configure check for gtk >= 0.99.3

Hopefully this will shut up hose RH5 people who don't get rid of those
old rpms. :)

-Yosh
This commit is contained in:
Manish Singh 1998-01-24 20:52:32 +00:00
parent c3a7b2fed9
commit 3014db05f3
1 changed files with 3 additions and 3 deletions

View File

@ -68,10 +68,10 @@ AC_DEFUN(AC_GIMP_CHECK,
LDFLAGS="$saved_ldflags $X_LDFLAGS $X_LIBS" LDFLAGS="$saved_ldflags $X_LDFLAGS $X_LIBS"
dnl Dont cache this as it depends on CFLAGS, LDFLAGS, etc dnl Dont cache this as it depends on CFLAGS, LDFLAGS, etc
AC_MSG_CHECKING([for glib and gtk >= 0.99.1]) AC_MSG_CHECKING([for glib and gtk >= 0.99.3])
AC_TRY_LINK( AC_TRY_COMPILE(
[#include <gtk/gtk.h>], [#include <gtk/gtk.h>],
[GtkPixmap *pixmap; gdk_pixmap_unref (pixmap); gtk_button_new();], [GtkArgSetFunc arg_set_func;],
gtk_found=yes, gtk_found=yes,
gtk_found=no) gtk_found=no)
AC_MSG_RESULT($gtk_found) AC_MSG_RESULT($gtk_found)