diff options
author | doko <doko@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-03-16 12:08:23 +0000 |
---|---|---|
committer | doko <doko@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-03-16 12:08:23 +0000 |
commit | 04d4838fb52a0188e4f2525845ca55efec146180 (patch) | |
tree | 97aa3073cad8b26790faa14c81b912f667aebaa7 /libjava/classpath/configure.ac | |
parent | 6a7f32a42409da899657f1ff396896e449ae93a6 (diff) | |
download | ppe42-gcc-04d4838fb52a0188e4f2525845ca55efec146180.tar.gz ppe42-gcc-04d4838fb52a0188e4f2525845ca55efec146180.zip |
2009-03-16 Matthias Klose <doko@ubuntu.com>
* configure.ac: Detect xulrunner-1.9.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@144879 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/classpath/configure.ac')
-rw-r--r-- | libjava/classpath/configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libjava/classpath/configure.ac b/libjava/classpath/configure.ac index faf3ab7ce36..53a56fa5e0f 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 |