diff options
author | Lukas Slebodnik <lslebodn@redhat.com> | 2013-08-31 11:15:03 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-09-09 16:23:52 +0200 |
commit | b6198cdbb612c83e096602ea9f32f2c6065b59ec (patch) | |
tree | 45517a0205dc15db3c8e01166fe316d3f8f510b0 /src/external | |
parent | eaa723b4d06b4c1e588df67bef44a84bbfaebf1a (diff) | |
download | sssd-b6198cdbb612c83e096602ea9f32f2c6065b59ec.tar.gz sssd-b6198cdbb612c83e096602ea9f32f2c6065b59ec.tar.bz2 sssd-b6198cdbb612c83e096602ea9f32f2c6065b59ec.zip |
AUTOTOOLS: Add directories for searching ldap headers and libs
Diffstat (limited to 'src/external')
-rw-r--r-- | src/external/ldap.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/external/ldap.m4 b/src/external/ldap.m4 index 8899df9d..3a99ddfc 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; |