ce9965
diff -up ./ext/dba/config.m4.libdb ./ext/dba/config.m4
ce9965
--- ./ext/dba/config.m4.libdb	2020-04-09 14:06:11.000000000 +0200
ce9965
+++ ./ext/dba/config.m4	2020-04-09 14:35:08.208605065 +0200
ce9965
@@ -375,61 +375,13 @@ if test "$PHP_DB4" != "no"; then
ce9965
   dbdp4="/usr/local/BerkeleyDB.4."
ce9965
   dbdp5="/usr/local/BerkeleyDB.5."
ce9965
   for i in $PHP_DB4 ${dbdp5}1 ${dbdp5}0 ${dbdp4}8 ${dbdp4}7 ${dbdp4}6 ${dbdp4}5 ${dbdp4}4 ${dbdp4}3 ${dbdp4}2 ${dbdp4}1 ${dbdp}0 /usr/local /usr; do
ce9965
-    if test -f "$i/db5/db.h"; then
ce9965
-      THIS_PREFIX=$i
ce9965
-      THIS_INCLUDE=$i/db5/db.h
ce9965
-      break
ce9965
-    elif test -f "$i/db4/db.h"; then
ce9965
-      THIS_PREFIX=$i
ce9965
-      THIS_INCLUDE=$i/db4/db.h
ce9965
-      break
ce9965
-    elif test -f "$i/include/db5.3/db.h"; then
ce9965
-      THIS_PREFIX=$i
ce9965
-      THIS_INCLUDE=$i/include/db5.3/db.h
ce9965
-      break
ce9965
-    elif test -f "$i/include/db5.1/db.h"; then
ce9965
-      THIS_PREFIX=$i
ce9965
-      THIS_INCLUDE=$i/include/db5.1/db.h
ce9965
-      break
ce9965
-    elif test -f "$i/include/db5.0/db.h"; then
ce9965
-      THIS_PREFIX=$i
ce9965
-      THIS_INCLUDE=$i/include/db5.0/db.h
ce9965
-      break
ce9965
-    elif test -f "$i/include/db4.8/db.h"; then
ce9965
-      THIS_PREFIX=$i
ce9965
-      THIS_INCLUDE=$i/include/db4.8/db.h
ce9965
-      break
ce9965
-    elif test -f "$i/include/db4.7/db.h"; then
ce9965
-      THIS_PREFIX=$i
ce9965
-      THIS_INCLUDE=$i/include/db4.7/db.h
ce9965
-      break
ce9965
-    elif test -f "$i/include/db4.6/db.h"; then
ce9965
-      THIS_PREFIX=$i
ce9965
-      THIS_INCLUDE=$i/include/db4.6/db.h
ce9965
-      break
ce9965
-    elif test -f "$i/include/db4.5/db.h"; then
ce9965
-      THIS_PREFIX=$i
ce9965
-      THIS_INCLUDE=$i/include/db4.5/db.h
ce9965
-      break
ce9965
-    elif test -f "$i/include/db4/db.h"; then
ce9965
-      THIS_PREFIX=$i
ce9965
-      THIS_INCLUDE=$i/include/db4/db.h
ce9965
-      break
ce9965
-    elif test -f "$i/include/db/db4.h"; then
ce9965
-      THIS_PREFIX=$i
ce9965
-      THIS_INCLUDE=$i/include/db/db4.h
ce9965
-      break
ce9965
-    elif test -f "$i/include/db4.h"; then
ce9965
-      THIS_PREFIX=$i
ce9965
-      THIS_INCLUDE=$i/include/db4.h
ce9965
-      break
ce9965
-    elif test -f "$i/include/db.h"; then
ce9965
+    if test -f "$i/include/db.h"; then
ce9965
       THIS_PREFIX=$i
ce9965
       THIS_INCLUDE=$i/include/db.h
ce9965
       break
ce9965
     fi
ce9965
   done
ce9965
-  PHP_DBA_DB_CHECK(4, db-5.3 db-5.1 db-5.0 db-4.8 db-4.7 db-4.6 db-4.5 db-4.4 db-4.3 db-4.2 db-4.1 db-4.0 db-4 db4 db, [(void)db_create((DB**)0, (DB_ENV*)0, 0)])
ce9965
+  PHP_DBA_DB_CHECK(4, db, [(void)db_create((DB**)0, (DB_ENV*)0, 0)])
ce9965
 fi
ce9965
 PHP_DBA_STD_RESULT(db4,Berkeley DB4)
ce9965
 
ce9965
diff -up ./ext/dba/dba.c.libdb ./ext/dba/dba.c
ce9965
--- ./ext/dba/dba.c.libdb	2020-04-09 14:06:11.000000000 +0200
ce9965
+++ ./ext/dba/dba.c	2020-04-09 14:36:30.593275190 +0200
ce9965
@@ -50,6 +50,10 @@
ce9965
 #include "php_lmdb.h"
ce9965
 #include "dba_arginfo.h"
ce9965
 
ce9965
+#ifdef DB4_INCLUDE_FILE
ce9965
+#include DB4_INCLUDE_FILE
ce9965
+#endif
ce9965
+
ce9965
 PHP_MINIT_FUNCTION(dba);
ce9965
 PHP_MSHUTDOWN_FUNCTION(dba);
ce9965
 PHP_MINFO_FUNCTION(dba);
ce9965
@@ -459,6 +463,10 @@ PHP_MINFO_FUNCTION(dba)
ce9965
 
ce9965
 	php_info_print_table_start();
ce9965
  	php_info_print_table_row(2, "DBA support", "enabled");
ce9965
+#ifdef DB_VERSION_STRING
ce9965
+ 	php_info_print_table_row(2, "libdb header version", DB_VERSION_STRING);
ce9965
+ 	php_info_print_table_row(2, "libdb library version", db_version(NULL, NULL, NULL));
ce9965
+#endif
ce9965
 	if (handlers.s) {
ce9965
 		smart_str_0(&handlers);
ce9965
 		php_info_print_table_row(2, "Supported handlers", ZSTR_VAL(handlers.s));