trying to work around the compilation problem on HP-UX Daniel

* config.h.in configure.in xmlmodule.c: trying to work around
  the compilation problem on HP-UX
Daniel
This commit is contained in:
Daniel Veillard 2005-01-13 11:25:15 +00:00
parent c7c9fb19a4
commit dcd939032f
4 changed files with 15 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Thu Jan 13 12:24:09 CET 2005 Daniel Veillard <daniel@veillard.com>
* config.h.in configure.in xmlmodule.c: trying to work around
the compilation problem on HP-UX
Wed Jan 12 22:03:33 CET 2005 Daniel Veillard <daniel@veillard.com>
* pattern.c: fixed the fixed size array structure problem reported by

View File

@ -43,6 +43,9 @@
/* Have dlopen based dso */
#undef HAVE_DLOPEN
/* Define to 1 if you have the <dl.h> header file. */
#undef HAVE_DL_H
/* Define to 1 if you have the <errno.h> header file. */
#undef HAVE_ERRNO_H

View File

@ -388,6 +388,8 @@ AC_CHECK_HEADERS([resolv.h], [], [],
# include <arpa/nameser.h>
# endif
])
AC_CHECK_HEADERS([dl.h])
AC_CHECK_HEADERS([dlfcn.h])
echo Checking libraries

View File

@ -191,8 +191,9 @@ xmlModuleFree(xmlModulePtr module)
}
#ifdef HAVE_DLOPEN
#ifdef HAVE_DLFCN_H
#include <dlfcn.h>
#endif
/**
* xmlModulePlatformOpen:
@ -239,7 +240,9 @@ xmlModulePlatformSymbol(void *handle, const char *name, void **symbol)
#endif /* HAVE_DLOPEN */
#ifdef HAVE_SHLLOAD /* HAVE_SHLLOAD */
#ifdef HAVE_DL_H
#include <dl.h>
#endif
/*
* xmlModulePlatformOpen:
* returns a handle on success, and zero on error.