diff --git a/ChangeLog b/ChangeLog index cce32e8..6fae61d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-04-14 David Ayers + + * configure.ac: Warn if GDL2 isn't found. + * configure: Regenerate. + 2009-04-07 David Ayers * GSWeb.framework/GSWeb.h (GSWImageInfo): Foward declare. diff --git a/configure b/configure index 349cfad..253c3d8 100755 --- a/configure +++ b/configure @@ -1757,6 +1757,9 @@ if test "$GDL2" = yes; then #define HAVE_GDL2 1 _ACEOF +else + { echo "$as_me:$LINENO: WARNING: Could not find GNUstep Database Library 2. Will assume a compatible library exists anyway." >&5 +echo "$as_me: WARNING: Could not find GNUstep Database Library 2. Will assume a compatible library exists anyway." >&2;} fi diff --git a/configure.ac b/configure.ac index 271312d..a9aa840 100644 --- a/configure.ac +++ b/configure.ac @@ -50,6 +50,8 @@ AC_SUBST(GSWNAMES) AC_CHECK_FILE($GNUSTEP_MAKEFILES/Auxiliary/gdl2.make, GDL2=yes, GDL2=no) if test "$GDL2" = yes; then AC_DEFINE(HAVE_GDL2) +else + AC_MSG_WARN(Could not find GNUstep Database Library 2. Will assume a compatible library exists anyway.) fi AC_SUBST(GDL2)