modules.c revision 7b3590ada24130fe5d52ce7fbf98177e3d121a4c
e34d87a16d31f5820b509b2838582520921c2cd7nd/* modules.c --- major modules compiled into Apache for Win32.
e34d87a16d31f5820b509b2838582520921c2cd7nd * Only insert an entry for a module if it must be compiled into
e34d87a16d31f5820b509b2838582520921c2cd7nd * the core server
5f5d1b4cc970b7f06ff8ef6526128e9a27303d88nd */
e34d87a16d31f5820b509b2838582520921c2cd7nd
e34d87a16d31f5820b509b2838582520921c2cd7nd#include "httpd.h"
031b91a62d25106ae69d4693475c79618dd5e884fielding#include "http_config.h"
031b91a62d25106ae69d4693475c79618dd5e884fielding
031b91a62d25106ae69d4693475c79618dd5e884fieldingextern module core_module;
031b91a62d25106ae69d4693475c79618dd5e884fieldingextern module mpm_winnt_module;
031b91a62d25106ae69d4693475c79618dd5e884fielding//extern module so_module;
031b91a62d25106ae69d4693475c79618dd5e884fieldingextern module mime_module;
e34d87a16d31f5820b509b2838582520921c2cd7ndextern module access_module;
e34d87a16d31f5820b509b2838582520921c2cd7ndextern module auth_module;
e34d87a16d31f5820b509b2838582520921c2cd7ndextern module negotiation_module;
e34d87a16d31f5820b509b2838582520921c2cd7nd//extern module includes_module;
e34d87a16d31f5820b509b2838582520921c2cd7ndextern module autoindex_module;
e34d87a16d31f5820b509b2838582520921c2cd7ndextern module dir_module;
e34d87a16d31f5820b509b2838582520921c2cd7nd//extern module cgi_module;
e34d87a16d31f5820b509b2838582520921c2cd7ndextern module userdir_module;
e34d87a16d31f5820b509b2838582520921c2cd7ndextern module alias_module;
e34d87a16d31f5820b509b2838582520921c2cd7ndextern module env_module;
e34d87a16d31f5820b509b2838582520921c2cd7ndextern module config_log_module;
e34d87a16d31f5820b509b2838582520921c2cd7ndextern module asis_module;
e34d87a16d31f5820b509b2838582520921c2cd7ndextern module imap_module;
e34d87a16d31f5820b509b2838582520921c2cd7ndextern module action_module;
e34d87a16d31f5820b509b2838582520921c2cd7ndextern module setenvif_module;
e34d87a16d31f5820b509b2838582520921c2cd7nd//extern module isapi_module;
e34d87a16d31f5820b509b2838582520921c2cd7nd
78f97ce162b66a0dbfd7af4dcd9984f162569b04minfrinmodule *ap_prelinked_modules[] = {
f58bb3da705eb7ec926f4883597fc2eb1336a360minfrin &core_module,
f58bb3da705eb7ec926f4883597fc2eb1336a360minfrin &mpm_winnt_module,
f58bb3da705eb7ec926f4883597fc2eb1336a360minfrin// &so_module,
f58bb3da705eb7ec926f4883597fc2eb1336a360minfrin &mime_module,
f58bb3da705eb7ec926f4883597fc2eb1336a360minfrin &access_module,
f58bb3da705eb7ec926f4883597fc2eb1336a360minfrin &auth_module,
f58bb3da705eb7ec926f4883597fc2eb1336a360minfrin &negotiation_module,
e34d87a16d31f5820b509b2838582520921c2cd7nd// &includes_module,
78f97ce162b66a0dbfd7af4dcd9984f162569b04minfrin &autoindex_module,
e34d87a16d31f5820b509b2838582520921c2cd7nd &dir_module,
e34d87a16d31f5820b509b2838582520921c2cd7nd// &cgi_module,
e34d87a16d31f5820b509b2838582520921c2cd7nd &userdir_module,
e34d87a16d31f5820b509b2838582520921c2cd7nd &alias_module,
e34d87a16d31f5820b509b2838582520921c2cd7nd &env_module,
663c339c8a4663cf1977f890481f8b7e251d3221jerenkrantz &config_log_module,
e34d87a16d31f5820b509b2838582520921c2cd7nd &asis_module,
e34d87a16d31f5820b509b2838582520921c2cd7nd &imap_module,
fac37c9794a18c24d187f4e0f97a9476c4344118minfrin &action_module,
e34d87a16d31f5820b509b2838582520921c2cd7nd &setenvif_module,
f58bb3da705eb7ec926f4883597fc2eb1336a360minfrin// &isapi_module,
f58bb3da705eb7ec926f4883597fc2eb1336a360minfrin NULL
f58bb3da705eb7ec926f4883597fc2eb1336a360minfrin};
2ba4873de1af40ce03d04cced3ed72057e320280rpluemmodule *ap_preloaded_modules[] = {
e34d87a16d31f5820b509b2838582520921c2cd7nd &core_module,
663c339c8a4663cf1977f890481f8b7e251d3221jerenkrantz &mpm_winnt_module,
e34d87a16d31f5820b509b2838582520921c2cd7nd// &so_module,
5dc4220fc22561537ce1421a03e11846a5b719ebminfrin &mime_module,
fac37c9794a18c24d187f4e0f97a9476c4344118minfrin &access_module,
e34d87a16d31f5820b509b2838582520921c2cd7nd &auth_module,
e34d87a16d31f5820b509b2838582520921c2cd7nd &negotiation_module,
f58bb3da705eb7ec926f4883597fc2eb1336a360minfrin// &includes_module,
f58bb3da705eb7ec926f4883597fc2eb1336a360minfrin &autoindex_module,
6fee4e2faa2e45fe2636d01e35d03c2cf0c9d431minfrin &dir_module,
5876f43a746f688a32b7201bced8591ddf19bd43minfrin// &cgi_module,
5876f43a746f688a32b7201bced8591ddf19bd43minfrin &userdir_module,
5876f43a746f688a32b7201bced8591ddf19bd43minfrin &alias_module,
5876f43a746f688a32b7201bced8591ddf19bd43minfrin &env_module,
5876f43a746f688a32b7201bced8591ddf19bd43minfrin &config_log_module,
5876f43a746f688a32b7201bced8591ddf19bd43minfrin &asis_module,
5876f43a746f688a32b7201bced8591ddf19bd43minfrin &imap_module,
6fee4e2faa2e45fe2636d01e35d03c2cf0c9d431minfrin &action_module,
6fee4e2faa2e45fe2636d01e35d03c2cf0c9d431minfrin &setenvif_module,
6fee4e2faa2e45fe2636d01e35d03c2cf0c9d431minfrin// &isapi_module,
6fee4e2faa2e45fe2636d01e35d03c2cf0c9d431minfrin NULL
fac37c9794a18c24d187f4e0f97a9476c4344118minfrin};
6fee4e2faa2e45fe2636d01e35d03c2cf0c9d431minfrin