Commit ac8626e6 authored by Victor J. Orlikowski's avatar Victor J. Orlikowski
Browse files

Get dav_fs to follow options for dav.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89839 13f79535-47bb-0310-9956-ffa450edef68
parent 79f122d9
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
APACHE 2.0 STATUS:						-*-text-*-
Last modified at [$Date: 2001/07/30 14:01:07 $]
Last modified at [$Date: 2001/07/31 19:21:50 $]

Release:

@@ -257,7 +257,6 @@ RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
	    (use the new canonical name stuff?)
	- find a new home for ap_text(_header)
	- is it possible to remove the DAV: namespace stuff from util_xml?
        - mod_dav_fs gets built static when mods-shared=most is specified.

    * ap_core_translate() and its use by mod_mmap_static and mod_file_cache
      are a bit wonky.  The function should probably be exposed as a utility 
+3 −3
Original line number Diff line number Diff line
@@ -4,10 +4,10 @@ APACHE_MODPATH_INIT(dav/fs)

dav_fs_objects="mod_dav_fs.lo dbm.lo lock.lo repos.lo"

if test "$enable_dav" = "no"; then
  dav_fs_enable=no
if test "$enable_dav" != ""; then
  dav_fs_enable=$enable_dav
else
  dav_fs_enable="$enable_dav"
  dav_fs_enable=$dav_enable
fi

APACHE_MODULE(dav_fs, DAV provider for the filesystem, $dav_fs_objects, , $dav_fs_enable)
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ fi

APACHE_MODULE(dav, WebDAV protocol handling, $dav_objects, , $dav_enable)

if test "$enable_dav" != "no"; then
if test "$dav_enable" != "no" -o "$enable_dav" != "no"; then
  apache_need_expat=yes

  APR_ADDTO(INCLUDES, [-I\$(top_srcdir)/$modpath_current])