From c3200376cd66459d40a1a520074119713c9c8dff Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Thu, 11 Oct 2012 10:10:18 +0000 Subject: [PATCH] 2.0.0beta1 --- ThanksTo.txt | 1 + config9.m4 | 2 +- package.xml | 27 ++++++++++++++++++--------- php_http.h | 2 +- php_http_header_parser.c | 2 +- 5 files changed, 22 insertions(+), 12 deletions(-) diff --git a/ThanksTo.txt b/ThanksTo.txt index 8dbd1d8..b65cc4d 100644 --- a/ThanksTo.txt +++ b/ThanksTo.txt @@ -7,6 +7,7 @@ so they could be fixed in a reasonable way, or suggested useful features to implement, in alphabetical order: Ilia Alshanetsky (ilia at php dot net) + Anatoly Belsky (ab at php dot net) Petr Czaderna (petr at hroch dot info) David James (james82 at gmail dot com) Thomas Landro Johnsen (thomas dot l dot johnsen at gmail dot com) diff --git a/config9.m4 b/config9.m4 index 63062de..2351eb5 100644 --- a/config9.m4 +++ b/config9.m4 @@ -356,7 +356,7 @@ dnl ---- PHP_ARG_WITH([http-shared-deps], [whether to depend on extensions which have been built shared], [ --without-http-shared-deps HTTP: do not depend on extensions like hash - and iconv (when they're built shared)], $PHP_HTTP, $PHP_HTTP) + and iconv (when they are built shared)], $PHP_HTTP, $PHP_HTTP) dnl ---- dnl HASH dnl ---- diff --git a/package.xml b/package.xml index 8f5d7aa..57a64d2 100644 --- a/package.xml +++ b/package.xml @@ -26,21 +26,29 @@ Extended HTTP support. Again. Keep in mind that it's got the major version 2, be mike@php.net yes - 2012-04-13 + 2012-10-11 - 2.0.0alpha1 + 2.0.0beta1 2.0.0 - alpha - alpha + beta + beta BSD, revised @@ -140,6 +148,7 @@ Extended HTTP support. Again. Keep in mind that it's got the major version 2, be + @@ -184,7 +193,7 @@ Extended HTTP support. Again. Keep in mind that it's got the major version 2, be - 5.3.99 + 5.3.0 1.4.1 diff --git a/php_http.h b/php_http.h index bbea3e7..df63d83 100644 --- a/php_http.h +++ b/php_http.h @@ -13,7 +13,7 @@ #ifndef PHP_EXT_HTTP_H #define PHP_EXT_HTTP_H -#define PHP_HTTP_EXT_VERSION "2.0.0dev" +#define PHP_HTTP_EXT_VERSION "2.0.0beta1" zend_module_entry http_module_entry; #define phpext_http_ptr &http_module_entry diff --git a/php_http_header_parser.c b/php_http_header_parser.c index e0dea5b..866a84e 100644 --- a/php_http_header_parser.c +++ b/php_http_header_parser.c @@ -155,7 +155,7 @@ PHP_HTTP_API STATUS php_http_header_parser_parse(php_http_header_parser_t *parse #define SET_ADD_VAL(slen, eol_len) \ do { \ - char *ptr = buffer->data; \ + const char *ptr = buffer->data; \ size_t len = slen; \ \ while (len > 0 && PHP_HTTP_IS_CTYPE(space, *ptr)) { \ -- 2.30.2