summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-11-07 22:45:23 +0000
committerChristian Persch <chpe@src.gnome.org>2005-11-07 22:45:23 +0000
commit5e450115bd5071a79a76e5465bd236323150c56b (patch)
tree9dbd6fae7da47e1223708624ee30c16c7b2fd38a
parent34794a629666de6a8f83be96737f0b1614a3e78e (diff)
downloadyelp-5e450115bd5071a79a76e5465bd236323150c56b.tar.gz
Allow compilation against xulrunner. Patch by Robert O'Callahan
2005-11-07 Christian Persch <chpe@cvs.gnome.org> * configure.in: Allow compilation against xulrunner. Patch by Robert O'Callahan <rocallahan@novell.com>.
-rw-r--r--ChangeLog5
-rw-r--r--configure.in5
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 396b2e85..d6f42732 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-11-07 Christian Persch <chpe@cvs.gnome.org>
+
+ * configure.in: Allow compilation against xulrunner.
+ Patch by Robert O'Callahan <rocallahan@novell.com>.
+
2005-10-22 Brent Smith <gnome@nextreality.net>
* src/yelp-bookmarks.c: (yelp_bookmarks_edit):
diff --git a/configure.in b/configure.in
index b763f240..031eff63 100644
--- a/configure.in
+++ b/configure.in
@@ -109,10 +109,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
@@ -138,6 +138,7 @@ mozilla) min_version=1.7 flavour=mozilla ;;
seamonkey) min_version=1.0 flavour=mozilla ;;
*firefox) min_version=1.0 flavour=toolkit ;;
*thunderbird) min_version=1.0 flavour=toolkit ;;
+xulrunner) min_version=1.8 flavour=toolkit ;;
esac
MOZILLA=$gecko