diff options
author | Kristian Rietveld <kris@gtk.org> | 2003-10-15 02:15:17 +0800 |
---|---|---|
committer | Kristian Rietveld <kristian@src.gnome.org> | 2003-10-15 02:15:17 +0800 |
commit | 222c454a21ad6554921f322d7fb6a43f5e3e0f82 (patch) | |
tree | 7860fe7de40c7267172477dc835f295c4dfeb1d7 | |
parent | 50a46e02815cfe00963039273343f88f65fb9e54 (diff) | |
download | gsoc2013-epiphany-222c454a21ad6554921f322d7fb6a43f5e3e0f82.tar gsoc2013-epiphany-222c454a21ad6554921f322d7fb6a43f5e3e0f82.tar.gz gsoc2013-epiphany-222c454a21ad6554921f322d7fb6a43f5e3e0f82.tar.bz2 gsoc2013-epiphany-222c454a21ad6554921f322d7fb6a43f5e3e0f82.tar.lz gsoc2013-epiphany-222c454a21ad6554921f322d7fb6a43f5e3e0f82.tar.xz gsoc2013-epiphany-222c454a21ad6554921f322d7fb6a43f5e3e0f82.tar.zst gsoc2013-epiphany-222c454a21ad6554921f322d7fb6a43f5e3e0f82.zip |
also support mozilla 1.5. (Works fine, verified with mozilla 1.5rc2).
2003-10-14 Kristian Rietveld <kris@gtk.org>
* configure.in: also support mozilla 1.5. (Works fine, verified with
mozilla 1.5rc2).
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2003-10-14 Kristian Rietveld <kris@gtk.org> + + * configure.in: also support mozilla 1.5. (Works fine, verified with + mozilla 1.5rc2). + 2003-10-13 Christian Persch <chpe@cvs.gnome.org> * embed/mozilla/mozilla-notifiers.cpp: (get_system_language): diff --git a/configure.in b/configure.in index f289180c0..deeabc8b0 100644 --- a/configure.in +++ b/configure.in @@ -161,11 +161,12 @@ case "$MOZILLA_VERSION" in 1.4.1) MOZILLA_SNAPSHOT=9 ;; 1.5a) MOZILLA_SNAPSHOT=10 ;; 1.5b) MOZILLA_SNAPSHOT=11 ;; + 1.5) MOZILLA_SNAPSHOT=11 ;; 1.6a) MOZILLA_SNAPSHOT=12 ;; trunk) MOZILLA_SNAPSHOT=12 ;; *) AC_ERROR([ ***************************************************************************** -Epiphany can be built using Mozilla 1.4, 1.5a, 1.5b or +Epiphany can be built using Mozilla 1.4, 1.5a, 1.5b, 1.5 or trunk snapshot, but the version available is $MOZILLA_VERSION. When using Mozilla trunk snapshot, a successful build is not guaranteed due |