summaryrefslogtreecommitdiff
path: root/os
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2005-04-14 23:42:21 +0000
committerBradley Nicholes <bnicholes@apache.org>2005-04-14 23:42:21 +0000
commit6905d3d9d5da41176e547742c8c04d434cde2056 (patch)
tree36215a9131a7eb10cfa3907b4dbb6d4a155465b5 /os
parent8fa473da4301bfc766fcf3908f336b7c1e0dee8a (diff)
downloadhttpd-6905d3d9d5da41176e547742c8c04d434cde2056.tar.gz
Allow httpd on NetWare to build using either the standard socket libraries or the Winsock libraries.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@161368 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os')
-rw-r--r--os/netware/modules.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/os/netware/modules.c b/os/netware/modules.c
index 84c5c1df69..153b8c0a07 100644
--- a/os/netware/modules.c
+++ b/os/netware/modules.c
@@ -36,7 +36,9 @@ extern module alias_module;
extern module env_module;
extern module log_config_module;
extern module setenvif_module;
+#ifdef USE_WINSOCK
extern module nwssl_module;
+#endif
extern module netware_module;
module *ap_prelinked_modules[] = {
@@ -53,7 +55,9 @@ module *ap_prelinked_modules[] = {
&env_module,
&log_config_module,
&setenvif_module,
+#ifdef USE_WINSOCK
&nwssl_module,
+#endif
&netware_module,
NULL
};
@@ -72,7 +76,9 @@ ap_module_symbol_t ap_prelinked_module_symbols[] = {
{"env_module", &env_module},
{"log_config_module", &log_config_module},
{"setenvif_module", &setenvif_module},
+#ifdef USE_WINSOCK
{"nwssl_module", &nwssl_module},
+#endif
{"netware_module", &netware_module},
{NULL, NULL}
};
@@ -91,7 +97,9 @@ module *ap_preloaded_modules[] = {
&env_module,
&log_config_module,
&setenvif_module,
+#ifdef USE_WINSOCK
&nwssl_module,
+#endif
&netware_module,
NULL
};