php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #10990 Compilation Failed with the --with-imap-ssl
Submitted: 2001-05-21 11:16 UTC Modified: 2001-05-29 06:39 UTC
From: zapzap at aquariomania dot com Assigned:
Status: Closed Package: IMAP related
PHP Version: 4.0.5 OS: Linux RH7.0
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: zapzap at aquariomania dot com
New email:
PHP Version: OS:

 

 [2001-05-21 11:16 UTC] zapzap at aquariomania dot com
hi,

I try compil php 4.0.5 as an DSO Module 
with the 2 directives :
--with-openssl
--with-imap-ssl
--with-imap

and it failed with an error on :
auth_link (&auth_ssl);

i use the c-client imap lib (from imap-2001.BETA.SNAP-0104262058) with the SSL enable at compil time

i can compil without aby problem with only 
--with-openssl
--with-imap

ZapZap

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-05-27 14:49 UTC] sniper@php.net
Fixed in CVS.

--Jani

 [2001-05-29 06:39 UTC] sniper@php.net
Index: php_imap.c
===================================================================
RCS file: /repository/php4/ext/imap/php_imap.c,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- php_imap.c  2001/05/24 10:07:08     1.80
+++ php_imap.c  2001/05/27 18:38:59     1.81
@@ -25,7 +25,7 @@
    | PHP 4.0 updates:  Zeev Suraski <zeev@zend.com>                       |
    +----------------------------------------------------------------------+
  */
-/* $Id: php_imap.c,v 1.80 2001/05/24 10:07:08 ssb Exp $ */
+/* $Id: php_imap.c,v 1.81 2001/05/27 18:38:59 sniper Exp $ */
 
 #define IMAP41
 
@@ -451,10 +451,9 @@
        mail_link(&newsdriver);         /* link in the news driver */
        mail_link(&philedriver);        /* link in the phile driver */
        auth_link(&auth_log);           /* link in the log authenticator */
-       auth_link(&auth_md5);           /* link in the cram-md5 authenticator */ 
+       auth_link(&auth_md5);       /* link in the cram-md5 authenticator */ 
 #ifdef  HAVE_IMAP_SSL
        ssl_onceonlyinit ();
-       auth_link (&auth_ssl);          /* link in the ssl authenticator */
 #endif
 #endif
        mail_link(&dummydriver);        /* link in the dummy driver */

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Dec 27 16:01:29 2024 UTC