MinGW cannot find some native libs [patch]

Jean-Philippe Leboeuf <[email protected]> Wed, 12 Jul 2006 15:17:28 +0200
Newsgroups gmane.comp.mozilla.jrex
Message-ID <[email protected]>
Hello,

MinGW does not seems to be able to find two libs with the native 
Makefile.in :
- $(DIST)/lib/$(LIB_PREFIX)jsj$(MOZ_BITS)$(VERSION_NUMBER).$(LIB_SUFFIX)
- $(DIST)/lib/$(LIB_PREFIX)gkgfx.$(LIB_SUFFIX)
This to files do not end with ".a" but with ".dll.a".
If we replace $(LIB_SUFFIX) by $(IMPORT_LIB_SUFFIX) it works.

Same problem detailed there :
http://www.mozdev.org/pipermail/jrex/2005-March/001590.html .

I must say I cannot launch the JRex example at this time, but the build 
can complete.

++jpl

_______________________________________________
JRex mailing list
[email protected]
http://mozdev.org/mailman/listinfo/jrex
Makefile_native_ImportLibSuffixWin32.patch (text/plain, 426 B)
15a16
>  #   J.-P. Leboeuf <[email protected]>
247c248
<                 $(DIST)/lib/$(LIB_PREFIX)jsj$(MOZ_BITS)$(VERSION_NUMBER).$(LIB_SUFFIX) \
---
>                 $(DIST)/lib/$(LIB_PREFIX)jsj$(MOZ_BITS)$(VERSION_NUMBER).$(IMPORT_LIB_SUFFIX) \
338c339
<                 	$(DIST)/lib/$(LIB_PREFIX)gkgfx.$(LIB_SUFFIX) \
---
>                 	$(DIST)/lib/$(LIB_PREFIX)gkgfx.$(IMPORT_LIB_SUFFIX) \