Thomas Fitzsimmons wrote:
Hi Mark,

Mark Wielaard wrote:
Hi Tom,

On Wed, 2006-08-02 at 15:34 -0400, Thomas Fitzsimmons wrote:
Mandriva calls its Mozilla development pkgconfig module "mozilla-firefox-plugin". This patch, which I committed to HEAD, adds a fallback check for that name.

2006-08-02  Thomas Fitzsimmons  <[EMAIL PROTECTED]>

    * configure.ac (MOZILLA_FOUND): Fall back to
    mozilla-firefox-plugin.

Thanks for that. Also added to the release and generics branch.

Thanks.

It seems
every distro has another name for this :{ If you have time could you
take a look at PR27871 which has more configure magic for this?

Yes, I closed PR27871 which is already fixed in CVS.

I also committed to trunk this follow-up patch to support seamonkey-plugin.

Tom

2006-08-14  Thomas Fitzsimmons  <[EMAIL PROTECTED]>

        PR classpath/27723
        * configure.ac (MOZILLA_FOUND): Add pkg-config check for
        seamonkey-plugin.

Index: configure.ac
===================================================================
RCS file: /sources/classpath/classpath/configure.ac,v
retrieving revision 1.177
diff -u -r1.177 configure.ac
--- configure.ac	5 Aug 2006 00:35:51 -0000	1.177
+++ configure.ac	14 Aug 2006 20:30:47 -0000
@@ -557,6 +557,9 @@
     if test "x${MOZILLA_FOUND}" = xno; then
       PKG_CHECK_MODULES(MOZILLA, mozilla-firefox-plugin, [MOZILLA_FOUND=yes], [MOZILLA_FOUND=no])
     fi
+    if test "x${MOZILLA_FOUND}" = xno; then
+      PKG_CHECK_MODULES(MOZILLA, seamonkey-plugin, [MOZILLA_FOUND=yes], [MOZILLA_FOUND=no])
+    fi
     PKG_CHECK_MODULES(GLIB, glib-2.0)
 
     AC_SUBST(MOZILLA_CFLAGS)

Reply via email to