<email>mike@php.net</email>
<active>yes</active>
</lead>
- <date>2012-03-08</date>
+ <date>2012-04-02</date>
<version>
- <release>1.7.3</release>
+ <release>1.7.4</release>
<api>1.7.0</api>
</version>
<stability>
</stability>
<license>BSD, revised</license>
<notes><![CDATA[
-* Fixed Bug #61310: Bundled pecl_http-1.7.2.tgz is invalid
+* Fixed Bug #61372 (build fails with "undefined symbol Z_ADDREF_P)
]]></notes>
<contents>
<dir name="/">
#ifndef PHP_EXT_HTTP_H
#define PHP_EXT_HTTP_H
-#define PHP_HTTP_VERSION "1.7.3"
+#define PHP_HTTP_VERSION "1.7.4"
#ifdef HAVE_CONFIG_H
# include "config.h"
#define http_zsep(t, z) _http_zsep_ex((t), (z), NULL)
#define http_zsep_ex(t, z, p) _http_zsep_ex((t), (z), (p))
static inline zval *_http_zsep_ex(int type, zval *z, zval **p) {
- Z_ADDREF_P(z);
+ ZVAL_ADDREF(z);
if (Z_TYPE_P(z) != type) {
switch (type) {
case IS_NULL: convert_to_null_ex(&z); break;