From: Greg Stein Date: Wed, 7 Feb 2001 09:44:11 +0000 (+0000) Subject: $enable_dav can be one of: yes, shared, no. We want to adjust the INCLUDES X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c2d57b4112dc9a7a41d56c5b1ee6402cbc0b74b7;p=apache $enable_dav can be one of: yes, shared, no. We want to adjust the INCLUDES 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 --- diff --git a/modules/dav/main/config.m4 b/modules/dav/main/config.m4 index 5059556635..4d0b6e7f82 100644 --- a/modules/dav/main/config.m4 +++ b/modules/dav/main/config.m4 @@ -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"