]> granicus.if.org Git - apache/commitdiff
Win32 goodness for the core/http split.
authorWilliam A. Rowe Jr <wrowe@apache.org>
Sun, 4 Mar 2001 22:41:41 +0000 (22:41 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Sun, 4 Mar 2001 22:41:41 +0000 (22:41 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88452 13f79535-47bb-0310-9956-ffa450edef68

os/win32/modules.c

index 9307a3255e425dba8b57ff2507ad60105f95f691..f37583dea2bf026099c2c38c85fffa80aa15cd49 100644 (file)
@@ -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,