Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 20158 invoked by uid 500); 4 Mar 2001 22:41:41 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 20147 invoked by uid 500); 4 Mar 2001 22:41:41 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 4 Mar 2001 22:41:41 -0000 Message-ID: <20010304224141.20143.qmail@apache.org> From: wrowe@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/os/win32 modules.c wrowe 01/03/04 14:41:41 Modified: os/win32 modules.c Log: Win32 goodness for the core/http split. Revision Changes Path 1.10 +4 -0 httpd-2.0/os/win32/modules.c Index: modules.c =================================================================== RCS file: /home/cvs/httpd-2.0/os/win32/modules.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- modules.c 2001/02/20 19:01:00 1.9 +++ modules.c 2001/03/04 22:41:41 1.10 @@ -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 @@ 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_preloaded_modules[] = { &core_module, &mpm_winnt_module, + &http_module, &so_module, &mime_module, &access_module,