summaryrefslogtreecommitdiffstats
path: root/php-5.4.7-libdb.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2012-09-19 15:37:25 +0200
committerRemi Collet <fedora@famillecollet.com>2012-09-19 15:37:25 +0200
commit6e0dd3dee5a7173aef26d9b3ba65931e561483a0 (patch)
tree16e862d1b55d0c358ac0db189f46fc38630b1be1 /php-5.4.7-libdb.patch
parent9e2709cdf75c6bf1add93a5a89fb14cdda5ba1c1 (diff)
php: report libdb version in phpinfo
Diffstat (limited to 'php-5.4.7-libdb.patch')
-rw-r--r--php-5.4.7-libdb.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/php-5.4.7-libdb.patch b/php-5.4.7-libdb.patch
index 0b1e305..bc4e1fc 100644
--- a/php-5.4.7-libdb.patch
+++ b/php-5.4.7-libdb.patch
@@ -60,3 +60,27 @@
fi
PHP_DBA_STD_RESULT(db4,Berkeley DB4)
+--- php-5.4.7/ext/dba/dba.c.old 2012-09-19 14:55:23.868456900 +0200
++++ php-5.4.7/ext/dba/dba.c 2012-09-19 15:02:42.796009320 +0200
+@@ -52,6 +52,10 @@
+ #include "php_qdbm.h"
+ #include "php_tcadb.h"
+
++#ifdef DB4_INCLUDE_FILE
++#include DB4_INCLUDE_FILE
++#endif
++
+ /* {{{ arginfo */
+ ZEND_BEGIN_ARG_INFO_EX(arginfo_dba_popen, 0, 0, 2)
+ ZEND_ARG_INFO(0, path)
+@@ -522,6 +526,10 @@
+
+ php_info_print_table_start();
+ php_info_print_table_row(2, "DBA support", "enabled");
++#ifdef DB_VERSION_STRING
++ php_info_print_table_row(2, "libdb header version", DB_VERSION_STRING);
++ php_info_print_table_row(2, "libdb library version", db_version(NULL, NULL, NULL));
++#endif
+ if (handlers.c) {
+ smart_str_0(&handlers);
+ php_info_print_table_row(2, "Supported handlers", handlers.c);