Skip to content
Snippets Groups Projects
Commit a916535a authored by Howard Chu's avatar Howard Chu
Browse files

Fix #include of sasl.h

parent fd810bb3
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
......@@ -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>
......
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment