1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-01-12 09:17:37 +03:00

apply simple patch from Carlo Bramini to avoid compilation problems with

* xmlmodule.c: apply simple patch from Carlo Bramini to avoid
  compilation problems with Mingw32
Daniel

svn path=/trunk/; revision=3689
This commit is contained in:
Daniel Veillard 2008-02-08 10:49:46 +00:00
parent 9e3a513c45
commit 643fb5d7e0
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Fri Feb 8 11:47:18 CET 2008 Daniel Veillard <daniel@veillard.com>
* xmlmodule.c: apply simple patch from Carlo Bramini to avoid
compilation problems with Mingw32
Fri Feb 8 11:33:15 CET 2008 Daniel Veillard <daniel@veillard.com>
* xmlregexp.c: apply patch from Andrew Tosh to fix behaviour

View File

@ -190,7 +190,7 @@ xmlModuleFree(xmlModulePtr module)
return (0);
}
#ifdef HAVE_DLOPEN
#if defined(HAVE_DLOPEN) && !defined(_WIN32)
#ifdef HAVE_DLFCN_H
#include <dlfcn.h>
#endif