summaryrefslogtreecommitdiffstats
path: root/modules/session
diff options
context:
space:
mode:
authorGuenter Knauf <fuankg@apache.org>2011-10-29 18:42:22 +0200
committerGuenter Knauf <fuankg@apache.org>2011-10-29 18:42:22 +0200
commitaae60cdbd804ad0007d6074b4c488d4e1ef83ed9 (patch)
tree5ea42e8c3130ddb9f2cc07ba8b7c8ad805ce3416 /modules/session
parentRemove magic numbers; ensure that an invalid nmatch is corrected (diff)
downloadapache2-aae60cdbd804ad0007d6074b4c488d4e1ef83ed9.tar.xz
apache2-aae60cdbd804ad0007d6074b4c488d4e1ef83ed9.zip
Added check for APU_HAVE_CRYPTO to NetWare build.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1194930 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/session')
-rw-r--r--modules/session/NWGNUmakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/session/NWGNUmakefile b/modules/session/NWGNUmakefile
index a2bda93e28..bdaf1b7b08 100644
--- a/modules/session/NWGNUmakefile
+++ b/modules/session/NWGNUmakefile
@@ -158,7 +158,8 @@ TARGET_nlm = \
$(EOLIST)
# If the APU library has cryptp API then build the mod_session_crypto module
-ifdef APU_HAVE_CRYPTO
+AWKCMD = $(AWK) '/^\#define APU_HAVE_CRYPTO/{print $$3}' $(APRUTIL)/include/apu.h
+ifeq "$(shell $(AWKCMD))" "1"
TARGET_nlm += $(OBJDIR)/session_crypto.nlm
endif