You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Joe Orton <jo...@orton.demon.co.uk> on 2000/07/11 18:45:29 UTC

[PATCH] Fix mod_dav build

configure was coming out with a line like

MODLIST="$MODLIST \
      "

where it should have been

MODLIST="$MODLIST dav"

This fixes it:

Index: config.m4
===================================================================
RCS file: /home/joe/lib/cvsroot/apache2/src/modules/dav/main/config.m4,v
retrieving revision 1.8
diff -u -p -r1.8 config.m4
--- config.m4	2000/07/10 23:46:28	1.8
+++ config.m4	2000/07/11 16:36:25
@@ -3,8 +3,7 @@ dnl modules enabled in this directory by
 APACHE_MODPATH_INIT(dav/main)
 
 APACHE_MODULE(dav, WebDAV protocol handling, \
-	mod_dav.lo props.lo util.lo util_lock.lo opaquelock.lo liveprop.lo, \
-	, no)
+	mod_dav.lo props.lo util.lo util_lock.lo opaquelock.lo liveprop.lo, , no)
 
 if test "$enable_dav" = "yes"; then
   apache_need_expat=yes