sean Sat Apr 4 16:58:39 2009 UTC
Modified files:
/php-src/ext/imap config.m4
Log:
improve error message when missing c-client (just bit me on Ubuntu 8.10)
http://cvs.php.net/viewvc.cgi/php-src/ext/imap/config.m4?r1=1.78&r2=1.79&diff_format=u
Index: php-src/ext/imap/config.m4
diff -u php-src/ext/imap/config.m4:1.78 php-src/ext/imap/config.m4:1.79
--- php-src/ext/imap/config.m4:1.78 Thu Oct 16 16:21:20 2008
+++ php-src/ext/imap/config.m4 Sat Apr 4 16:58:39 2009
@@ -1,5 +1,5 @@
dnl
-dnl $Id: config.m4,v 1.78 2008/10/16 16:21:20 dmitry Exp $
+dnl $Id: config.m4,v 1.79 2009/04/04 16:58:39 sean Exp $
dnl
AC_DEFUN([IMAP_INC_CHK],[if test -r "$i$1/c-client.h"; then
@@ -161,10 +161,10 @@
CFLAGS=$old_CFLAGS
if test "$ac_cv_u8t_canonical" = "no" && test "$ac_cv_utf8_mime2text" =
"new"; then
- AC_MSG_ERROR([utf8_mime2text() has new signature, but
U8T_CANONICAL is missing. This should not happen. Check config.log for
additional information.])
+ AC_MSG_ERROR([utf8_mime2text() has new signature, but
U8T_CANONICAL is missing. This should not happen. You may not have c-client
installed properly. Check config.log for additional information.])
fi
if test "$ac_cv_u8t_canonical" = "yes" && test "$ac_cv_utf8_mime2text" =
"old"; then
- AC_MSG_ERROR([utf8_mime2text() has old signature, but
U8T_CANONICAL is present. This should not happen. Check config.log for
additional information.])
+ AC_MSG_ERROR([utf8_mime2text() has old signature, but
U8T_CANONICAL is present. This should not happen. You may not have c-client
installed properly. Check config.log for additional information.])
fi
dnl Check for c-client version 2001
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php