987f92
diff -up php-7.2.0alpha0/ext/dba/config.m4.libdb php-7.2.0alpha0/ext/dba/config.m4
987f92
--- php-7.2.0alpha0/ext/dba/config.m4.libdb	2017-05-29 08:56:06.000000000 +0200
987f92
+++ php-7.2.0alpha0/ext/dba/config.m4	2017-05-29 09:13:52.014823282 +0200
987f92
@@ -346,61 +346,13 @@ if test "$PHP_DB4" != "no"; then
987f92
   dbdp4="/usr/local/BerkeleyDB.4."
987f92
   dbdp5="/usr/local/BerkeleyDB.5."
987f92
   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
987f92
-    if test -f "$i/db5/db.h"; then
987f92
-      THIS_PREFIX=$i
987f92
-      THIS_INCLUDE=$i/db5/db.h
987f92
-      break
987f92
-    elif test -f "$i/db4/db.h"; then
987f92
-      THIS_PREFIX=$i
987f92
-      THIS_INCLUDE=$i/db4/db.h
987f92
-      break
987f92
-    elif test -f "$i/include/db5.3/db.h"; then
987f92
-      THIS_PREFIX=$i
987f92
-      THIS_INCLUDE=$i/include/db5.3/db.h
987f92
-      break
987f92
-    elif test -f "$i/include/db5.1/db.h"; then
987f92
-      THIS_PREFIX=$i
987f92
-      THIS_INCLUDE=$i/include/db5.1/db.h
987f92
-      break
987f92
-    elif test -f "$i/include/db5.0/db.h"; then
987f92
-      THIS_PREFIX=$i
987f92
-      THIS_INCLUDE=$i/include/db5.0/db.h
987f92
-      break
987f92
-    elif test -f "$i/include/db4.8/db.h"; then
987f92
-      THIS_PREFIX=$i
987f92
-      THIS_INCLUDE=$i/include/db4.8/db.h
987f92
-      break
987f92
-    elif test -f "$i/include/db4.7/db.h"; then
987f92
-      THIS_PREFIX=$i
987f92
-      THIS_INCLUDE=$i/include/db4.7/db.h
987f92
-      break
987f92
-    elif test -f "$i/include/db4.6/db.h"; then
987f92
-      THIS_PREFIX=$i
987f92
-      THIS_INCLUDE=$i/include/db4.6/db.h
987f92
-      break
987f92
-    elif test -f "$i/include/db4.5/db.h"; then
987f92
-      THIS_PREFIX=$i
987f92
-      THIS_INCLUDE=$i/include/db4.5/db.h
987f92
-      break
987f92
-    elif test -f "$i/include/db4/db.h"; then
987f92
-      THIS_PREFIX=$i
987f92
-      THIS_INCLUDE=$i/include/db4/db.h
987f92
-      break
987f92
-    elif test -f "$i/include/db/db4.h"; then
987f92
-      THIS_PREFIX=$i
987f92
-      THIS_INCLUDE=$i/include/db/db4.h
987f92
-      break
987f92
-    elif test -f "$i/include/db4.h"; then
987f92
-      THIS_PREFIX=$i
987f92
-      THIS_INCLUDE=$i/include/db4.h
987f92
-      break
987f92
-    elif test -f "$i/include/db.h"; then
987f92
+    if test -f "$i/include/db.h"; then
987f92
       THIS_PREFIX=$i
987f92
       THIS_INCLUDE=$i/include/db.h
987f92
       break
987f92
     fi
987f92
   done
987f92
-  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)])
987f92
+  PHP_DBA_DB_CHECK(4, db, [(void)db_create((DB**)0, (DB_ENV*)0, 0)])
987f92
 fi
987f92
 PHP_DBA_STD_RESULT(db4,Berkeley DB4)
987f92
 
987f92
diff -up php-7.2.0alpha0/ext/dba/dba.c.libdb php-7.2.0alpha0/ext/dba/dba.c
987f92
--- php-7.2.0alpha0/ext/dba/dba.c.libdb	2017-05-29 09:16:15.736628202 +0200
987f92
+++ php-7.2.0alpha0/ext/dba/dba.c	2017-05-29 09:16:20.494654746 +0200
987f92
@@ -53,6 +53,10 @@
987f92
 #include "php_tcadb.h"
987f92
 #include "php_lmdb.h"
987f92
 
987f92
+#ifdef DB4_INCLUDE_FILE
987f92
+#include DB4_INCLUDE_FILE
987f92
+#endif
987f92
+
987f92
 /* {{{ arginfo */
987f92
 ZEND_BEGIN_ARG_INFO_EX(arginfo_dba_popen, 0, 0, 2)
987f92
 	ZEND_ARG_INFO(0, path)
987f92
@@ -558,6 +562,10 @@ PHP_MINFO_FUNCTION(dba)
987f92
 
987f92
 	php_info_print_table_start();
987f92
  	php_info_print_table_row(2, "DBA support", "enabled");
987f92
+#ifdef DB_VERSION_STRING
987f92
+ 	php_info_print_table_row(2, "libdb header version", DB_VERSION_STRING);
987f92
+ 	php_info_print_table_row(2, "libdb library version", db_version(NULL, NULL, NULL));
987f92
+#endif
987f92
 	if (handlers.s) {
987f92
 		smart_str_0(&handlers);
987f92
 		php_info_print_table_row(2, "Supported handlers", ZSTR_VAL(handlers.s));