hyanantha               Thu Oct 24 05:50:36 2002 EDT

  Modified files:              (Branch: PHP_4_2_0)
    /php4/ext/imap      php_imap.c 
  Log:
  NetWare related changes/modifications.
  
  
Index: php4/ext/imap/php_imap.c
diff -u php4/ext/imap/php_imap.c:1.112.2.8 php4/ext/imap/php_imap.c:1.112.2.9
--- php4/ext/imap/php_imap.c:1.112.2.8  Thu Sep 19 12:59:11 2002
+++ php4/ext/imap/php_imap.c    Thu Oct 24 05:50:36 2002
@@ -25,7 +25,7 @@
    | PHP 4.0 updates:  Zeev Suraski <[EMAIL PROTECTED]>                       |
    +----------------------------------------------------------------------+
  */
-/* $Id: php_imap.c,v 1.112.2.8 2002/09/19 16:59:11 derick Exp $ */
+/* $Id: php_imap.c,v 1.112.2.9 2002/10/24 09:50:36 hyanantha Exp $ */
 
 #define IMAP41
 
@@ -421,7 +421,7 @@
 
        ZEND_INIT_MODULE_GLOBALS(imap, php_imap_init_globals, NULL)
 
-#ifndef PHP_WIN32
+#if !defined(PHP_WIN32) && !defined(NETWARE)
        mail_link(&unixdriver);         /* link in the unix driver */
        mail_link(&mhdriver);           /* link in the mh driver */
        /* mail_link(&mxdriver); */     /* According to c-client docs (internal.txt) 
this shouldn't be used. */
@@ -437,7 +437,7 @@
        mail_link(&mtxdriver);          /* link in the mtx driver */
        mail_link(&dummydriver);        /* link in the dummy driver */
 
-#ifndef PHP_WIN32
+#if !defined(PHP_WIN32) && !defined(NETWARE)
        auth_link(&auth_log);           /* link in the log authenticator */
        auth_link(&auth_md5);       /* link in the cram-md5 authenticator */ 
 #ifdef  HAVE_IMAP_SSL



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to