Hi, On mingw/cygwin, gnustep-gui/Model does not add the requisite libraries to link against, to the dllwrap call.
I needed to add the following BUNDLE_LIBS line near the end of the GNUmakefile: ifneq ($(GUI_LIB), nx) libgmodel_LIBRARIES_DEPEND_UPON = -lgnustep-gui $(FND_LIBS) BUNDLE_LIBS += $(libgmodel_LIBRARIES_DEPEND_UPON) else Now I'm sure that I should really have added a check for ifeq ($(GNUSTEP_TARGET_OS),mingw32) around the BUNDLE_LIBS call. But can I leave that decision to the maintainers? Also, I am not completely sure that BUNDLE_LIBS is supported API for doing this -- I simply looked at bundle.make and saw the use of BUNDLE_LIBS. So if there's a better way of doing it, please do it that way. Cheers, Stephen Brandon [EMAIL PROTECTED] _______________________________________________ Bug-gnustep mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-gnustep
