diff options
author | Bradley Nicholes <bnicholes@apache.org> | 2005-04-19 01:18:10 +0200 |
---|---|---|
committer | Bradley Nicholes <bnicholes@apache.org> | 2005-04-19 01:18:10 +0200 |
commit | e0128fb67fb9d79101186f057f3b71f7bf4b630c (patch) | |
tree | 47eaf1124e9da1e0f0ce7fd94a28ebe52f3d8642 /modules/NWGNUmakefile | |
parent | Document some environment variable options (diff) | |
download | apache2-e0128fb67fb9d79101186f057f3b71f7bf4b630c.tar.xz apache2-e0128fb67fb9d79101186f057f3b71f7bf4b630c.zip |
Build mod_ssl for the NetWare platform
Submitted by: Guenter Knauf <fuankg@apache.org>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@161813 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/NWGNUmakefile')
-rw-r--r-- | modules/NWGNUmakefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/NWGNUmakefile b/modules/NWGNUmakefile index a3d7b6b66f..57387949b2 100644 --- a/modules/NWGNUmakefile +++ b/modules/NWGNUmakefile @@ -25,6 +25,13 @@ SUBDIRS += ldap \ $(EOLIST) endif +# If OSSLSDK has been defined then build the mod_ssl module +ifndef USE_STDSOCKETS +ifneq "$(OSSLSDK)" "" +SUBDIRS += ssl \ + $(EOLIST) +endif +endif #If the mod_edir directory exists then build the mod_edir module ifeq "$(wildcard $(AP_WORK)\modules\mod_edir)" "$(AP_WORK)\modules\mod_edir" |