summaryrefslogtreecommitdiff
path: root/ext/hash/config.m4
diff options
context:
space:
mode:
authorMichael Wallner <mike@php.net>2005-11-22 19:17:58 +0000
committerMichael Wallner <mike@php.net>2005-11-22 19:17:58 +0000
commit4c61cf6f4cb2418cdfb14fe04bc703d7a3f9dcab (patch)
tree89027db5ec395d10370d3816689980f87f74e389 /ext/hash/config.m4
parent066fb72fdd263147aa6b691fa7d68451f66b3225 (diff)
downloadphp-git-4c61cf6f4cb2418cdfb14fe04bc703d7a3f9dcab.tar.gz
- install extension headers
- make the hash algo registry case insensitive - "export" inline php_hash_bin2hex
Diffstat (limited to 'ext/hash/config.m4')
-rw-r--r--ext/hash/config.m43
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/hash/config.m4 b/ext/hash/config.m4
index e2deffaff0..a8380594c0 100644
--- a/ext/hash/config.m4
+++ b/ext/hash/config.m4
@@ -7,4 +7,7 @@ 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, $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)
+ ], [ ])
fi