From 83e9f231827d19ece6c3be32ec6c8162db478fb4 Mon Sep 17 00:00:00 2001 From: foobar Date: Sat, 18 Jan 2003 07:00:47 +0000 Subject: Fix bug: #21687, imap extension does not include gss authentication mechanism --- ext/imap/php_imap.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'ext/imap/php_imap.c') diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index af12742c12..8362583cb3 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -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 -- cgit v1.2.1