From: Greg Stein Date: Wed, 12 Jul 2000 10:58:19 +0000 (+0000) Subject: fix problems with placing stuff across multiple lines. X-Git-Tag: APACHE_2_0_ALPHA_5~127 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=35a902c322577dadcd4293e7afa6c5368eddef97;p=apache fix problems with placing stuff across multiple lines. -- noted by Joe Orton. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85824 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/dav/fs/config.m4 b/modules/dav/fs/config.m4 index 78243063c9..09b89d6393 100644 --- a/modules/dav/fs/config.m4 +++ b/modules/dav/fs/config.m4 @@ -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 diff --git a/modules/dav/main/config.m4 b/modules/dav/main/config.m4 index ab4fc1f664..de07a1e936 100644 --- a/modules/dav/main/config.m4 +++ b/modules/dav/main/config.m4 @@ -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