package/php: security bump to 7.1.13
Removed 0008-fix-asm-constraints-in-aarch64-multiply-macro.patch, patch
was applied upstream:
d6d4f2a9b3
Renumbered patch 0009.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
579b87423f
commit
2c59323b84
@ -1,28 +0,0 @@
|
|||||||
From 1622f24fde4220967bd907bf8f0325d444bf9339 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Andy Postnikov <apostnikov@gmail.com>
|
|
||||||
Date: Sat, 10 Dec 2016 23:51:17 +0300
|
|
||||||
Subject: [PATCH] Fix bug #70015 - Compilation failure on aarch64
|
|
||||||
|
|
||||||
Fixes build at -O0.
|
|
||||||
|
|
||||||
[From pull request https://github.com/php/php-src/pull/2236.]
|
|
||||||
Signed-off-by: Tatsuyuki Ishi <ishitatsuyuki@gmail.com>
|
|
||||||
---
|
|
||||||
Zend/zend_multiply.h | 4 ++--
|
|
||||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/Zend/zend_multiply.h b/Zend/zend_multiply.h
|
|
||||||
index 75769db..fbd69ab 100644
|
|
||||||
--- a/Zend/zend_multiply.h
|
|
||||||
+++ b/Zend/zend_multiply.h
|
|
||||||
@@ -75,8 +75,8 @@
|
|
||||||
__asm__("mul %0, %2, %3\n" \
|
|
||||||
"smulh %1, %2, %3\n" \
|
|
||||||
"sub %1, %1, %0, asr #63\n" \
|
|
||||||
- : "=X"(__tmpvar), "=X"(usedval) \
|
|
||||||
- : "X"(a), "X"(b)); \
|
|
||||||
+ : "=&r"(__tmpvar), "=&r"(usedval) \
|
|
||||||
+ : "r"(a), "r"(b)); \
|
|
||||||
if (usedval) (dval) = (double) (a) * (double) (b); \
|
|
||||||
else (lval) = __tmpvar; \
|
|
||||||
} while (0)
|
|
@ -1,5 +1,5 @@
|
|||||||
# From http://php.net/downloads.php
|
# From http://php.net/downloads.php
|
||||||
sha256 a0118850774571b1f2d4e30b4fe7a4b958ca66f07d07d65ebdc789c54ba6eeb3 php-7.1.12.tar.xz
|
sha256 1a0b3f2fb61959b57a3ee01793a77ed3f19bde5aa90c43dcacc85ea32f64fc10 php-7.1.13.tar.xz
|
||||||
|
|
||||||
# License file
|
# License file
|
||||||
sha256 a44951f93b10c87c3f7cd9f311d95999c57c95ed950eec32b14c1c7ea6baf25e LICENSE
|
sha256 a44951f93b10c87c3f7cd9f311d95999c57c95ed950eec32b14c1c7ea6baf25e LICENSE
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
PHP_VERSION = 7.1.12
|
PHP_VERSION = 7.1.13
|
||||||
PHP_SITE = http://www.php.net/distributions
|
PHP_SITE = http://www.php.net/distributions
|
||||||
PHP_SOURCE = php-$(PHP_VERSION).tar.xz
|
PHP_SOURCE = php-$(PHP_VERSION).tar.xz
|
||||||
PHP_INSTALL_STAGING = YES
|
PHP_INSTALL_STAGING = YES
|
||||||
|
Loading…
Reference in New Issue
Block a user