diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-12-20 05:24:58 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-12-20 05:24:58 +0800 |
commit | b8823a91a4c7e5a3b3b3e27be07b7cc9f8006b4e (patch) | |
tree | c2a926b68b7441ecf90f30487983d17ae65bf23b | |
parent | 692d2b9353c7f1a813f6614512bcde4be6163842 (diff) | |
download | gsoc2013-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.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.in | 7 |
2 files changed, 11 insertions, 2 deletions
@@ -1,5 +1,11 @@ 2003-12-19 Christian Persch <chpe@cvs.gnome.org> + * configure.in: + + Prepare for mozilla 1.6final and 1.7a. + +2003-12-19 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-encoding-dialog.c: (sync_embed_cb): * src/ephy-encoding-menu.c: (update_encoding_menu_cb): 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 |