mirror of
https://github.com/apache/httpd.git
synced 2025-11-08 04:22:21 +03:00
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@808722 13f79535-47bb-0310-9956-ffa450edef68
19 lines
523 B
Plaintext
19 lines
523 B
Plaintext
|
|
dnl APACHE_MODULE(name, helptext[, objects[, structname[, default[, config]]]])
|
|
|
|
APACHE_MODPATH_INIT(ldap)
|
|
|
|
ldap_objects="util_ldap.lo util_ldap_cache.lo util_ldap_cache_mgr.lo"
|
|
APACHE_MODULE(ldap, LDAP caching and connection pooling services, $ldap_objects, , no, [
|
|
if test -z "$apu_config" ; then
|
|
MOD_LDAP_LDADD="`$apr_config --ldap-libs`"
|
|
else
|
|
MOD_LDAP_LDADD="`$apu_config --ldap-libs`"
|
|
fi
|
|
AC_SUBST(MOD_LDAP_LDADD)
|
|
])
|
|
|
|
APR_ADDTO(INCLUDES, [-I\$(top_srcdir)/$modpath_current])
|
|
|
|
APACHE_MODPATH_FINISH
|