@@ -0,0 +1,34 @@
+--- config9.m4.orig 2016-04-22 09:22:48.777700815 +0200
++++ config9.m4 2016-04-22 09:24:52.193692411 +0200
+@@ -487,11 +487,15 @@
+ AC_MSG_CHECKING([for php_raphf.h])
+ HTTP_EXT_RAPHF_INCDIR=
+ for i in `echo $INCLUDES | $SED -e's/-I//g'` $abs_srcdir ../raphf; do
++ echo "Testing $i ..."
+ if test -d $i; then
++ echo "Directory $i exists..."
+ if test -f $i/php_raphf.h; then
++ echo "File $i/php_raphf.h found"
+ HTTP_EXT_RAPHF_INCDIR=$i
+ break
+ elif test -f $i/ext/raphf/php_raphf.h; then
++ echo "File $i/ext/raphf/php_raphf.h found"
+ HTTP_EXT_RAPHF_INCDIR=$i/ext/raphf
+ break
+ fi
+@@ -515,11 +519,15 @@
+ AC_MSG_CHECKING([for php_propro.h])
+ HTTP_EXT_PROPRO_INCDIR=
+ for i in `echo $INCLUDES | $SED -e's/-I//g'` $abs_srcdir ../propro; do
++ echo "Testing $i ..."
+ if test -d $i; then
++ echo "Directory $i exists..."
+ if test -f $i/php_propro.h; then
++ echo "File $i/php_propro.h found"
+ HTTP_EXT_PROPRO_INCDIR=$i
+ break
+ elif test -f $i/ext/propro/php_propro.h; then
++ echo "File $i/ext/propro/php_propro.h found"
+ HTTP_EXT_PROPRO_INCDIR=$i/ext/propro
+ break
+ fi
|
@@ -25,10 +25,10 @@
<email>mike@php.net</email>
<active>yes</active>
</lead>
- <date>2016-01-19</date>
- <time>11:00:12</time>
+ <date>2016-03-09</date>
+ <time>10:04:06</time>
<version>
- <release>3.0.0</release>
+ <release>3.0.1</release>
<api>3.0.0</api>
</version>
<stability>
@@ -37,8 +37,10 @@
</stability>
<license uri="http://copyfree.org/content/standard/licenses/2bsd/license.txt">BSD-2-Clause</license>
<notes>
-PHP7 compatible release based on the 2.5.x series with the following backwards incompatible changes:
-- removed http\Url::FROM_ENV from the default flags of the http\Url constructor, use http\Env\Url instead
+* Fix php-bug #71719: Buffer overflow in HTTP url parsing functions (Mike, rc0r)
+* Fix gh-issue #28: Possible null pointer dereference in php_http_url_mod() (rc0r)
+* Fix gh-issue #21: Fix PHP7 config.w32 (Jan Ehrhardt)
+* Fix gh-issue #20: setSslOptions notice with curl 7.43 (Mike, Vitaliy Demidov)
</notes>
<contents>
<dir name="/">
@@ -48,7 +50,7 @@
<file md5sum="620859af5cefe395a32b84f2a9a2d1d8" name="src/php_http.c" role="src" />
<file md5sum="52adb2a84a6537a6ff72a66fe1819dfc" name="src/php_http_client.c" role="src" />
<file md5sum="7771e61008d9b0168e60cc3314341f02" name="src/php_http_client.h" role="src" />
- <file md5sum="ba6cf90d1ff65322b7a2e2b7bbd79595" name="src/php_http_client_curl.c" role="src" />
+ <file md5sum="7117276d40b47ab677d0cc6464a3b8a3" name="src/php_http_client_curl.c" role="src" />
<file md5sum="d5744b831c7b34a1666a5c4a8893f8c8" name="src/php_http_client_curl.h" role="src" />
<file md5sum="5e2812a02fa6c7bde728a18368e61cd8" name="src/php_http_client_request.c" role="src" />
<file md5sum="84f4efc8dbaa85d9bfc57af6ebda87a4" name="src/php_http_client_request.h" role="src" />
@@ -97,11 +99,12 @@
<file md5sum="56aca51e516dd3b3032ea12a317c2510" name="src/php_http_querystring.c" role="src" />
<file md5sum="a8e587d75a935394ad9d0c1f6caf40e9" name="src/php_http_querystring.h" role="src" />
<file md5sum="c0fa21c51cbfd3f4e1443b4276545c82" name="src/php_http_response_codes.h" role="src" />
- <file md5sum="bf7df2f059e274c524e559df372e57a7" name="src/php_http_url.c" role="src" />
+ <file md5sum="5160318d651baf90760086b7a14eb388" name="src/php_http_url.c" role="src" />
<file md5sum="daade0ef9ac03283e44833a9e50401fe" name="src/php_http_url.h" role="src" />
<file md5sum="5c67b666a0108b08726ba09cb0301a4a" name="src/php_http_utf8.h" role="src" />
<file md5sum="e41e5edd197057e13df57109c5e9dc2b" name="src/php_http_version.c" role="src" />
<file md5sum="11c2de1bc3a81f748c0a43c5cfd84697" name="src/php_http_version.h" role="src" />
+ <file md5sum="906f0eefd3f4c42f19a86eb8bcdba786" name="tests/data/bug71719.bin" role="test" />
<file md5sum="7e7f3c4f90109972505cba8e529241e7" name="tests/data/message_r_content_range.txt" role="test" />
<file md5sum="8663bbdbc0fc7d314832ded2d9b05890" name="tests/data/message_r_multipart_put.txt" role="test" />
<file md5sum="7c15f680202a0b871f218a4c848e354f" name="tests/data/message_rr_empty.txt" role="test" />
@@ -127,6 +130,7 @@
<file md5sum="65edb4c7604d6ca054ac6e0e0a98bcc0" name="tests/bug69076.phpt" role="test" />
<file md5sum="ca2fbcf2c4c8d997bdc5462a4d2a36d5" name="tests/bug69313.phpt" role="test" />
<file md5sum="57f3d5b52106dee8bac43da749b507af" name="tests/bug69357.phpt" role="test" />
+ <file md5sum="5cfe2cd28ea176e9db3aac8048d34ca7" name="tests/bug71719.phpt" role="test" />
<file md5sum="f01c4efdf13af7dadf73ae83dfa5e53b" name="tests/client001.phpt" role="test" />
<file md5sum="ce6a2c800698251f6d6a3dc24dbb1fc2" name="tests/client002.phpt" role="test" />
<file md5sum="84e4dbd0ee4fdb24b0f6020139e7b5ce" name="tests/client003.phpt" role="test" />
@@ -312,14 +316,14 @@
<file md5sum="e08900397d959898138ad2128935d922" name="CONTRIBUTING.md" role="doc" />
<file md5sum="79d943877ef7b7100451a5eadd05a311" name="CREDITS" role="doc" />
<file md5sum="1b2626b64bd4d8e790187b7659b7dffd" name="LICENSE" role="doc" />
- <file md5sum="00b468b083831d8952aaf4d4df20d0e6" name="README.md" role="doc" />
+ <file md5sum="4b2d753f6156c863f76b55fa096c7d61" name="README.md" role="doc" />
<file md5sum="9341b9a2e50ed28eacdcf576aef4742e" name="THANKS" role="doc" />
- <file md5sum="bd38dba241194a1df875c6abbb7e68a8" name="TODO" role="doc" />
+ <file md5sum="b2560c830b88ccd5453f76c6c738ff7c" name="TODO" role="doc" />
<file md5sum="9d36ebe88c36d2cd5e350ad6b0b5c7c5" name="config.m4" role="src" />
<file md5sum="88ad5914fa45889305d1af44e4f54ce6" name="config9.m4" role="src" />
- <file md5sum="903da49ef3c7cc54f7f69f7a1246265d" name="config.w32" role="src" />
+ <file md5sum="b2fe30c4009e3cfd4b5c8542a1e7fd8b" name="config.w32" role="src" />
<file md5sum="e74a8944741c15cebd6dd34b99e95c9b" name="Makefile.frag" role="src" />
- <file md5sum="286ccf44a67b16d9c55f228456fad54e" name="php_http.h" role="src" />
+ <file md5sum="7bfc3badf6d15a37e3c5cdc633424f40" name="php_http.h" role="src" />
</dir>
</contents>
<dependencies>
|