From aae60cdbd804ad0007d6074b4c488d4e1ef83ed9 Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Sat, 29 Oct 2011 16:42:22 +0000 Subject: [PATCH] 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 --- modules/session/NWGNUmakefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.40.0