From a1477a984fd514ba800c0b77c268c66b34c77d15 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 6 Nov 2012 12:41:23 +0100 Subject: php-pecl-uuid: more upstream patches --- uuid-info.patch | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 uuid-info.patch (limited to 'uuid-info.patch') 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 -- cgit