diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 10 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2006-05-12 Christian Persch <chpe@cvs.gnome.org> + * configure.ac: + + Explicit error message about unsupported gecko versions. + +2006-05-12 Christian Persch <chpe@cvs.gnome.org> + * embed/mozilla/EphySidebar.cpp: The API is also changed on 1.8 branch, adapt the #ifdef accordingly. diff --git a/configure.ac b/configure.ac index 81e06637a..e68896a35 100644 --- a/configure.ac +++ b/configure.ac @@ -179,6 +179,10 @@ AC_SUBST([MOZILLA_HOME]) AC_SUBST([MOZILLA_PREFIX]) AC_SUBST([MOZILLA_EXTRA_LIBS]) +if test "gecko_cv_gecko_version_int" -lt "1008000"; then + AC_MSG_ERROR([Gecko version $gecko_cv_gecko_version is not supported!]) +fi + if test "$gecko_cv_gecko_flavour" != "toolkit"; then AC_MSG_ERROR(["$gecko_cv_gecko_flavour" flavoured geckos aren't tasty enough!]) fi |