diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-08-12 18:30:50 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-08-12 18:30:50 +0800 |
commit | 2d42137eedc47910a32a0acf8739025d60c262f8 (patch) | |
tree | ac2c0edc3d543edabbbfe84a27f091c147abce4d | |
parent | 66f7d714a68d866226e96f6cba2dafc31390c367 (diff) | |
download | gsoc2013-epiphany-2d42137eedc47910a32a0acf8739025d60c262f8.tar gsoc2013-epiphany-2d42137eedc47910a32a0acf8739025d60c262f8.tar.gz gsoc2013-epiphany-2d42137eedc47910a32a0acf8739025d60c262f8.tar.bz2 gsoc2013-epiphany-2d42137eedc47910a32a0acf8739025d60c262f8.tar.lz gsoc2013-epiphany-2d42137eedc47910a32a0acf8739025d60c262f8.tar.xz gsoc2013-epiphany-2d42137eedc47910a32a0acf8739025d60c262f8.tar.zst gsoc2013-epiphany-2d42137eedc47910a32a0acf8739025d60c262f8.zip |
We don't build against 1.8a1, so don't list it in the help for
2004-08-12 Christian Persch <chpe@cvs.gnome.org>
* configure.in:
We don't build against 1.8a1, so don't list it in the help
for --with-mozilla-snapshot.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,10 @@ +2004-08-12 Christian Persch <chpe@cvs.gnome.org> + + * configure.in: + + We don't build against 1.8a1, so don't list it in the help + for --with-mozilla-snapshot. + 2004-08-11 Christian Persch <chpe@cvs.gnome.org> * lib/egg/egg-editable-toolbar.c: (drag_data_get_cb), diff --git a/configure.in b/configure.in index 3e5413657..6306f1f27 100644 --- a/configure.in +++ b/configure.in @@ -163,7 +163,7 @@ AC_ARG_WITH(mozilla-snapshot, AC_MSG_RESULT($MOZILLA_VERSION$autodetect) dnl Test for the "trunk" version -if test $MOZILLA_VERSION == "trunk"; then +if test $MOZILLA_VERSION = "trunk"; then MOZILLA_VERSION=99.0 # use a high number fi @@ -227,7 +227,7 @@ AC_DEFINE_UNQUOTED(MOZILLA_MICRO, $micro, [Define to the Mozilla micro version.] if test "$1" -lt 1 -o \( "$1" -eq 1 -a "$2" -lt 7 \) -o \( "$1" -eq 1 -a "$2" -eq 7 -a "$type" -lt 4 \); then AC_ERROR([ ***************************************************************************** -Epiphany can be built using Mozilla 1.7, 1.7 branch, 1.8a1, 1.8a2, or trunk +Epiphany can be built using Mozilla 1.7, 1.7.x, 1.7 branch, 1.8a2, or trunk snapshot, but the version available is $MOZILLA_VERSION. When using Mozilla trunk snapshot, a successful build is not guaranteed due |