Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 67813 invoked from network); 8 Jun 2010 19:30:49 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 8 Jun 2010 19:30:49 -0000 Received: (qmail 500 invoked by uid 500); 8 Jun 2010 19:30:49 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 396 invoked by uid 500); 8 Jun 2010 19:30:48 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 389 invoked by uid 99); 8 Jun 2010 19:30:48 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Jun 2010 19:30:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Jun 2010 19:30:46 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 263F02388994; Tue, 8 Jun 2010 19:30:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r952783 - /httpd/httpd/trunk/server/main.c Date: Tue, 08 Jun 2010 19:30:25 -0000 To: cvs@httpd.apache.org From: sf@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100608193025.263F02388994@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sf Date: Tue Jun 8 19:30:24 2010 New Revision: 952783 URL: http://svn.apache.org/viewvc?rev=952783&view=rev Log: remove APLOG_USE_MODULE from main.c: It causes build problems on Windows and the ap_log* calls in main.c don't profit from it anyway, because there is no server_rec yet where they could look up core_module's loglevel. Modified: httpd/httpd/trunk/server/main.c Modified: httpd/httpd/trunk/server/main.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/main.c?rev=952783&r1=952782&r2=952783&view=diff ============================================================================== --- httpd/httpd/trunk/server/main.c (original) +++ httpd/httpd/trunk/server/main.c Tue Jun 8 19:30:24 2010 @@ -45,8 +45,6 @@ #include #endif -APLOG_USE_MODULE(core); - /* WARNING: Win32 binds http_main.c dynamically to the server. Please place * extern functions and global data in another appropriate module. *