-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphp-db.patch
More file actions
35 lines (35 loc) · 1.03 KB
/
php-db.patch
File metadata and controls
35 lines (35 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
--- php-8.4.1/ext/dba/config.m4~ 2024-11-22 11:43:54.000000000 +0100
+++ php-8.4.1/ext/dba/config.m4 2024-11-22 14:32:14.459988099 +0100
@@ -459,6 +459,22 @@ if test "$PHP_DB4" != "no"; then
THIS_PREFIX=$i
THIS_INCLUDE=$i/include/db5.0/db.h
break
+ elif test -f "$i/include/db5.2/db.h"; then
+ THIS_PREFIX=$i
+ THIS_INCLUDE=$i/include/db5.2/db.h
+ break
+ elif test -f "$i/include/db6.2/db.h"; then
+ THIS_PREFIX=$i
+ THIS_INCLUDE=$i/include/db6.2/db.h
+ break
+ elif test -f "$i/include/db6.1/db.h"; then
+ THIS_PREFIX=$i
+ THIS_INCLUDE=$i/include/db6.1/db.h
+ break
+ elif test -f "$i/include/db6.0/db.h"; then
+ THIS_PREFIX=$i
+ THIS_INCLUDE=$i/include/db6.0/db.h
+ break
elif test -f "$i/include/db4.8/db.h"; then
THIS_PREFIX=$i
THIS_INCLUDE=$i/include/db4.8/db.h
@@ -498,6 +514,9 @@ if test "$PHP_DB4" != "no"; then
db-5.3
db-5.1
db-5.0
+ db-6.2
+ db-6.1
+ db-6.0
db-4.8
db-4.7
db-4.6