diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2004-04-27 17:07:36 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2004-04-27 17:07:36 +0800 |
commit | 6fadfbe07379b55695a43687c6b7d935bff80133 (patch) | |
tree | 0e9c207847091df0505b4e08caca7e0d899f2a31 /configure.in | |
parent | e88e7018c298131a4024415d0a2dbff9b7046960 (diff) | |
download | gsoc2013-epiphany-6fadfbe07379b55695a43687c6b7d935bff80133.tar gsoc2013-epiphany-6fadfbe07379b55695a43687c6b7d935bff80133.tar.gz gsoc2013-epiphany-6fadfbe07379b55695a43687c6b7d935bff80133.tar.bz2 gsoc2013-epiphany-6fadfbe07379b55695a43687c6b7d935bff80133.tar.lz gsoc2013-epiphany-6fadfbe07379b55695a43687c6b7d935bff80133.tar.xz gsoc2013-epiphany-6fadfbe07379b55695a43687c6b7d935bff80133.tar.zst gsoc2013-epiphany-6fadfbe07379b55695a43687c6b7d935bff80133.zip |
Nice mess of defines to support 1.8a. Damn.
2004-04-27 Marco Pesenti Gritti <marco@gnome.org>
* configure.in:
* embed/mozilla/ContentHandler.cpp:
* embed/mozilla/ContentHandler.h:
* embed/mozilla/EphyHeaderSniffer.cpp:
* embed/mozilla/EventContext.h:
* embed/mozilla/FilePicker.cpp:
* embed/mozilla/MozDownload.cpp:
* embed/mozilla/MozDownload.h:
* embed/mozilla/mozilla-download.cpp:
* embed/mozilla/mozilla-embed-persist.cpp:
Nice mess of defines to support 1.8a. Damn.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/configure.in b/configure.in index e3c57b2be..6598b4b09 100644 --- a/configure.in +++ b/configure.in @@ -143,8 +143,8 @@ MOZILLA_VERSION="`$PKG_CONFIG --modversion mozilla-gtkmozembed`" 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.6|1.7a|1.7b|trunk@:>@], - [Whether to try building against mozilla 1.6|1.7a|1.7b|trunk + AC_HELP_STRING([--with-mozilla-snapshot@<:@=1.6|1.7a|1.7b|1.8a|trunk@:>@], + [Whether to try building against mozilla 1.6|1.7a|1.7b|1.8a|trunk snapshot. @<:@guessed@:>@]), [autodetect=" (guessed: $MOZILLA_VERSION)"; MOZILLA_VERSION="$withval"]) @@ -155,10 +155,11 @@ case "$MOZILLA_VERSION" in 1.7a) MOZILLA_SNAPSHOT=14 ;; 1.7b) MOZILLA_SNAPSHOT=15 ;; 1.7) MOZILLA_SNAPSHOT=15 ;; -trunk) MOZILLA_SNAPSHOT=15 ;; + 1.8a) MOZILLA_SNAPSHOT=16 ;; +trunk) MOZILLA_SNAPSHOT=16 ;; *) AC_ERROR([ ***************************************************************************** -Epiphany can be built using Mozilla 1.6, 1.7a, 1.7b, or +Epiphany can be built using Mozilla 1.6, 1.7a, 1.7b, 1.8a or trunk snapshot, but the version available is $MOZILLA_VERSION. When using Mozilla trunk snapshot, a successful build is not guaranteed due |