sniper Thu Jan 23 11:29:49 2003 EDT Modified files: /php4/ext/imap php_imap.c Log: Fix bug: #21817 (only enable this if --with-kerberos is used) Index: php4/ext/imap/php_imap.c diff -u php4/ext/imap/php_imap.c:1.154 php4/ext/imap/php_imap.c:1.155 --- php4/ext/imap/php_imap.c:1.154 Mon Jan 20 16:28:09 2003 +++ php4/ext/imap/php_imap.c Thu Jan 23 11:29:49 2003 @@ -26,7 +26,7 @@ | PHP 4.0 updates: Zeev Suraski <[EMAIL PROTECTED]> | +----------------------------------------------------------------------+ */ -/* $Id: php_imap.c,v 1.154 2003/01/20 21:28:09 iliaa Exp $ */ +/* $Id: php_imap.c,v 1.155 2003/01/23 16:29:49 sniper Exp $ */ #define IMAP41 @@ -418,7 +418,7 @@ #ifndef PHP_WIN32 auth_link(&auth_log); /* link in the log authenticator */ auth_link(&auth_md5); /* link in the cram-md5 authenticator */ -#ifdef HAVE_IMAP_AUTH_GSS +#ifdef HAVE_IMAP_KRB && defined(HAVE_IMAP_AUTH_GSS) auth_link(&auth_gss); /* link in the gss authenticator */ #endif
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php