Fix bug: #21817 (only enable this if --with-kerberos is used)

This commit is contained in:
foobar 2003-01-23 16:29:49 +00:00
parent cee6216c4f
commit e1c985d9a7

View File

@ -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