summaryrefslogtreecommitdiff
path: root/ext/hash/config.m4
diff options
context:
space:
mode:
authorMichael Wallner <mike@php.net>2005-11-25 11:54:49 +0000
committerMichael Wallner <mike@php.net>2005-11-25 11:54:49 +0000
commitf1054f34733bb157bd058baec6e62e0e86169661 (patch)
treeede02322d0b676b667964fca4126abc354f36a0b /ext/hash/config.m4
parentd31cd8bf85dd03ab62b40a16aebb2f7a0c987a69 (diff)
downloadphp-git-f1054f34733bb157bd058baec6e62e0e86169661.tar.gz
- add snefru algo
- fix empty else in config.m4
Diffstat (limited to 'ext/hash/config.m4')
-rw-r--r--ext/hash/config.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/hash/config.m4 b/ext/hash/config.m4
index e3aa3ade7c..f47442272f 100644
--- a/ext/hash/config.m4
+++ b/ext/hash/config.m4
@@ -6,8 +6,8 @@ PHP_ARG_ENABLE(hash, whether to enable hash support,
if test "$PHP_HASH" != "no"; then
AC_DEFINE(HAVE_HASH_EXT,1,[Have HASH Extension])
- PHP_NEW_EXTENSION(hash, hash.c hash_md.c hash_sha.c hash_ripemd.c hash_haval.c hash_tiger.c hash_whirlpool.c, $ext_shared)
+ PHP_NEW_EXTENSION(hash, hash.c hash_md.c hash_sha.c hash_ripemd.c hash_haval.c hash_tiger.c hash_snefru.c hash_whirlpool.c, $ext_shared)
ifdef([PHP_INSTALL_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_whirlpool.h)
- ], [ ])
+ 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_snefru.h php_hash_whirlpool.h)
+ ])
fi