changeset 1770:7249312f46dc

[gaim-migrate @ 1780] someone yesterday had a problem compiling gaim because this was only a warning instead of an error. so i made it an error. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sun, 29 Apr 2001 01:33:09 +0000
parents 68eddf56f419
children 213607e89598
files configure.in
diffstat 1 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/configure.in	Sat Apr 28 08:11:42 2001 +0000
+++ b/configure.in	Sun Apr 29 01:33:09 2001 +0000
@@ -97,8 +97,14 @@
 fi
 
 if test "x$enable_gnome" != "xyes" ; then
-	AM_PATH_GLIB(1.2.0)
-	AM_PATH_GTK(1.2.0,,,gthread)
+	AM_PATH_GLIB(1.2.0,,AC_MSG_ERROR([
+*** GLib is required to build Gaim; please make sure you have the GLib
+*** development headers installed. The latest version of GLib is
+*** always available at http://www.gtk.org/.]))
+	AM_PATH_GTK(1.2.0,,AC_MSG_ERROR([
+*** GTK+ is required to build Gaim; please make sure you have the GTK+
+*** development headers installed. The latest version of GTK+ is
+*** always available at http://www.gtk.org/.]),gthread)
 	LIBS="$LIBS $GTK_LIBS"
 	AC_PATH_PROG(gaimpath, gaim)
 fi