From: William A. Rowe Jr Date: Sun, 4 Mar 2001 22:41:41 +0000 (+0000) Subject: Win32 goodness for the core/http split. X-Git-Tag: 2.0.14~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de53808e5700c71302af74846bf948db8c9f71d1;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/os/win32/modules.c b/os/win32/modules.c index 9307a3255e4..f37583dea2b 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,