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 2011/07/03 18:41:39 UTC

svn commit: r1142457 - /httpd/httpd/trunk/include/http_log.h

Author: sf
Date: Sun Jul  3 16:41:39 2011
New Revision: 1142457

URL: http://svn.apache.org/viewvc?rev=1142457&view=rev
Log:
Fix build failure without HAVE_SYSLOG, e.g. on Netware

Modified:
    httpd/httpd/trunk/include/http_log.h

Modified: httpd/httpd/trunk/include/http_log.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/http_log.h?rev=1142457&r1=1142456&r2=1142457&view=diff
==============================================================================
--- httpd/httpd/trunk/include/http_log.h (original)
+++ httpd/httpd/trunk/include/http_log.h Sun Jul  3 16:41:39 2011
@@ -31,12 +31,11 @@ extern "C" {
 #endif
 
 #include "apr_thread_proc.h"
+#include "http_config.h"
 
 #ifdef HAVE_SYSLOG
 #include <syslog.h>
 
-#include "http_config.h"
-
 #ifndef LOG_PRIMASK
 #define LOG_PRIMASK 7
 #endif