summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2013-08-31 11:15:03 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-09-09 17:04:36 +0200
commit24a4c00d7f2d7a12a32ee143d6c23aa3734ab049 (patch)
tree74eb4aa1de7fef1cf5a00572c18dc32ef541d57e
parent9c649c805c1cf0a66f9b59ec3d6dc4f53240feb7 (diff)
downloadsssd-24a4c00d7f2d7a12a32ee143d6c23aa3734ab049.tar.gz
sssd-24a4c00d7f2d7a12a32ee143d6c23aa3734ab049.tar.xz
sssd-24a4c00d7f2d7a12a32ee143d6c23aa3734ab049.zip
AUTOTOOLS: Add directories for searching ldap headers and libs
-rw-r--r--src/external/ldap.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/src/external/ldap.m4 b/src/external/ldap.m4
index 8899df9d7..3a99ddfcc 100644
--- a/src/external/ldap.m4
+++ b/src/external/ldap.m4
@@ -9,14 +9,14 @@ dnl ---------------------------------------------------------------------------
dnl - Check for Mozilla LDAP or OpenLDAP SDK
dnl ---------------------------------------------------------------------------
-for p in /usr/include/openldap24; do
+for p in /usr/include/openldap24 /usr/local/include; do
if test -f "${p}/ldap.h"; then
OPENLDAP_CFLAGS="${OPENLDAP_CFLAGS} -I${p}"
break;
fi
done
-for p in /usr/lib64/openldap24 /usr/lib/openldap24; do
+for p in /usr/lib64/openldap24 /usr/lib/openldap24 /usr/local/lib ; do
if test -f "${p}/libldap.so"; then
OPENLDAP_LIBS="${OPENLDAP_LIBS} -L${p}"
break;