aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/configure.ac
diff options
context:
space:
mode:
authorMatthias Klose <doko@ubuntu.com>2009-03-16 12:08:23 +0000
committerMatthias Klose <doko@gcc.gnu.org>2009-03-16 12:08:23 +0000
commitd495ef5a6c5f858d208c21fd1c6e27c9fa0337cf (patch)
tree97aa3073cad8b26790faa14c81b912f667aebaa7 /libjava/classpath/configure.ac
parentc1458a68f2e007b12c1ee741464246f28d93240d (diff)
downloadgcc-d495ef5a6c5f858d208c21fd1c6e27c9fa0337cf.zip
gcc-d495ef5a6c5f858d208c21fd1c6e27c9fa0337cf.tar.gz
gcc-d495ef5a6c5f858d208c21fd1c6e27c9fa0337cf.tar.bz2
configure.ac: Detect xulrunner-1.9.
2009-03-16 Matthias Klose <doko@ubuntu.com> * configure.ac: Detect xulrunner-1.9. * configure: Regenerate. From-SVN: r144879
Diffstat (limited to 'libjava/classpath/configure.ac')
-rw-r--r--libjava/classpath/configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/libjava/classpath/configure.ac b/libjava/classpath/configure.ac
index faf3ab7..53a56fa 100644
--- a/libjava/classpath/configure.ac
+++ b/libjava/classpath/configure.ac
@@ -771,7 +771,10 @@ if test "x${COMPILE_JNI}" = xyes; then
dnl Check for plugin support headers and libraries.
if test "x${COMPILE_PLUGIN}" = xyes; then
- PKG_CHECK_MODULES(MOZILLA, mozilla-plugin, [MOZILLA_FOUND=yes], [MOZILLA_FOUND=no])
+ PKG_CHECK_MODULES(MOZILLA, mozilla-plugin libxul-unstable, [MOZILLA_FOUND=yes], [MOZILLA_FOUND=no])
+ if test "x${MOZILLA_FOUND}" = xno; then
+ PKG_CHECK_MODULES(MOZILLA, mozilla-plugin, [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