diff options
author | Guenter Knauf <fuankg@apache.org> | 2011-10-29 18:42:22 +0200 |
---|---|---|
committer | Guenter Knauf <fuankg@apache.org> | 2011-10-29 18:42:22 +0200 |
commit | aae60cdbd804ad0007d6074b4c488d4e1ef83ed9 (patch) | |
tree | 5ea42e8c3130ddb9f2cc07ba8b7c8ad805ce3416 /modules/session | |
parent | Remove magic numbers; ensure that an invalid nmatch is corrected (diff) | |
download | apache2-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/NWGNUmakefile | 3 |
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 |