Commit c2d57b41 authored by Greg Stein's avatar Greg Stein
Browse files

$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
parent 01315873
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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"