iliaa           Sun Dec 19 13:17:45 2004 EDT

  Modified files:              (Branch: PHP_5_0)
    /php-src    NEWS 
    /php-src/ext/imap   config.m4 
  Log:
  MFH: Fixed bug #31103 (Better error message when c-client cannot be found).
  
  
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1760.2.167&r2=1.1760.2.168&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1760.2.167 php-src/NEWS:1.1760.2.168
--- php-src/NEWS:1.1760.2.167   Fri Dec 17 09:39:34 2004
+++ php-src/NEWS        Sun Dec 19 13:17:43 2004
@@ -5,6 +5,7 @@
 - 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)
http://cvs.php.net/diff.php/php-src/ext/imap/config.m4?r1=1.63&r2=1.63.2.1&ty=u
Index: php-src/ext/imap/config.m4
diff -u php-src/ext/imap/config.m4:1.63 php-src/ext/imap/config.m4:1.63.2.1
--- php-src/ext/imap/config.m4:1.63     Sun Feb 22 22:24:58 2004
+++ php-src/ext/imap/config.m4  Sun Dec 19 13:17:45 2004
@@ -1,5 +1,5 @@
 dnl
-dnl $Id: config.m4,v 1.63 2004/02/23 03:24:58 sniper Exp $
+dnl $Id: config.m4,v 1.63.2.1 2004/12/19 18:17:45 iliaa Exp $
 dnl
 
 AC_DEFUN(IMAP_INC_CHK,[if test -r "$i$1/c-client.h"; then
@@ -161,7 +161,7 @@
     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 @@
     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)

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to