iliaa           Sun Dec 19 13:18:20 2004 EDT

  Modified files:              (Branch: PHP_4_3)
    /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.1247.2.779&r2=1.1247.2.780&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1247.2.779 php-src/NEWS:1.1247.2.780
--- php-src/NEWS:1.1247.2.779   Fri Dec 17 22:57:25 2004
+++ php-src/NEWS        Sun Dec 19 13:18:20 2004
@@ -4,6 +4,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 #31072 (var_export() does not output an array element with an empty
   string key). (Derick)
 - Fixed bug #31056 (php_std_date() returns invalid formatted date if 
http://cvs.php.net/diff.php/php-src/ext/imap/config.m4?r1=1.49.2.11&r2=1.49.2.12&ty=u
Index: php-src/ext/imap/config.m4
diff -u php-src/ext/imap/config.m4:1.49.2.11 
php-src/ext/imap/config.m4:1.49.2.12
--- php-src/ext/imap/config.m4:1.49.2.11        Fri Jan 16 19:01:06 2004
+++ php-src/ext/imap/config.m4  Sun Dec 19 13:18:20 2004
@@ -1,5 +1,5 @@
 dnl
-dnl $Id: config.m4,v 1.49.2.11 2004/01/17 00:01:06 sniper Exp $
+dnl $Id: config.m4,v 1.49.2.12 2004/12/19 18:18:20 iliaa Exp $
 dnl
 
 AC_DEFUN(IMAP_INC_CHK,[if test -r "$i$1/c-client.h"; then
@@ -173,7 +173,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
@@ -189,7 +189,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