From b92c3e35e8204ddd871659a84fc99866dc0c0a4d Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Fri, 9 Jan 2004 11:47:39 +0000 Subject: [PATCH] * 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 --- modules/loggers/config.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.1