diff options
author | Remi Collet <fedora@famillecollet.com> | 2012-11-06 12:41:23 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2012-11-06 12:41:23 +0100 |
commit | a1477a984fd514ba800c0b77c268c66b34c77d15 (patch) | |
tree | ff1805c7030b8e5a938a9906b0e9ab344c22e761 /uuid-info.patch | |
parent | 02ad335b05ee3f015955c7cc2285a78b7fc52aa2 (diff) |
php-pecl-uuid: more upstream patches
Diffstat (limited to 'uuid-info.patch')
-rw-r--r-- | uuid-info.patch | 26 |
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> |