diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | configure.ac | 5 |
2 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,10 @@ +2005-11-07 Christian Persch <chpe@cvs.gnome.org> + + * configure.ac: + + Allow compilation against xulrunner. Patch by + Robert O'Callahan <rocallahan@novell.com>. + 2005-11-07 Bastien Nocera <hadess@hadess.net> reviewed by: Christian Persch <chpe@gnome.org> diff --git a/configure.ac b/configure.ac index 6e93fac69..200ce4441 100644 --- a/configure.ac +++ b/configure.ac @@ -183,10 +183,10 @@ dnl ******* AC_MSG_CHECKING([which gecko to use]) AC_ARG_WITH([mozilla], - AS_HELP_STRING([--with-mozilla@<:@=mozilla|firefox|thunderbird@:>@], + AS_HELP_STRING([--with-mozilla@<:@=mozilla|firefox|xulrunner|thunderbird@:>@], [Which gecko engine to use (default: autodetect)])) -GECKOS="firefox mozilla-firefox seamonkey mozilla thunderbird mozilla-thunderbird" +GECKOS="firefox mozilla-firefox seamonkey mozilla xulrunner thunderbird mozilla-thunderbird" gecko=$with_mozilla if test "x$gecko" = "x"; then @@ -212,6 +212,7 @@ mozilla) min_version=1.7.9 flavour=mozilla ;; seamonkey) min_version=1.0 flavour=mozilla ;; *firefox) min_version=1.0.5 flavour=toolkit ;; *thunderbird) min_version=1.0.5 flavour=toolkit ;; +xulrunner) min_version=1.8 flavour=toolkit ;; esac MOZILLA=$gecko |