This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[patch] check for xulrunner-1.9
- From: Matthias Klose <doko at ubuntu dot com>
- To: GCJ-patches <java-patches at gcc dot gnu dot org>, classpath-patches at gnu dot org
- Date: Tue, 12 Feb 2008 20:38:12 +0100
- Subject: [patch] check for xulrunner-1.9
This patch checks for a build using xulrunner-1.9. Ok to checkin? (please commit
it to classpath as well).
Matthias
libjava/classpath/ChangeLog:
2008-02-12 Alexander Sack <asac@ubuntu.com>
* configure.ac: Check for xulrunner-1.9.
* configure: regenerate.
--- libjava/classpath/configure.ac.orig 2008-02-08 17:02:59.000000000 +0000
+++ libjava/classpath/configure.ac 2008-02-08 17:03:51.000000000 +0000
@@ -704,6 +704,9 @@
if test "x${COMPILE_PLUGIN}" = xyes; then
PKG_CHECK_MODULES(MOZILLA, mozilla-plugin, [MOZILLA_FOUND=yes], [MOZILLA_FOUND=no])
if test "x${MOZILLA_FOUND}" = xno; then
+ PKG_CHECK_MODULES(MOZILLA, mozilla-plugin libxul, [MOZILLA_FOUND=yes], [MOZILLA_FOUND=no])
+ fi
+ if test "x${MOZILLA_FOUND}" = xno; then
PKG_CHECK_MODULES(MOZILLA, firefox-plugin firefox-xpcom, [MOZILLA_FOUND=yes], [MOZILLA_FOUND=no])
fi
if test "x${MOZILLA_FOUND}" = xno; then