From: Joe Orton Date: Fri, 9 Jan 2004 11:47:39 +0000 (+0000) Subject: * modules/loggers/config.m4: Fix --enable-mods-shared=all case where X-Git-Tag: pre_ajp_proxy~845 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b92c3e35e8204ddd871659a84fc99866dc0c0a4d;p=apache * modules/loggers/config.m4: Fix --enable-mods-shared=all case where $enable_log_forensic gets set to the empty string. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102241 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/loggers/config.m4 b/modules/loggers/config.m4 index bab52ec343..2d1d142b0c 100644 --- a/modules/loggers/config.m4 +++ b/modules/loggers/config.m4 @@ -7,7 +7,7 @@ APACHE_MODPATH_INIT(loggers) APACHE_MODULE(log_config, logging configuration, , , yes) APACHE_MODULE(log_forensic, forensic logging) -if test $enable_log_forensic != no; then +if test "x$enable_log_forensic" != "xno"; then # mod_log_forensic needs test_char.h APR_ADDTO(INCLUDES, [-I\$(top_builddir)/server]) fi