From 0305f26833aacd372d815bb3390e08f13ea77b82 Mon Sep 17 00:00:00 2001 From: Bradley Nicholes Date: Mon, 26 Aug 2002 23:00:22 +0000 Subject: [PATCH] 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 --- modules/NWGNUmakefile | 6 ++++++ 1 file changed, 6 insertions(+) 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 \ -- 2.50.1