svn commit: samba r13690 - branches/SAMBA_3_0/source/include trunk/source/include

vlendec at samba.org vlendec at samba.org
Sun Feb 26 01:41:04 GMT 2006


Author: vlendec
Date: 2006-02-26 01:41:02 +0000 (Sun, 26 Feb 2006)
New Revision: 13690

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=13690

Log:
Check in Bj?\195?\182rn's LDAP Solaris fix.
Modified:
   branches/SAMBA_3_0/source/include/includes.h
   trunk/source/include/includes.h


Changeset:
Modified: branches/SAMBA_3_0/source/include/includes.h
===================================================================
--- branches/SAMBA_3_0/source/include/includes.h	2006-02-25 21:29:12 UTC (rev 13689)
+++ branches/SAMBA_3_0/source/include/includes.h	2006-02-26 01:41:02 UTC (rev 13690)
@@ -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

Modified: trunk/source/include/includes.h
===================================================================
--- trunk/source/include/includes.h	2006-02-25 21:29:12 UTC (rev 13689)
+++ trunk/source/include/includes.h	2006-02-26 01:41:02 UTC (rev 13690)
@@ -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



More information about the samba-cvs mailing list