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
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
48 - 29 = ?
Subscribe to this entry?

 
 [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

Add a Patch

Pull Requests

Add a Pull Request

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: Thu Mar 28 20:01:28 2024 UTC