summaryrefslogtreecommitdiff
path: root/ext/hash/config.w32
diff options
context:
space:
mode:
Diffstat (limited to 'ext/hash/config.w32')
-rw-r--r--ext/hash/config.w3216
1 files changed, 14 insertions, 2 deletions
diff --git a/ext/hash/config.w32 b/ext/hash/config.w32
index 5d6be6b922..d38b032efd 100644
--- a/ext/hash/config.w32
+++ b/ext/hash/config.w32
@@ -11,7 +11,7 @@ PHP_HASH = 'yes';
EXTENSION('hash', 'hash.c hash_md.c hash_sha.c hash_ripemd.c hash_haval.c ' +
'hash_tiger.c hash_gost.c hash_snefru.c hash_whirlpool.c ' +
'hash_adler32.c hash_crc32.c hash_joaat.c hash_fnv.c ' +
- 'hash_sha3.c', false);
+ 'hash_sha3.c hash_murmur.c hash_xxhash.c', false);
var hash_sha3_dir = 'ext/hash/sha3/generic' + (X64 ? '64' : '32') + 'lc';
@@ -28,7 +28,19 @@ if (!CHECK_HEADER_ADD_INCLUDE('KeccakHash.h', 'CFLAGS_HASH', hash_sha3_dir)) {
ADD_FLAG('CFLAGS_HASH', '/DKeccakP200_excluded /DKeccakP400_excluded /DKeccakP800_excluded /DZEND_ENABLE_STATIC_TSRMLS_CACHE=1');
+var hash_murmur_dir = 'ext/hash/murmur';
+if (!CHECK_HEADER_ADD_INCLUDE('PMurHash.h', 'CFLAGS_HASH', hash_murmur_dir)) {
+ ERROR('Unable to locate murmur headers');
+}
+ADD_SOURCES(hash_murmur_dir, 'PMurHash.c PMurHash128.c', 'hash');
+
+var hash_xxhash_dir = 'ext/hash/xxhash';
+if (!CHECK_HEADER_ADD_INCLUDE('xxhash.h', 'CFLAGS_HASH', hash_xxhash_dir)) {
+ ERROR('Unable to locate xxhash headers');
+}
+
PHP_INSTALL_HEADERS('ext/hash/', 'php_hash.h php_hash_md.h php_hash_sha.h ' +
'php_hash_ripemd.h php_hash_haval.h php_hash_tiger.h ' +
'php_hash_gost.h php_hash_snefru.h php_hash_whirlpool.h ' +
- 'php_hash_adler32.h php_hash_crc32.h php_hash_sha3.h');
+ 'php_hash_adler32.h php_hash_crc32.h php_hash_sha3.h ' +
+ 'php_hash_murmur.h php_hash_xxhash.h');