From: Guenter Knauf Date: Sat, 29 Oct 2011 16:42:22 +0000 (+0000) Subject: Added check for APU_HAVE_CRYPTO to NetWare build. X-Git-Tag: 2.3.15~70 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aae60cdbd804ad0007d6074b4c488d4e1ef83ed9;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/modules/session/NWGNUmakefile b/modules/session/NWGNUmakefile index a2bda93e288..bdaf1b7b084 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