summaryrefslogtreecommitdiff
path: root/ext/imap
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2003-01-23 16:29:49 +0000
committerfoobar <sniper@php.net>2003-01-23 16:29:49 +0000
commite1c985d9a7bdb74798cd092a066204561674f659 (patch)
tree3950c599892f9718cde56081250e12b6ea27eff3 /ext/imap
parentcee6216c4f916e2e4bfb356bc3fd235e291494bc (diff)
downloadphp-git-e1c985d9a7bdb74798cd092a066204561674f659.tar.gz
Fix bug: #21817 (only enable this if --with-kerberos is used)
Diffstat (limited to 'ext/imap')
-rw-r--r--ext/imap/php_imap.c2
1 files changed, 1 insertions, 1 deletions
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