Fix bug: #21687, imap extension does not include gss authentication mechanism

This commit is contained in:
foobar 2003-01-18 07:00:47 +00:00
parent aba4c07be1
commit 83e9f23182
2 changed files with 19 additions and 9 deletions

View file

@ -415,7 +415,11 @@ 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_SSL
#ifdef HAVE_IMAP_AUTH_GSS
auth_link(&auth_gss); /* link in the gss authenticator */
#endif
#ifdef HAVE_IMAP_SSL
ssl_onceonlyinit ();
#endif
#endif