Skip to content

Commit 22aa654

Browse files
author
Bradley Nicholes
committed
Added conditional build instructions for building the ldap modules and
mod_deflate git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95510 13f79535-47bb-0310-9956-ffa450edef68
1 parent 551a868 commit 22aa654

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

modules/NWGNUmakefile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,24 @@ SUBDIRS = \
1515
proxy \
1616
$(EOLIST)
1717

18+
# If the ldap-aaa directory exists then build the auth_ldap module
19+
ifeq "$(wildcard $(AP_WORK)\modules\ldap-aaa)" "$(AP_WORK)\modules\ldap-aaa"
20+
SUBDIRS += ldap-aaa \
21+
$(EOLIST)
22+
endif
23+
24+
#If the ldap-cache directory exists then build the ldaputil module
25+
ifeq "$(wildcard $(AP_WORK)\modules\ldap-cache)" "$(AP_WORK)\modules\ldap-cache"
26+
SUBDIRS += ldap-cache \
27+
$(EOLIST)
28+
endif
29+
30+
# If the zlib libraries source exists then build the mod_deflate module
31+
ifeq "$(wildcard $(AP_WORK)\srclib\zlib)" "$(AP_WORK)\srclib\zlib"
32+
SUBDIRS += filters \
33+
$(EOLIST)
34+
endif
35+
1836
#
1937
# Get the 'head' of the build environment. This includes default targets and
2038
# paths to tools

0 commit comments

Comments
 (0)