mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 15:49:34 -05:00
Fix #include of sasl.h
This commit is contained in:
parent
fd810bb35e
commit
a916535a27
3 changed files with 6 additions and 2 deletions
|
|
@ -23,7 +23,7 @@
|
||||||
ldap_pvt_thread_mutex_t ldap_int_sasl_mutex;
|
ldap_pvt_thread_mutex_t ldap_int_sasl_mutex;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_HEADER_SASL_SASL_H
|
#ifdef HAVE_SASL_SASL_H
|
||||||
#include <sasl/sasl.h>
|
#include <sasl/sasl.h>
|
||||||
#else
|
#else
|
||||||
#include <sasl.h>
|
#include <sasl.h>
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
#ifdef HAVE_CYRUS_SASL
|
#ifdef HAVE_CYRUS_SASL
|
||||||
/* the need for this should be removed */
|
/* the need for this should be removed */
|
||||||
#ifdef HAVE_HEADER_SASL_SASL_H
|
#ifdef HAVE_SASL_SASL_H
|
||||||
#include <sasl/sasl.h>
|
#include <sasl/sasl.h>
|
||||||
#else
|
#else
|
||||||
#include <sasl.h>
|
#include <sasl.h>
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,11 @@
|
||||||
#include <ac/string.h>
|
#include <ac/string.h>
|
||||||
#include <ac/unistd.h>
|
#include <ac/unistd.h>
|
||||||
|
|
||||||
|
#ifdef HAVE_SASL_SASL_H
|
||||||
|
#include <sasl/sasl.h>
|
||||||
|
#else
|
||||||
#include <sasl.h>
|
#include <sasl.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <ldap.h>
|
#include <ldap.h>
|
||||||
#include "lutil_ldap.h"
|
#include "lutil_ldap.h"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue