Re: [EMAIL PROTECTED] how to compile mod_dav to use dbm, not sdbm/gdbm

2007-12-20 Thread Russell E Glaue
I got mod_dav to serve files from NFS without problems by doing something I shouldn't: - apr-util-1.2.12/dbm/sdbm/sdbm_private.h 46,47c46,47 #define SDBM_SHARED_LOCK 0x4/* data base locked for shared read */ #define SDBM_EXCLUSIVE_LOCK 0x8/* data base locked for write */ ---

Re: [EMAIL PROTECTED] how to compile mod_dav to use dbm, not sdbm/gdbm

2007-12-19 Thread Russell E Glaue
This is still a problem, But I think I figured out what the issue is. apr-util-1.2.12 apache-2.2.6 The apr-util's ./configure will always configure SDBM to compile as the default option, and no matter that --with-db=dbm you choose, ./configure will always choose the default, SDBM, as it never

[EMAIL PROTECTED] how to compile mod_dav to use dbm, not sdbm/gdbm

2007-12-18 Thread Russell E Glaue
How would I configure/compile Apache 2.2/mod_dav to use the old dbm format for property database files, as opposed to using the sdbm/gdbm/db formats? I already compiled and installed apr-util with --with-db=dbm, but mod_dav continues to use SDBM/GDBM. -RG