]> git.pld-linux.org Git - packages/apache1.git/commitdiff
- fix db compilation on glibc 2.2 apache-1_3_12-12 apache-1_3_12-26
authorJan Rękorajski <baggins@pld-linux.org>
Tue, 26 Sep 2000 17:28:39 +0000 (17:28 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    apache-db3.patch -> 1.1

apache-db3.patch [new file with mode: 0644]

diff --git a/apache-db3.patch b/apache-db3.patch
new file mode 100644 (file)
index 0000000..f1b7e47
--- /dev/null
@@ -0,0 +1,16 @@
+--- apache_1.3.12/src/modules/standard/mod_auth_dbm.c~ Mon Sep 25 20:50:01 2000
++++ apache_1.3.12/src/modules/standard/mod_auth_dbm.c  Mon Sep 25 21:05:00 2000
+@@ -75,8 +75,12 @@
+ #include "http_log.h"
+ #include "http_protocol.h"
+ #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.04207 seconds and 4 git commands to generate.