After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 648975 - Win32 mingw compilation fix
Win32 mingw compilation fix
Status: RESOLVED DUPLICATE of bug 642214
Product: gtk+
Classification: Platform
Component: Backend: Win32
3.0.x
Other Windows
: Normal normal
: ---
Assigned To: gtk-win32 maintainers
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2011-04-29 19:11 UTC by Erik van Pienbroek
Modified: 2011-05-05 14:37 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Proposed patch (538 bytes, patch)
2011-04-29 19:11 UTC, Erik van Pienbroek
none Details | Review

Description Erik van Pienbroek 2011-04-29 19:11:49 UTC
Created attachment 186900 [details] [review]
Proposed patch

Hi,

When compiling GTK3 using the mingw toolchain then the shared libraries (DLL's) won't be build. This is caused by invalid LDFLAGS. These contain '-luuid'. As the uuid library on mingw is a static library and not an import library libtool will refuse to build a shared library (DLL). To circumvent this issue, the reference to '-luuid' needs to be changed to '-Wl,-luuid'. With this change libtool won't complain anymore and the shared library (DLL) will be generated. Attached patch implements this change.

Please consider applying it
Comment 1 Erik van Pienbroek 2011-05-05 14:37:31 UTC
Looks like this patch was already applied by bug 642214

*** This bug has been marked as a duplicate of bug 642214 ***