diff options
author | Brian Havard <bjh@apache.org> | 2001-08-14 14:15:04 +0200 |
---|---|---|
committer | Brian Havard <bjh@apache.org> | 2001-08-14 14:15:04 +0200 |
commit | a5753eaad0c40420960cb4315d891291bdecd5f3 (patch) | |
tree | d93beb7bafd4f61db0d5866cdc7e0fbd921042b5 /modules/dav/fs/config6.m4 | |
parent | Clean up several parsing errors in find_ct that may or may not be causing (diff) | |
download | apache2-a5753eaad0c40420960cb4315d891291bdecd5f3.tar.xz apache2-a5753eaad0c40420960cb4315d891291bdecd5f3.zip |
OS/2: Allow mod_dav_fs to build as a DLL. It needs special treatment as it
makes calls to mod_dav. This links it against mod_dav's exports.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90151 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | modules/dav/fs/config6.m4 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/dav/fs/config6.m4 b/modules/dav/fs/config6.m4 index f86e3ff2a9..515111cd01 100644 --- a/modules/dav/fs/config6.m4 +++ b/modules/dav/fs/config6.m4 @@ -10,6 +10,14 @@ else dav_fs_enable=$dav_enable fi +case "$host" in + *os2*) + # OS/2 DLLs must resolve all symbols at build time + # and we need some from main DAV module + dav_fs_objects="$dav_fs_objects ../main/mod_dav.la" + ;; +esac + APACHE_MODULE(dav_fs, DAV provider for the filesystem, $dav_fs_objects, , $dav_fs_enable) APACHE_MODPATH_FINISH |