- ad verbosity about checking for ext/hash and avoid empty else..fi case
[m6w6/ext-http] / config.m4
index 5d6e492659f25474fb3b2a86b70a7e9ef66bcbd1..2ff41aa45241dc356469d3d6b310dde7515c8cff 100644 (file)
--- 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
@@ -166,29 +167,32 @@ dnl ----
                        fi
                        old_CPPFLAGS=$CPPFLAGS
                        CPPFLAGS=$INCLUDES
-                       AC_CHECK_HEADER([php_hash.h], 
-                       [
+                       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_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_DEFINE([HTTP_HAVE_EXT_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 ----
@@ -208,7 +212,7 @@ dnl ----
        PHP_HTTP_HEADERS="php_http_std_defs.h php_http.h php_http_api.h php_http_cache_api.h \
                php_http_date_api.h php_http_headers_api.h php_http_info_api.h php_http_message_api.h \
                php_http_request_api.h php_http_request_method_api.h php_http_send_api.h php_http_url_api.h \
-               php_http_encoding_api.h phpstr/phpstr.h"
+               php_http_encoding_api.h phpstr/phpstr.h missing.h"
 
        ifdef([PHP_INSTALL_HEADERS], [
                PHP_INSTALL_HEADERS(ext/http, $PHP_HTTP_HEADERS)