sas Sat Oct 26 17:28:36 2002 EDT
Modified files:
/php4 configure.in
Log:
Define HAVE_LIBDL, if dlopen() was found.
It was tempting to do a complete s/HAVE_LIBDL/HAVE_DLOPEN/ over the
whole code base. I defer that to a later point in time for now.
Index: php4/configure.in
diff -u php4/configure.in:1.388 php4/configure.in:1.389
--- php4/configure.in:1.388 Thu Oct 24 09:14:32 2002
+++ php4/configure.in Sat Oct 26 17:28:35 2002
@@ -1,4 +1,4 @@
-dnl ## $Id: configure.in,v 1.388 2002/10/24 13:14:32 sas Exp $ -*- sh -*-
+dnl ## $Id: configure.in,v 1.389 2002/10/26 21:28:35 sas Exp $ -*- sh -*-
dnl ## Process this file with autoconf to produce a configure script.
divert(1)
@@ -280,6 +280,9 @@
PHP_CHECK_FUNC(yp_get_default_domain, nsl)
PHP_CHECK_FUNC(dlopen, dl)
+if test "$ac_cv_func_dlopen" = "yes"; then
+ AC_DEFINE(HAVE_LIBDL, 1, [ ])
+fi
AC_CHECK_LIB(m, sin)
dnl Check for resolver routines.
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php