You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sf...@apache.org on 2010/06/08 21:30:25 UTC

svn commit: r952783 - /httpd/httpd/trunk/server/main.c

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 <unistd.h>
 #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.
  *