summaryrefslogtreecommitdiffstats
path: root/uuid-info.patch
diff options
context:
space:
mode:
Diffstat (limited to 'uuid-info.patch')
-rw-r--r--uuid-info.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/uuid-info.patch b/uuid-info.patch
new file mode 100644
index 0000000..b6aed98
--- /dev/null
+++ b/uuid-info.patch
@@ -0,0 +1,26 @@
+--- pecl/uuid/trunk/uuid.c 2012/11/06 09:53:26 328260
++++ pecl/uuid/trunk/uuid.c 2012/11/06 10:03:36 328261
+@@ -134,10 +134,10 @@
+ /* {{{ PHP_MINFO_FUNCTION */
+ PHP_MINFO_FUNCTION(uuid)
+ {
+- php_printf("UUID extension\n");
+ php_info_print_table_start();
+- php_info_print_table_row(2, "Version",PHP_UUID_VERSION " (stable)");
+- php_info_print_table_row(2, "Released", "2008-04-01");
++ php_info_print_table_header(2, "UUID extension", "enabled");
++ php_info_print_table_row(2, "Version", PHP_UUID_VERSION " (stable)");
++ php_info_print_table_row(2, "Released", PHP_UUID_RELEASED);
+ php_info_print_table_row(2, "CVS Revision", "$Id: uuid.c 297236 2010-03-31 20:39:48Z johannes $");
+ php_info_print_table_row(2, "Authors", "Hartmut Holzgraefe 'hartmut@php.net' (lead)\n");
+ php_info_print_table_end();
+--- pecl/uuid/trunk/php_uuid.h 2012/11/06 09:53:26 328260
++++ pecl/uuid/trunk/php_uuid.h 2012/11/06 10:03:36 328261
+@@ -39,6 +39,7 @@
+
+ #ifdef HAVE_UUID
+ #define PHP_UUID_VERSION "1.0.3"
++#define PHP_UUID_RELEASED "2012-06-18"
+
+
+ #include <php_ini.h>