From 52576153670f79014992020cb5179cc51ee0a6b9 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 26 Feb 2006 01:41:02 +0000 Subject: r13690: Check in Björn's LDAP Solaris fix. (This used to be commit d6c6363517513cc66a8933a6e4f95c5ce5cf1cb4) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source3/include/includes.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source3') diff --git a/source3/include/includes.h b/source3/include/includes.h index 407c68b4c3..372744c8ea 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -470,6 +470,10 @@ #ifndef LDAP_OPT_SUCCESS #define LDAP_OPT_SUCCESS 0 #endif +/* Solaris 8 and maybe other LDAP implementations spell this "..._INPROGRESS": */ +#if defined(LDAP_SASL_BIND_INPROGRESS) && !defined(LDAP_SASL_BIND_IN_PROGRESS) +#define LDAP_SASL_BIND_IN_PROGRESS LDAP_SASL_BIND_INPROGRESS +#endif #else #undef HAVE_LDAP #endif -- cgit