Skip to content

Commit 1c80737

Browse files
committed
Merge branch 'PHP-7.1'
* PHP-7.1: Fix bug #73961 environmental build dependency in hash sha3 source
2 parents 0ccf1cf + 1ff2705 commit 1c80737

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ PHP NEWS
5858
- GMP:
5959
. Fixed bug #70896 (gmp_fact() silently ignores non-integer input). (Sara)
6060

61+
- hash:
62+
. Fixed bug #73961 (environmental build dependency in hash sha3 source).
63+
(krakjoe)
64+
6165
- Mbstring:
6266
. Implemented request #66024 (mb_chr() and mb_ord()). (Masakielastic, Yasuo)
6367
. Implemented request #65081 (mb_scrub()). (Masakielastic, Yasuo)

ext/hash/hash_sha3.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
+----------------------------------------------------------------------+
1717
*/
1818

19+
#include "php_hash.h"
1920
#include "php_hash_sha3.h"
2021

2122
#if (defined(__APPLE__) || defined(__APPLE_CC__)) && \

ext/hash/php_hash_sha3.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
#define PHP_HASH_SHA3_H
2121

2222
#include "php.h"
23-
#include "ext/hash/php_hash.h"
2423

2524
typedef struct {
2625
unsigned char state[200]; // 5 * 5 * sizeof(uint64)

0 commit comments

Comments
 (0)