summaryrefslogtreecommitdiff
path: root/os/netware
diff options
context:
space:
mode:
authorAndré Malo <nd@apache.org>2004-06-04 22:40:47 +0000
committerAndré Malo <nd@apache.org>2004-06-04 22:40:47 +0000
commit7accf16eed5269fd6085d1b5ccf4a2739b73b0cd (patch)
tree554b7daa186cbccc57a92e61a47522b0682626c0 /os/netware
parent2a3bb01e719ead3eadf944bfcf4e9f226e906912 (diff)
downloadhttpd-7accf16eed5269fd6085d1b5ccf4a2739b73b0cd.tar.gz
Nobody objected:
<IfModule> now takes the module identifier in addition to the filename. CAUTION: this commit breaks the build on netware. It still needs to be adjusted. (but I don't have any netware knowledge...) Also, developers need to re-run buildconf on unices. PR: 29003 Submitted by: Edward Rudd <eddie omegaware.com>, Andr� Malo git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103849 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/netware')
-rw-r--r--os/netware/modules.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/os/netware/modules.c b/os/netware/modules.c
index 7d3b791738..0115cc8f4e 100644
--- a/os/netware/modules.c
+++ b/os/netware/modules.c
@@ -69,6 +69,31 @@ module *ap_prelinked_modules[] = {
NULL
};
+ap_module_symbol_t ap_prelinked_module_symbols[] = {
+ {"core_module", &core_module},
+ {"mpm_netware_module", &mpm_netware_module},
+ {"http_module", &http_module},
+ {"so_module", &so_module},
+ {"mime_module", &mime_module},
+ {"authz_host_module", &authz_host_module},
+ {"negotiation_module", &negotiation_module},
+ {"include_module", &include_module},
+ {"autoindex_module", &autoindex_module},
+ {"dir_module", &dir_module},
+ {"cgi_module", &cgi_module},
+ {"userdir_module", &userdir_module},
+ {"alias_module", &alias_module},
+ {"env_module", &env_module},
+ {"log_config_module", &log_config_module},
+ {"asis_module", &asis_module},
+ {"imap_module", &imap_module},
+ {"actions_module", &actions_module},
+ {"setenvif_module", &setenvif_module},
+ {"nwssl_module", &nwssl_module},
+ {"netware_module", &netware_module},
+ {NULL, NULL}
+};
+
module *ap_preloaded_modules[] = {
&core_module,
&mpm_netware_module,