From: Greg Beaver Date: Thu, 4 Oct 2007 02:24:49 +0000 (+0000) Subject: fix phar to work with PHP 5.3 X-Git-Tag: RELEASE_2_0_0a1~1666 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=07c509935cc66a145b19943d71859b91909289d5;p=php fix phar to work with PHP 5.3 --- diff --git a/ext/phar/phar.c b/ext/phar/phar.c index 23ac018666..c1086f7ee3 100644 --- a/ext/phar/phar.c +++ b/ext/phar/phar.c @@ -3215,7 +3215,7 @@ PHAR_ADD_ENTRY: } /* }}}*/ -#if defined(PHP_VERSION_ID) && (PHP_VERSION_ID < 50300 || PHP_VERSION_ID >= 60000) +#if defined(PHP_VERSION_ID) && (PHP_VERSION_ID < 50400 || PHP_VERSION_ID >= 60000) static int _php_stream_unlink(char *url, int options, php_stream_context *context TSRMLS_DC) {