summaryrefslogtreecommitdiff
path: root/dev-lang/php/files/all_strict_aliasing.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/all_strict_aliasing.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/all_strict_aliasing.patch')
-rw-r--r--dev-lang/php/files/all_strict_aliasing.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/dev-lang/php/files/all_strict_aliasing.patch b/dev-lang/php/files/all_strict_aliasing.patch
deleted file mode 100644
index cfa609085e5e..000000000000
--- a/dev-lang/php/files/all_strict_aliasing.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-upstream bug: http://bugs.php.net/bug.php?id=46311
-The current patch follows a suggestion from Siarhei Siamashka
-Adapted for php 5.5
---- Zend/zend_execute.h.old 2013-01-01 13:49:04.587825704 +0100
-+++ Zend/zend_execute.h 2013-01-01 13:53:28.762958578 +0100
-@@ -293,7 +293,7 @@
- void **end = p - (int)(zend_uintptr_t)*p;
-
- while (p != end) {
-- zval *q = *(zval **)(--p);
-+ zval *q = (zval *)*(--p);
- *p = NULL;
- i_zval_ptr_dtor(q ZEND_FILE_LINE_CC);
- }