From: Ilia Alshanetsky Date: Sun, 19 Dec 2004 18:17:45 +0000 (+0000) Subject: MFH: Fixed bug #31103 (Better error message when c-client cannot be found). X-Git-Tag: php-5.0.4RC1~454 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3ed65da8cbe21f4fbf516e32664e898f26a0fc5f;p=php MFH: Fixed bug #31103 (Better error message when c-client cannot be found). --- diff --git a/NEWS b/NEWS index eb08e301fb..13af162607 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,7 @@ PHP NEWS - Fixed bug #31111 (Compile failure of zend_strtod.c). (Derick) - Fixed bug #31110 (PHP 4.3.10 does not compile on Tru64 UNIX 5.1B). (Derick) - Fixed bug #31107 (Compile failure on Solaris 9 (Intel) and gcc 3.4.3). (Derick) +- Fixed bug #31103 (Better error message when c-client cannot be found). (Ilia) - Fixed bug #31087 (broken php_url_encode_hash macro). (Ilia) - Fixed bug #31072 (var_export() does not output an array element with an empty string key). (Derick) diff --git a/ext/imap/config.m4 b/ext/imap/config.m4 index d0bb00b14b..ba3994437c 100644 --- a/ext/imap/config.m4 +++ b/ext/imap/config.m4 @@ -161,7 +161,7 @@ if test "$PHP_IMAP" != "no"; then PHP_EXPAND_PATH($IMAP_DIR, IMAP_DIR) if test -z "$IMAP_DIR"; then - AC_MSG_ERROR(Cannot find rfc822.h. Please check your IMAP installation.) + AC_MSG_ERROR(Cannot find rfc822.h. Please check your c-client installation.) fi if test -r "$IMAP_DIR/c-client/c-client.a"; then @@ -177,7 +177,7 @@ if test "$PHP_IMAP" != "no"; then done if test -z "$IMAP_LIBDIR"; then - AC_MSG_ERROR(Cannot find imap library (libc-client.a). Please check your IMAP installation.) + AC_MSG_ERROR(Cannot find imap library (libc-client.a). Please check your c-client installation.) fi PHP_ADD_INCLUDE($IMAP_INC_DIR)