You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fu...@apache.org on 2011/10/29 18:42:23 UTC

svn commit: r1194930 - /httpd/httpd/trunk/modules/session/NWGNUmakefile

Author: fuankg
Date: Sat Oct 29 16:42:22 2011
New Revision: 1194930

URL: http://svn.apache.org/viewvc?rev=1194930&view=rev
Log:
Added check for APU_HAVE_CRYPTO to NetWare build.

Modified:
    httpd/httpd/trunk/modules/session/NWGNUmakefile

Modified: httpd/httpd/trunk/modules/session/NWGNUmakefile
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/session/NWGNUmakefile?rev=1194930&r1=1194929&r2=1194930&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/session/NWGNUmakefile (original)
+++ httpd/httpd/trunk/modules/session/NWGNUmakefile Sat Oct 29 16:42:22 2011
@@ -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