From 5dc71016d93c6e05fc9c6e933b934dfe9ab277fb Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Sat, 26 Nov 2005 21:36:12 +0000 Subject: [PATCH] - ad verbosity about checking for ext/hash and avoid empty else..fi case --- config.m4 | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/config.m4 b/config.m4 index f476483..2ff41aa 100644 --- a/config.m4 +++ b/config.m4 @@ -159,6 +159,7 @@ dnl ---- dnl HASH dnl ---- + AC_MSG_CHECKING(for ext/hash support) if test -x "$PHP_EXECUTABLE"; then if test "`$PHP_EXECUTABLE -m | $EGREP '^hash$'`" = "hash"; then if test -d ../hash; then @@ -167,23 +168,31 @@ dnl ---- old_CPPFLAGS=$CPPFLAGS CPPFLAGS=$INCLUDES AC_CHECK_HEADER([php_hash.h], [ + AC_MSG_RESULT(enabled) AC_DEFINE([HTTP_HAVE_EXT_HASH], [1], [Have ext/hash support]) ], [ AC_CHECK_HEADER([hash/php_hash.h], [ + AC_MSG_RESULT(enabled) AC_DEFINE([HTTP_HAVE_HASH_EXT_HASH], [1], [Have ext/hash support]) ], [ AC_CHECK_HEADER([ext/hash/php_hash.h], [ + AC_MSG_RESULT(enabled) AC_DEFINE([HTTP_HAVE_EXT_HASH_EXT_HASH], [1], [Have ext/hash support]) + ], [ + AC_MSG_RESULT(disabled) ]) ]) ]) CPPFLAGS=$old_CPPFLAGS; fi elif test "$PHP_HASH" != "no" && test "x$PHP_HASH" != "x"; then + AC_MSG_RESULT(enabled) ifdef([PHP_ADD_EXTENSION_DEP], [ PHP_ADD_EXTENSION_DEP([http], [hash], 0) AC_DEFINE([HTTP_HAVE_EXT_HASH_EXT_HASH], [1], [Have ext/hash support]) ]) + else + AC_MSG_RESULT(disabled) fi dnl ---- -- 2.30.2