aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2003-12-20 05:24:58 +0800
committerChristian Persch <chpe@src.gnome.org>2003-12-20 05:24:58 +0800
commitb8823a91a4c7e5a3b3b3e27be07b7cc9f8006b4e (patch)
treec2a926b68b7441ecf90f30487983d17ae65bf23b /configure.in
parent692d2b9353c7f1a813f6614512bcde4be6163842 (diff)
downloadgsoc2013-epiphany-b8823a91a4c7e5a3b3b3e27be07b7cc9f8006b4e.tar
gsoc2013-epiphany-b8823a91a4c7e5a3b3b3e27be07b7cc9f8006b4e.tar.gz
gsoc2013-epiphany-b8823a91a4c7e5a3b3b3e27be07b7cc9f8006b4e.tar.bz2
gsoc2013-epiphany-b8823a91a4c7e5a3b3b3e27be07b7cc9f8006b4e.tar.lz
gsoc2013-epiphany-b8823a91a4c7e5a3b3b3e27be07b7cc9f8006b4e.tar.xz
gsoc2013-epiphany-b8823a91a4c7e5a3b3b3e27be07b7cc9f8006b4e.tar.zst
gsoc2013-epiphany-b8823a91a4c7e5a3b3b3e27be07b7cc9f8006b4e.zip
Prepare for mozilla 1.6final and 1.7a.
2003-12-19 Christian Persch <chpe@cvs.gnome.org> * configure.in: Prepare for mozilla 1.6final and 1.7a.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 8df91ae56..ff20c2611 100644
--- a/configure.in
+++ b/configure.in
@@ -173,7 +173,7 @@ dnl allow user to override the autodetected mozilla version
dnl - without arguments for cvs head
AC_ARG_WITH(mozilla-snapshot,
AC_HELP_STRING([--with-mozilla-snapshot@<:@=1.4|1.4.1|1.5|1.6a|1.6b|trunk@:>@],
- [Whether to try building against mozilla 1.4|1.4.1|1.5|1.6a|1.6b|trunk
+ [Whether to try building against mozilla 1.4|1.4.1|1.5|1.6a|1.6b|1.6|1.7a|trunk
snapshot. @<:@guessed@:>@]),
[autodetect=" (guessed: $MOZILLA_VERSION)"; MOZILLA_VERSION="$withval"])
@@ -182,15 +182,18 @@ AC_MSG_RESULT($MOZILLA_VERSION$autodetect)
case "$MOZILLA_VERSION" in
1.4) MOZILLA_SNAPSHOT=8 ;;
1.4.1) MOZILLA_SNAPSHOT=9 ;;
+1.4.2) MOZILLA_SNAPSHOT=9 ;;
1.5a) MOZILLA_SNAPSHOT=10 ;;
1.5b) MOZILLA_SNAPSHOT=11 ;;
1.5) MOZILLA_SNAPSHOT=11 ;;
1.6a) MOZILLA_SNAPSHOT=12 ;;
1.6b) MOZILLA_SNAPSHOT=13 ;;
+ 1.6) MOZILLA_SNAPSHOT=13 ;;
+ 1.7a) MOZILLA_SNAPSHOT=13 ;;
trunk) MOZILLA_SNAPSHOT=13 ;;
*) AC_ERROR([
*****************************************************************************
-Epiphany can be built using Mozilla 1.4, 1.4.1, 1.5, 1.6a, 1.6b or
+Epiphany can be built using Mozilla 1.4, 1.4.1, 1.5, 1.6a, 1.6b, 1.6, 1.7a or
trunk snapshot, but the version available is $MOZILLA_VERSION.
When using Mozilla trunk snapshot, a successful build is not guaranteed due