You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Brian Havard <br...@kheldar.apana.org.au> on 2001/06/07 14:50:45 UTC

Re: cvs commit: httpd-2.0 STATUS

On 7 Jun 2001 10:46:17 -0000, orlikowski@apache.org wrote:

>  +        - mod_dav_fs gets built static when mods-shared=most is specified.

I have a patch for this. It's a bit messy but seems to work with all the 
combinations of switches I tried.

Index: modules/dav/fs/config6.m4
===================================================================
RCS file: /home/cvs/httpd-2.0/modules/dav/fs/config6.m4,v
retrieving revision 1.3
diff -u -r1.3 config6.m4
--- modules/dav/fs/config6.m4	2001/05/18 20:27:45	1.3
+++ modules/dav/fs/config6.m4	2001/06/05 12:15:29
@@ -7,7 +7,15 @@
 if test "$enable_dav" = "no"; then
   dav_fs_enable=no
 else
-  dav_fs_enable="$enable_dav"
+  dav_fs_enable=most
+
+  if test -z "$enable_dav_fs"; then
+    if test -z "$enable_dav"; then
+      enable_dav_fs="shared"
+    else
+      enable_dav_fs="$enable_dav"
+    fi
+  fi
 fi
 
 APACHE_MODULE(dav_fs, DAV provider for the filesystem, $dav_fs_objects, , $dav_fs_enable)

-- 
 ______________________________________________________________________________
 |  Brian Havard                 |  "He is not the messiah!                   |
 |  brianh@kheldar.apana.org.au  |  He's a very naughty boy!" - Life of Brian |
 ------------------------------------------------------------------------------