]> granicus.if.org Git - apache/commitdiff
$enable_dav can be one of: yes, shared, no. We want to adjust the INCLUDES
authorGreg Stein <gstein@apache.org>
Wed, 7 Feb 2001 09:44:11 +0000 (09:44 +0000)
committerGreg Stein <gstein@apache.org>
Wed, 7 Feb 2001 09:44:11 +0000 (09:44 +0000)
if it is anything but no. (it wasn't getting set properly for "shared")

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88006 13f79535-47bb-0310-9956-ffa450edef68

modules/dav/main/config.m4

index 50595566359b6af2465f6bb442b3d88ae33219ea..4d0b6e7f828e472f1f68b8de41d08219adc4c1f1 100644 (file)
@@ -6,7 +6,7 @@ dav_objects="mod_dav.lo props.lo util.lo util_lock.lo liveprop.lo providers.lo s
 
 APACHE_MODULE(dav, WebDAV protocol handling, $dav_objects, , no)
 
-if test "$enable_dav" = "yes"; then
+if test "$enable_dav" != "no"; then
   apache_need_expat=yes
 
   INCLUDES="$INCLUDES -I\$(top_srcdir)/$modpath_current"