summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlukka <lukka@src.gnome.org>1999-07-06 18:46:29 +0000
committerlukka <lukka@src.gnome.org>1999-07-06 18:46:29 +0000
commit984258c935552744012274d80886b4e72e25b4a0 (patch)
tree5709a0f6eabfa14850690eeab987cb5364935eb7
parentef23c6d8e9081e28f26bf6dc4d43aa95840794c0 (diff)
downloadgnome-common-984258c935552744012274d80886b4e72e25b4a0.tar.gz
Forbid compiling gnome with gtk 1.3 as it doesn't work
svn path=/trunk/; revision=841
-rw-r--r--macros/ChangeLog5
-rw-r--r--macros/gnome-x-checks.m413
2 files changed, 18 insertions, 0 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog
index b76bbb0..2d2db9c 100644
--- a/macros/ChangeLog
+++ b/macros/ChangeLog
@@ -1,3 +1,8 @@
+1999-07-06 Tuomas J. Lukka <lukka@iki.fi>
+
+ * gnome-x-checks.m4: forbid compiling with Gtk-1.3 for now.
+ gnome only works with 1.2 so far.
+
1999-07-05 Raja R Harinath <harinath@cs.umn.edu>
* gnome.m4: Make "extra library" message slightly easier to read.
diff --git a/macros/gnome-x-checks.m4 b/macros/gnome-x-checks.m4
index 1e397ef..df033d5 100644
--- a/macros/gnome-x-checks.m4
+++ b/macros/gnome-x-checks.m4
@@ -33,6 +33,19 @@ AC_DEFUN([GNOME_X_CHECKS],
LDFLAGS="$saved_ldflags $GTK_LIBS"
+dnl Check that we *don't* get GTK 1.3.* yet
+
+ AC_MSG_CHECKING([whether we have GTK > 1.2])
+ AC_EGREP_CPP(answer_affirmatively,
+ [#include <gtk/gtk.h>
+ #if GTK_MINOR_VERSION > 2
+ answer_affirmatively
+ #endif
+ ], [AC_MSG_ERROR([Aborting, the current versions
+ of gnome are not yet compatible with the unstable GTK 1.3 release.
+ Please use GTK 1.2.])])
+
+
dnl We are requiring GTK >= 1.1.1, which means this will be fine anyhow.
USE_DEVGTK=true