From: Bradley Nicholes Date: Mon, 26 Aug 2002 23:00:22 +0000 (+0000) Subject: Conditionally compile mod_edir if the directory exists X-Git-Tag: AGB_BEFORE_AAA_CHANGES~152 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0305f26833aacd372d815bb3390e08f13ea77b82;p=apache Conditionally compile mod_edir if the directory exists git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96537 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/NWGNUmakefile b/modules/NWGNUmakefile index 22f6c117f0..2ee15b590a 100644 --- a/modules/NWGNUmakefile +++ b/modules/NWGNUmakefile @@ -27,6 +27,12 @@ SUBDIRS += ldap-cache \ $(EOLIST) endif +#If the mod_edir directory exists then build the mod_edir module +ifeq "$(wildcard $(AP_WORK)\modules\mod_edir)" "$(AP_WORK)\modules\mod_edir" +SUBDIRS += mod_edir \ + $(EOLIST) +endif + # If the zlib libraries source exists then build the mod_deflate module ifeq "$(wildcard $(AP_WORK)\srclib\zlib)" "$(AP_WORK)\srclib\zlib" SUBDIRS += filters \