summaryrefslogtreecommitdiff
path: root/dev-lang/php/files/bison_build_2.patch
diff options
context:
space:
mode:
authorMichael Orlitzky <mjo@gentoo.org>2015-11-19 16:32:54 -0500
committerMichael Orlitzky <mjo@gentoo.org>2015-11-19 16:33:17 -0500
commite8af3741c2780564e21ca7970c1e91b5c22c2324 (patch)
treeac04d33aa6f1701836e1d8ebc6552dc03d2e72d7 /dev-lang/php/files/bison_build_2.patch
parent0a9cef65478876b38d509c3a9288358fad72b5cc (diff)
downloadgentoo-e8af3741c2780564e21ca7970c1e91b5c22c2324.tar.gz
gentoo-e8af3741c2780564e21ca7970c1e91b5c22c2324.tar.bz2
gentoo-e8af3741c2780564e21ca7970c1e91b5c22c2324.zip
dev-lang/php: remove old patch and init files.
Most of the patches in $FILESDIR are no longer being used. There's also an old php-fpm-r4.init script that has been moved to app-eselect/eselect-php. Get rid of them. Package-Manager: portage-2.2.20.1
Diffstat (limited to 'dev-lang/php/files/bison_build_2.patch')
-rw-r--r--dev-lang/php/files/bison_build_2.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/dev-lang/php/files/bison_build_2.patch b/dev-lang/php/files/bison_build_2.patch
deleted file mode 100644
index dd2481df8843..000000000000
--- a/dev-lang/php/files/bison_build_2.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)"