From 9fffb6ab5b9eebdc3173ad63b90aec974f18ab53 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 26 Feb 2006 12:25:34 +0000 Subject: r13693: More Solaris/LDAP fixes from Bjoern (This used to be commit 7c098ca0ae4c7e11c7100fb09b42ce716beffb56) --- source3/include/includes.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source3/include/includes.h') diff --git a/source3/include/includes.h b/source3/include/includes.h index 372744c8ea..aef3437d56 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -474,6 +474,12 @@ #if defined(LDAP_SASL_BIND_INPROGRESS) && !defined(LDAP_SASL_BIND_IN_PROGRESS) #define LDAP_SASL_BIND_IN_PROGRESS LDAP_SASL_BIND_INPROGRESS #endif +/* Solaris 8 defines SSL_LDAP_PORT, not LDAPS_PORT and it only does so if + LDAP_SSL is defined - but SSL is not working. We just want the + port number! Let's just define LDAPS_PORT correct. */ +#if !defined(LDAPS_PORT) +#define LDAPS_PORT 636 +#endif #else #undef HAVE_LDAP #endif -- cgit