summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
Diffstat (limited to 'lang')
-rw-r--r--lang/php71/distinfo4
-rw-r--r--lang/php71/patches/patch-ext_standard_uniqid.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/lang/php71/distinfo b/lang/php71/distinfo
index b14a8bb2c8e..a759801f431 100644
--- a/lang/php71/distinfo
+++ b/lang/php71/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.24 2017/07/17 14:10:08 manu Exp $
+$NetBSD: distinfo,v 1.25 2017/07/19 02:44:45 manu Exp $
SHA1 (php-7.1.7.tar.bz2) = 1d7112102e79b052ebc47e3fd90ad24ddcfb8394
RMD160 (php-7.1.7.tar.bz2) = bcba338427733569b3be8ed27c5dba2afc3fca80
@@ -17,7 +17,7 @@ SHA1 (patch-ext_phar_phar_phar.php) = f630e3946b21b76d4fe857a43e00e25c9445f2c8
SHA1 (patch-ext_recode_recode.c) = a97a1815d6a41410f68c289debbb9396128a2159
SHA1 (patch-ext_sqlite3_libsqlite_sqlite3.c) = 8a529a1b3f7c97731f2e719d006f67c3a7259bb5
SHA1 (patch-ext_standard_basic__functions.c) = f97a2748c7b15fbd9a2d3c21e56079088cc05d56
-SHA1 (patch-ext_standard_uniqid.c) = feefb8c6e601dee690d2ae99443e285136ef7224
+SHA1 (patch-ext_standard_uniqid.c) = 154ed6e6d4796a52c6664b52994d6cad4ed22f30
SHA1 (patch-ext_xsl_php__xsl.h) = a9877bff7bacc77926a4541a0ac171c00ad1a627
SHA1 (patch-makedist) = 2ac0e0391c031c4fcf4993e2269cde4c6bfddfd5
SHA1 (patch-php.ini-development) = dd65962000ec06439fae3c9bf252fa46be4e33fd
diff --git a/lang/php71/patches/patch-ext_standard_uniqid.c b/lang/php71/patches/patch-ext_standard_uniqid.c
index cdc597bca96..64e46528c31 100644
--- a/lang/php71/patches/patch-ext_standard_uniqid.c
+++ b/lang/php71/patches/patch-ext_standard_uniqid.c
@@ -1,4 +1,4 @@
-$NetBSD: patch-ext_standard_uniqid.c,v 1.1 2017/07/17 14:10:08 manu Exp $
+$NetBSD: patch-ext_standard_uniqid.c,v 1.2 2017/07/19 02:44:45 manu Exp $
PHP uniqid() relies on microsecond-precise system clock to produce an
unique identifier. In order to avoid using the same value, it first
@@ -24,7 +24,7 @@ Submitted upstream as https://bugs.php.net/bug.php?id=74851
int sec, usec;
size_t prefix_len = 0;
struct timeval tv;
-+ static struct timeval prev_tv = { 0, 0 };
++ ZEND_TLS struct timeval prev_tv = { 0, 0 };
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|sb", &prefix, &prefix_len,
&more_entropy)) {