mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fix bug: #21687, imap extension does not include gss authentication mechanism
This commit is contained in:
parent
aba4c07be1
commit
83e9f23182
2 changed files with 19 additions and 9 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue