summaryrefslogtreecommitdiff
path: root/ext/ldap/config.m4
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>1999-12-30 04:07:46 +0000
committerSascha Schumann <sas@php.net>1999-12-30 04:07:46 +0000
commit2c99bef442d71a455628628e932daf26aaec8a46 (patch)
treef4a7ca3e976ff07d3d6a730bded4ed1598b6ff8d /ext/ldap/config.m4
parente3af8ed3217b0a3bd46382e523bb12cfdc12e230 (diff)
downloadphp-git-2c99bef442d71a455628628e932daf26aaec8a46.tar.gz
Get rid of config.h.stub. Note that you should embed a comment about
what the respective define does into the AC_DEFINE macro. I.e. AC_DEFINE(HAVE_FOO, 1, [Whether you have FOO])
Diffstat (limited to 'ext/ldap/config.m4')
-rw-r--r--ext/ldap/config.m410
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/ldap/config.m4 b/ext/ldap/config.m4
index a3c1dcef4e..9380eeb639 100644
--- a/ext/ldap/config.m4
+++ b/ext/ldap/config.m4
@@ -50,17 +50,17 @@ dnl these here if necessary. -RL
elif test -f $LDAP_LIBDIR/libldapssl30.so; then
AC_ADD_LIBRARY(ldapssl30)
AC_ADD_LIBRARY($LDAP_PTHREAD)
- AC_DEFINE(HAVE_NSLDAP)
+ AC_DEFINE(HAVE_NSLDAP,,[ ])
elif test -f $LDAP_LIBDIR/libldapssl30.sl; then
AC_ADD_LIBRARY(ldapssl30)
- AC_DEFINE(HAVE_NSLDAP)
+ AC_DEFINE(HAVE_NSLDAP,,[ ])
elif test -f $LDAP_LIBDIR/libldap30.so; then
AC_ADD_LIBRARY(ldap30)
AC_ADD_LIBRARY($LDAP_PTHREAD)
- AC_DEFINE(HAVE_NSLDAP)
+ AC_DEFINE(HAVE_NSLDAP,,[ ])
elif test -f $LDAP_LIBDIR/libldap30.sl; then
AC_ADD_LIBRARY(ldap30)
- AC_DEFINE(HAVE_NSLDAP)
+ AC_DEFINE(HAVE_NSLDAP,,[ ])
elif test -f $LDAP_LIBDIR/libumich_ldap.so; then
AC_ADD_LIBRARY(umich_ldap)
AC_ADD_LIBRARY(umich_lber)
@@ -69,7 +69,7 @@ dnl these here if necessary. -RL
AC_ADD_INCLUDE($LDAP_INCDIR)
AC_ADD_LIBPATH($LDAP_LIBDIR)
- AC_DEFINE(HAVE_LDAP)
+ AC_DEFINE(HAVE_LDAP,,[ ])
AC_MSG_RESULT(yes)
PHP_EXTENSION(ldap)