diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-05-12 20:47:45 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-05-12 20:47:45 +0800 |
commit | c52bf2304c2c1859c072902d9b85b216c2cdd066 (patch) | |
tree | 426a4ff6c0528b3cbc80713124441fcc8ed6f3aa | |
parent | f8f5f776be1a09484047ef5d266e4167b6db352f (diff) | |
download | gsoc2013-epiphany-c52bf2304c2c1859c072902d9b85b216c2cdd066.tar gsoc2013-epiphany-c52bf2304c2c1859c072902d9b85b216c2cdd066.tar.gz gsoc2013-epiphany-c52bf2304c2c1859c072902d9b85b216c2cdd066.tar.bz2 gsoc2013-epiphany-c52bf2304c2c1859c072902d9b85b216c2cdd066.tar.lz gsoc2013-epiphany-c52bf2304c2c1859c072902d9b85b216c2cdd066.tar.xz gsoc2013-epiphany-c52bf2304c2c1859c072902d9b85b216c2cdd066.tar.zst gsoc2013-epiphany-c52bf2304c2c1859c072902d9b85b216c2cdd066.zip |
Explicit error message about unsupported gecko versions.
2006-05-12 Christian Persch <chpe@cvs.gnome.org>
* configure.ac:
Explicit error message about unsupported gecko versions.
-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 |