Attached is a patch against current 1.3 cvs tree to fix the detection
of the gdbm library for the Cygwin platform to support dbm-enabled
mod_rewrite.
Could someone please apply the patch to the cvs tree.
Stipe
[EMAIL PROTECTED]
-------------------------------------------------------------------
Wapme Systems AG
M�nsterstr. 248
40470 D�sseldorf
Tel: +49-211-74845-0
Fax: +49-211-74845-299
E-Mail: [EMAIL PROTECTED]
Internet: http://www.wapme-systems.de
-------------------------------------------------------------------
wapme.net - wherever you are
--- apache-1.3/src/helpers/find-dbm-lib Wed Mar 21 03:09:46 2001
+++ apache-1.3-cygwin/src/helpers/find-dbm-lib Sat Jan 12 20:24:38 2002
@@ -31,6 +31,15 @@
found_dbm=1
fi
;;
+ *-cygwin*)
+ # we use the shared DLL version of gdbm if available
+ DBM_LIB=""
+ if ./helpers/TestCompile lib gdbm dbm_open; then
+ DBM_LIB="-lgdbm"
+ LIBS="$LIBS $DBM_LIB"
+ found_dbm=1
+ fi
+ ;;
*)
if [ "x$DBM_LIB" != "x" ]; then
oldLIBS="$LIBS"