From: Stefan Fritsch Date: Wed, 29 Jun 2011 19:12:03 +0000 (+0000) Subject: Fix compilation error due to missing LDAP_DECLARE definition X-Git-Tag: 2.3.14^2~98 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa569e11bd8b0344f25d8240d15c8a9b07384f5e;p=thirdparty%2Fapache%2Fhttpd.git Fix compilation error due to missing LDAP_DECLARE definition git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1141201 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ldap/ap_ldap_init.c b/modules/ldap/ap_ldap_init.c index 48022902512..930a3f7388b 100644 --- a/modules/ldap/ap_ldap_init.c +++ b/modules/ldap/ap_ldap_init.c @@ -32,6 +32,7 @@ #include "apr_strings.h" #if AP_HAS_LDAP +#include "ldap_private.h" /** * APR LDAP SSL Initialise function diff --git a/modules/ldap/ap_ldap_option.c b/modules/ldap/ap_ldap_option.c index d38ad21b07d..6932b0fdb43 100644 --- a/modules/ldap/ap_ldap_option.c +++ b/modules/ldap/ap_ldap_option.c @@ -31,6 +31,7 @@ #include "apr_tables.h" #if AP_HAS_LDAP +#include "ldap_private.h" static void option_set_cert(apr_pool_t *pool, LDAP *ldap, const void *invalue, ap_ldap_err_t *result); diff --git a/modules/ldap/ap_ldap_rebind.c b/modules/ldap/ap_ldap_rebind.c index 1c7c05957b6..0d1b8f143cc 100644 --- a/modules/ldap/ap_ldap_rebind.c +++ b/modules/ldap/ap_ldap_rebind.c @@ -26,6 +26,7 @@ #include "ap_ldap.h" #if AP_HAS_LDAP +#include "ldap_private.h" #include "apr_errno.h" #include "apr_strings.h" diff --git a/modules/ldap/ap_ldap_url.c b/modules/ldap/ap_ldap_url.c index 8317990c756..f20d24fbee7 100644 --- a/modules/ldap/ap_ldap_url.c +++ b/modules/ldap/ap_ldap_url.c @@ -78,6 +78,7 @@ #include "ap_ldap.h" #if AP_HAS_LDAP +#include "ldap_private.h" #if APR_HAVE_STDLIB_H #include