]> git.pld-linux.org Git - packages/apache.git/blame - apache-db3.patch
- release 3.
[packages/apache.git] / apache-db3.patch
CommitLineData
47b2d38c
JB
1diff -Nur apache_1.3.17.orig/src/modules/standard/mod_auth_dbm.c apache_1.3.17/src/modules/standard/mod_auth_dbm.c
2--- apache_1.3.17.orig/src/modules/standard/mod_auth_dbm.c Wed Feb 7 23:10:02 2001
3+++ apache_1.3.17/src/modules/standard/mod_auth_dbm.c Wed Feb 7 23:14:06 2001
79593a77 4@@ -81,7 +81,8 @@
5 #define dbm_fetch sdbm_fetch
5ac679da 6 #define dbm_close sdbm_close
79593a77 7 #else
8-#include <ndbm.h>
e8297ff0
JR
9+#define DB_DBM_HSEARCH 1
10+#include <db.h>
e8297ff0 11 #endif
79593a77 12
13 /*
47b2d38c
JB
14diff -Nur apache_1.3.17.orig/src/modules/standard/mod_rewrite.h apache_1.3.17/src/modules/standard/mod_rewrite.h
15--- apache_1.3.17.orig/src/modules/standard/mod_rewrite.h Thu Jan 18 23:31:44 2001
16+++ apache_1.3.17/src/modules/standard/mod_rewrite.h Wed Feb 7 23:15:22 2001
79593a77 17@@ -130,7 +130,8 @@
18 * so we also need to know the file extension
19 */
d269f13e 20 #ifndef NO_DBM_REWRITEMAP
79593a77 21-#include <ndbm.h>
d269f13e
AM
22+#define DB_DBM_HSEARCH 1
23+#include <db.h>
79593a77 24 #if defined(DBM_SUFFIX)
25 #define NDBM_FILE_SUFFIX DBM_SUFFIX
26 #elif defined(__FreeBSD__) || (defined(DB_LOCK) && defined(DB_SHMEM))
e48af075 27--- apache_1.3.23/src/helpers/find-dbm-lib.orig Tue Jan 22 08:39:15 2002
28+++ apache_1.3.23/src/helpers/find-dbm-lib Wed Feb 6 21:34:50 2002
29@@ -13,7 +13,9 @@
30 *-linux*)
31 # many systems don't have -ldbm
32 DBM_LIB=""
33- if ./helpers/TestCompile lib ndbm dbm_open; then
34+ if ./helpers/TestCompile lib db __db_ndbm_open; then
35+ DBM_LIB="-ldb"
36+ elif ./helpers/TestCompile lib ndbm dbm_open; then
37 DBM_LIB="-lndbm"
38 if ./helpers/TestCompile lib db1 dbm_open; then
39 # Red Hat needs this; ndbm.h lives in db1
This page took 0.046535 seconds and 4 git commands to generate.