From: foobar Date: Thu, 23 Jan 2003 16:29:49 +0000 (+0000) Subject: Fix bug: #21817 (only enable this if --with-kerberos is used) X-Git-Tag: PHP_5_0_dev_before_13561_fix~80 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e1c985d9a7bdb74798cd092a066204561674f659;p=php Fix bug: #21817 (only enable this if --with-kerberos is used) --- diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index 89ff178977..67d083df6b 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -418,7 +418,7 @@ PHP_MINIT_FUNCTION(imap) #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