diff options
author | Bradley Nicholes <bnicholes@apache.org> | 2005-04-08 22:03:36 +0000 |
---|---|---|
committer | Bradley Nicholes <bnicholes@apache.org> | 2005-04-08 22:03:36 +0000 |
commit | 564aeef12328e94069cb2bef1c87bc7099c5372b (patch) | |
tree | 62de48629cb44c98b1f5c479d97b40acc8fcb761 /os | |
parent | c312a18db52b508faff59e9765e85ad5ccf89df1 (diff) | |
download | httpd-564aeef12328e94069cb2bef1c87bc7099c5372b.tar.gz |
Rethink the built-in vs shared modules for NetWare. Reposition mod_asis, mod_actions, mod_cgi, mod_imagemap, mod_userdir and mod_autoindex as shared rather than built-in.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@160625 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os')
-rw-r--r-- | os/netware/modules.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/os/netware/modules.c b/os/netware/modules.c index 0ba8c66bbc..84c5c1df69 100644 --- a/os/netware/modules.c +++ b/os/netware/modules.c @@ -31,16 +31,10 @@ extern module mime_module; extern module authz_host_module; extern module negotiation_module; extern module include_module; -extern module autoindex_module; extern module dir_module; -extern module cgi_module; -extern module userdir_module; extern module alias_module; extern module env_module; extern module log_config_module; -extern module asis_module; -extern module imagemap_module; -extern module actions_module; extern module setenvif_module; extern module nwssl_module; extern module netware_module; @@ -54,16 +48,10 @@ module *ap_prelinked_modules[] = { &authz_host_module, &negotiation_module, &include_module, - &autoindex_module, &dir_module, - &cgi_module, - &userdir_module, &alias_module, &env_module, &log_config_module, - &asis_module, - &imagemap_module, - &actions_module, &setenvif_module, &nwssl_module, &netware_module, @@ -79,16 +67,10 @@ ap_module_symbol_t ap_prelinked_module_symbols[] = { {"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}, - {"imagemap_module", &imagemap_module}, - {"actions_module", &actions_module}, {"setenvif_module", &setenvif_module}, {"nwssl_module", &nwssl_module}, {"netware_module", &netware_module}, @@ -104,16 +86,10 @@ module *ap_preloaded_modules[] = { &authz_host_module, &negotiation_module, &include_module, - &autoindex_module, &dir_module, - &cgi_module, - &userdir_module, &alias_module, &env_module, &log_config_module, - &asis_module, - &imagemap_module, - &actions_module, &setenvif_module, &nwssl_module, &netware_module, |