]> git.pld-linux.org Git - packages/apache.git/commitdiff
fix mod_rewrite, too
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Fri, 2 Feb 2001 14:42:44 +0000 (14:42 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    apache-db3.patch -> 1.3

apache-db3.patch

index bf6f6a86b3c7d71478f521cd71cb8fb38ed421cf..31ac749050b36753ba42e361c6cf1b2d1f9ea43f 100644 (file)
@@ -1,7 +1,7 @@
-diff -urN apache_1.3.14.orig/src/modules/standard/mod_auth_dbm.c apache_1.3.14/src/modules/standard/mod_auth_dbm.c
---- apache_1.3.14.orig/src/modules/standard/mod_auth_dbm.c     Sat Nov 11 22:58:04 2000
-+++ apache_1.3.14/src/modules/standard/mod_auth_dbm.c  Sat Nov 11 22:59:52 2000
-@@ -80,8 +80,12 @@
+diff -urN apache_1.3.17.org/src/modules/standard/mod_auth_dbm.c apache_1.3.17/src/modules/standard/mod_auth_dbm.c
+--- apache_1.3.17.org/src/modules/standard/mod_auth_dbm.c      Fri Feb  2 15:29:26 2001
++++ apache_1.3.17/src/modules/standard/mod_auth_dbm.c  Fri Feb  2 15:29:38 2001
+@@ -81,8 +81,12 @@
  #define dbm_fetch sdbm_fetch
  #define dbm_close sdbm_close
  #elif defined(__GLIBC__) && defined(__GLIBC_MINOR__) \
@@ -15,3 +15,20 @@ diff -urN apache_1.3.14.orig/src/modules/standard/mod_auth_dbm.c apache_1.3.14/s
  #else
  #include <ndbm.h>
  #endif
+diff -urN apache_1.3.17.org/src/modules/standard/mod_rewrite.h apache_1.3.17/src/modules/standard/mod_rewrite.h
+--- apache_1.3.17.org/src/modules/standard/mod_rewrite.h       Fri Feb  2 15:29:26 2001
++++ apache_1.3.17/src/modules/standard/mod_rewrite.h   Fri Feb  2 15:31:21 2001
+@@ -131,8 +131,12 @@
+      */
+ #ifndef NO_DBM_REWRITEMAP
+ #if defined(__GLIBC__) && defined(__GLIBC_MINOR__) \
+-    && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
++    && __GLIBC__ >= 2 && __GLIBC_MINOR__ == 1
+ #include <db1/ndbm.h>
++#elif defined(__GLIBC__) && defined(__GLIBC_MINOR__) \
++    && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 2
++#define DB_DBM_HSEARCH 1
++#include <db.h>
+ #else
+ #include <ndbm.h>
+ #endif
This page took 0.039031 seconds and 4 git commands to generate.