mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
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:
parent
c7c9fb19a4
commit
dcd939032f
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user