2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 14:25:15 +00:00

Include ldap_ssl.h if we can find it. Needed for the ldapssl_set_strength

defines on HP-UX at least.
This commit is contained in:
Todd C. Miller
2008-01-21 16:07:42 +00:00
parent 870334373d
commit a3e6610e01
4 changed files with 150 additions and 4 deletions

4
ldap.c
View File

@@ -54,7 +54,9 @@
# include <lber.h>
#endif
#include <ldap.h>
#ifdef HAVE_MPS_LDAP_SSL_H
#if defined(HAVE_LDAP_SSL_H)
# include <ldap_ssl.h>
#elif defined(HAVE_MPS_LDAP_SSL_H)
# include <mps/ldap_ssl.h>
#endif
#ifdef HAVE_LDAP_SASL_INTERACTIVE_BIND_S