[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Bug classpath/27723] Allow firefox-plugin to be used as mozilla-plugin
From: |
schmir11 at web dot de |
Subject: |
[Bug classpath/27723] Allow firefox-plugin to be used as mozilla-plugin |
Date: |
22 May 2006 16:53:50 -0000 |
------- Comment #1 from schmir11 at web dot de 2006-05-22 16:53 -------
Just after submitting someone notified to check for the "xulrunner-plugin",
too.
So here is the modified code to do just that:
PKG_CHECK_MODULES(MOZILLA,
mozilla-plugin,[MOZILLA_FOUND=yes],[MOZILLA_FOUND=no])
if test "x${MOZILLA_FOUND}" = xno; then
PKG_CHECK_MODULES(MOZILLA, firefox-plugin,[MOZILLA_FOUND=yes],
[MOZILLA_FOUND=no])
fi
if test "x${MOZILLA_FOUND}" = xno; then
PKG_CHECK_MODULES(MOZILLA, xulrunner-plugin,[MOZILLA_FOUND=yes],
[MOZILLA_FOUND=no])
fi
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27723