]> granicus.if.org Git - apache/commitdiff
* modules/loggers/config.m4: Fix --enable-mods-shared=all case where
authorJoe Orton <jorton@apache.org>
Fri, 9 Jan 2004 11:47:39 +0000 (11:47 +0000)
committerJoe Orton <jorton@apache.org>
Fri, 9 Jan 2004 11:47:39 +0000 (11:47 +0000)
$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

index bab52ec34357063533d3a709f49de608e0d2c77e..2d1d142b0cecc9f9ce339110a89c9074f9d711f9 100644 (file)
@@ -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