1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-07 04:02:58 +03:00

Incorporate the ap_ldap incomplete API, as there is no interest or effort

at APR to make this a complete abstraction, and it was voted 'off the island'
with APR 2.0.  This will allow httpd 2.3 to build against either apr-2.0
or apr+util 1.x.



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1129808 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
William A. Rowe Jr
2011-05-31 17:10:11 +00:00
parent e66d41d2d1
commit 37770675d7
23 changed files with 3459 additions and 139 deletions

View File

@@ -14,8 +14,8 @@
* limitations under the License.
*/
#ifndef APU_LDAP_CACHE_H
#define APU_LDAP_CACHE_H
#ifndef AP_LDAP_CACHE_H
#define AP_LDAP_CACHE_H
/**
* @file util_ldap_cache.h
@@ -23,7 +23,7 @@
*/
/* this whole thing disappears if LDAP is not enabled */
#if APR_HAS_LDAP
#if AP_HAS_LDAP
/*
@@ -200,5 +200,5 @@ void *util_ald_cache_insert(util_ald_cache_t *cache, void *payload);
void util_ald_cache_remove(util_ald_cache_t *cache, void *payload);
char *util_ald_cache_display_stats(request_rec *r, util_ald_cache_t *cache, char *name, char *id);
#endif /* APR_HAS_LDAP */
#endif /* APU_LDAP_CACHE_H */
#endif /* AP_HAS_LDAP */
#endif /* AP_LDAP_CACHE_H */