summaryrefslogtreecommitdiffstats
path: root/php-5.5.0-wip.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2013-03-28 09:22:19 +0100
committerRemi Collet <fedora@famillecollet.com>2013-03-28 09:22:19 +0100
commit02c190c6d9e2a4a1e01c43621196b7366ef75624 (patch)
treed9bfda0074f63248f54593a35b2d7992399ff145 /php-5.5.0-wip.patch
parent4513172ab2a6010950ef2e66520b38562516a1b0 (diff)
PHP 5.5.0beta2
Diffstat (limited to 'php-5.5.0-wip.patch')
-rw-r--r--php-5.5.0-wip.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/php-5.5.0-wip.patch b/php-5.5.0-wip.patch
deleted file mode 100644
index dd2481d..0000000
--- a/php-5.5.0-wip.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-diff --git a/Zend/zend_language_parser.y b/Zend/zend_language_parser.y
-index ccbc9b1..6a9a24a 100644
---- a/Zend/zend_language_parser.y
-+++ b/Zend/zend_language_parser.y
-@@ -41,17 +41,19 @@ static YYSIZE_T zend_yytnamerr(char*, const char*);
-
- #define YYERROR_VERBOSE
- #define YYSTYPE znode
--#ifdef ZTS
--# define YYPARSE_PARAM tsrm_ls
--# define YYLEX_PARAM tsrm_ls
--#endif
--
-
- %}
-
- %pure_parser
- %expect 3
-
-+%code requires {
-+#ifdef ZTS
-+# define YYPARSE_PARAM tsrm_ls
-+# define YYLEX_PARAM tsrm_ls
-+#endif
-+}
-+
- %token END 0 "end of file"
- %left T_INCLUDE T_INCLUDE_ONCE T_EVAL T_REQUIRE T_REQUIRE_ONCE
- %token T_INCLUDE "include (T_INCLUDE)"