632a9f70e6
Apache HTTPD web server. Because mod_spdy is an Apache module, it can be loaded into currently deployed Apache HTTPD 2.x web servers using mod_so. This module is still an early beta and is not yet suitable for production environments. WWW: http://code.google.com/p/mod-spdy/ PR: ports/166538 Submitted by: Masaki TAGAWA
12 lines
499 B
C++
12 lines
499 B
C++
--- mod_spdy/apache/apache_spdy_session_io.cc.org 2012-03-31 16:28:56.502800000 +0900
|
|
+++ mod_spdy/apache/apache_spdy_session_io.cc 2012-03-31 20:46:33.033900102 +0900
|
|
@@ -15,6 +15,9 @@
|
|
#include "mod_spdy/apache/apache_spdy_session_io.h"
|
|
|
|
#include "apr_buckets.h"
|
|
+// When HAVE_SYSLOG is defined, apache http_log.h will include syslog.h, which
|
|
+// #defined LOG_* as numbers. This conflicts with what we are using those here.
|
|
+#undef HAVE_SYSLOG
|
|
#include "http_log.h"
|
|
#include "util_filter.h"
|
|
|