]> granicus.if.org Git - apache/commitdiff
fix problems with placing stuff across multiple lines.
authorGreg Stein <gstein@apache.org>
Wed, 12 Jul 2000 10:58:19 +0000 (10:58 +0000)
committerGreg Stein <gstein@apache.org>
Wed, 12 Jul 2000 10:58:19 +0000 (10:58 +0000)
    -- noted by Joe Orton.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85824 13f79535-47bb-0310-9956-ffa450edef68

modules/dav/fs/config.m4
modules/dav/main/config.m4

index 78243063c97ced6174a5d34171313506db0a6407..09b89d6393981210f84b5c65f558a7dd7bc8cc13 100644 (file)
@@ -2,11 +2,11 @@ dnl modules enabled in this directory by default
 
 APACHE_MODPATH_INIT(dav/fs)
 
+dav_fs_objects="mod_dav_fs.lo dbm.lo lock.lo repos.lo"
+
 dnl ### we want to default this based on whether dav is being used...
 dnl ### but there is no ordering to the config.m4 files right now...
-APACHE_MODULE(dav_fs, DAV provider for the filesystem,
-       mod_dav_fs.lo dbm.lo lock.lo repos.lo
-       , , no)
+APACHE_MODULE(dav_fs, DAV provider for the filesystem, $dav_fs_objects, , no)
 
 if test "$enable_dav_fs" = "yes"; then
   apache_need_sdbm=yes
index ab4fc1f6644d22db579db7da4c40d6103db80673..de07a1e936c1ea9d34cfe53522aaac75625c65bd 100644 (file)
@@ -2,9 +2,9 @@ dnl modules enabled in this directory by default
 
 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)
+dav_objects="mod_dav.lo props.lo util.lo util_lock.lo opaquelock.lo liveprop.lo"
+
+APACHE_MODULE(dav, WebDAV protocol handling, $dav_objects, , no)
 
 if test "$enable_dav" = "yes"; then
   apache_need_expat=yes