diff options
author | Yang Tse <yangsita@gmail.com> | 2007-10-09 23:51:55 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-10-09 23:51:55 +0000 |
commit | 43e8f00861fa148d63ce349db8455a1739eeef14 (patch) | |
tree | 84009492ca0473c1c7d3df76f6c5a2f4fad0afe8 /lib/ldap.c | |
parent | 3337be81c8e1c28cb99885793edd4626163c2f08 (diff) |
lber.h needs to be included since ldap.h might not include it
Diffstat (limited to 'lib/ldap.c')
-rw-r--r-- | lib/ldap.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/ldap.c b/lib/ldap.c index 095fbeb0b..365c112fe 100644 --- a/lib/ldap.c +++ b/lib/ldap.c @@ -52,6 +52,9 @@ # endif #else #define LDAP_DEPRECATED 1 /* Be sure ldap_init() is defined. */ +#ifdef HAVE_LBER_H +# include <lber.h> +#endif # include <ldap.h> #if (defined(HAVE_LDAP_SSL) && defined(HAVE_LDAP_SSL_H)) # include <ldap_ssl.h> |