[mapserver-commits] r9301 - trunk/mapserver
svn at osgeo.org
svn at osgeo.org
Mon Sep 14 22:30:18 EDT 2009
Author: dmorissette
Date: 2009-09-14 22:30:16 -0400 (Mon, 14 Sep 2009)
New Revision: 9301
Modified:
trunk/mapserver/configure.in
Log:
Fixed Apache version check for 2.0.x stderr bug (#458)
Modified: trunk/mapserver/configure.in
===================================================================
--- trunk/mapserver/configure.in 2009-09-14 22:12:42 UTC (rev 9300)
+++ trunk/mapserver/configure.in 2009-09-15 02:30:16 UTC (rev 9301)
@@ -2223,8 +2223,8 @@
dnl Check whether msDebug() calls need non-blocking stderr
- if test -n "$APACHE_VERSION" -a `expr "$APACHE_VERSION" \>= "2000000"` = 1 ; then
- AC_MSG_RESULT([ Your system is apparently running $HTTPD_VERSION_STRING. Setting stderr to non-blocking for msDebug() due to Apache 2.x bug (see MapServer bug 458 or Apache bug 22030).])
+ if test -n "$APACHE_VERSION" -a `expr "$APACHE_VERSION" \>= "2000000"` = 1 -a `expr "$APACHE_VERSION" \< "2000049"` = 1 ; then
+ AC_MSG_RESULT([ Your system is apparently running $HTTPD_VERSION_STRING. Setting stderr to non-blocking for msDebug() due to Apache 2.0.0-2.0.48 bug (see MapServer bug 458 or Apache bug 22030).])
DEBUG_FLAGS="${DEBUG_FLAGS} -DNEED_NONBLOCKING_STDERR"
fi
More information about the mapserver-commits
mailing list