brane 00/12/19 03:59:18
Modified: . configure.in
Log:
Configure DSO support on HP-UX.
Revision Changes Path
1.191 +5 -2 apr/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/apr/configure.in,v
retrieving revision 1.190
retrieving revision 1.191
diff -u -r1.190 -r1.191
--- configure.in 2000/12/18 00:17:18 1.190
+++ configure.in 2000/12/19 11:59:16 1.191
@@ -485,9 +485,12 @@
if test "$tempdso" = "no"; then
AC_CHECK_FUNCS(dlopen, [ tempdso="yes" ], [ tempdso="no" ])
fi
- if test "$tempdso" = "no"; then
- AC_CHECK_LIB(root, load_image, tempdso="yes", tempdso="no")
+ if test "$tempdso" = "no"; then
+ AC_CHECK_LIB(root, load_image, tempdso="yes", tempdso="no")
fi
+ if test "$tempdso" = "no"; then
+ AC_CHECK_LIB(dld, shl_load, [ tempdso="yes" LIBS="$LIBS -ldld" ],
+ tempdso="no")
if test "$tempdso" = "no"; then
case $OS in
*os390|*-os2*)