Fix #include of sasl.h

This commit is contained in:
Howard Chu 2002-02-11 09:39:15 +00:00
parent fd810bb35e
commit a916535a27
3 changed files with 6 additions and 2 deletions

View file

@ -23,7 +23,7 @@
ldap_pvt_thread_mutex_t ldap_int_sasl_mutex;
#endif
#ifdef HAVE_HEADER_SASL_SASL_H
#ifdef HAVE_SASL_SASL_H
#include <sasl/sasl.h>
#else
#include <sasl.h>

View file

@ -24,7 +24,7 @@
#ifdef HAVE_CYRUS_SASL
/* the need for this should be removed */
#ifdef HAVE_HEADER_SASL_SASL_H
#ifdef HAVE_SASL_SASL_H
#include <sasl/sasl.h>
#else
#include <sasl.h>

View file

@ -13,7 +13,11 @@
#include <ac/string.h>
#include <ac/unistd.h>
#ifdef HAVE_SASL_SASL_H
#include <sasl/sasl.h>
#else
#include <sasl.h>
#endif
#include <ldap.h>
#include "lutil_ldap.h"