summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2001-03-04 22:41:41 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2001-03-04 22:41:41 +0000
commitde53808e5700c71302af74846bf948db8c9f71d1 (patch)
treeacdd219e8f6ef407a25693bee043dfe9b30c571e
parentc68c4d0bf631d1e72c23ffd4da3642317143f0a6 (diff)
downloadhttpd-de53808e5700c71302af74846bf948db8c9f71d1.tar.gz
Win32 goodness for the core/http split.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88452 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--os/win32/modules.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/os/win32/modules.c b/os/win32/modules.c
index 9307a3255e..f37583dea2 100644
--- a/os/win32/modules.c
+++ b/os/win32/modules.c
@@ -3,11 +3,13 @@
* the core server
*/
+#define CORE_PRIVATE
#include "httpd.h"
#include "http_config.h"
extern module core_module;
extern module mpm_winnt_module;
+extern module http_module;
extern module so_module;
extern module mime_module;
extern module access_module;
@@ -30,6 +32,7 @@ extern module isapi_module;
AP_DECLARE_DATA module *ap_prelinked_modules[] = {
&core_module,
&mpm_winnt_module,
+ &http_module,
&so_module,
&mime_module,
&access_module,
@@ -53,6 +56,7 @@ AP_DECLARE_DATA module *ap_prelinked_modules[] = {
AP_DECLARE_DATA module *ap_preloaded_modules[] = {
&core_module,
&mpm_winnt_module,
+ &http_module,
&so_module,
&mime_module,
&access_module,