Skip to content

Commit

Permalink
Fix library problems with mingw-w64
Browse files Browse the repository at this point in the history
For https://bugzilla.gnome.org/show_bug.cgi?id=663588
Fix a windows only issue when compiling the library with
MingW (64 bits) using Fedora cross-compiler chain.
Change the dllexport for data
  • Loading branch information
mooninite authored and veillard committed May 10, 2012
1 parent aa0be5f commit 1eabc31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/libxml/xmlexports.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
*/
#if defined(IN_LIBXML) && !defined(LIBXML_STATIC)
#define XMLPUBFUN __declspec(dllexport)
#define XMLPUBVAR __declspec(dllexport)
#define XMLPUBVAR __declspec(dllexport) extern
#else
#define XMLPUBFUN
#if !defined(LIBXML_STATIC)
Expand Down

0 comments on commit 1eabc31

Please sign in to comment.