summaryrefslogtreecommitdiff
path: root/source3/configure.in
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-11-25 12:26:40 +0000
committerAndrew Tridgell <tridge@samba.org>2001-11-25 12:26:40 +0000
commite9595e551780abc773d636329ec5ea46d5fc7ebd (patch)
treea4dde10cae6595ce296c4d05e33c5b038fee06f2 /source3/configure.in
parent391a72a95fda1a4d1841c29257b5001435c09dc1 (diff)
downloadsamba-e9595e551780abc773d636329ec5ea46d5fc7ebd.tar.gz
samba-e9595e551780abc773d636329ec5ea46d5fc7ebd.tar.bz2
samba-e9595e551780abc773d636329ec5ea46d5fc7ebd.zip
check for liblber separately
(This used to be commit d7216424d94ee89e1760596c8f87d1883f369771)
Diffstat (limited to 'source3/configure.in')
-rw-r--r--source3/configure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 534be53dc9..617453c211 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -1642,9 +1642,10 @@ fi
########################################################
# now see if we can find the ldap libs in standard paths
if test x$have_ldap != xyes; then
-AC_CHECK_LIB(ldap, ldap_open, [LIBS="$LIBS -lldap -llber";
+AC_CHECK_LIB(ldap, ldap_open, [LIBS="$LIBS -lldap";
AC_DEFINE(HAVE_LDAP)])
fi
+AC_CHECK_LIB(lber, ber_scanf, [LIBS="$LIBS -llber"])
#################################################