Hi, I can't compile the ssl_cert.c file on a NEXTSTEP/OPENSTEP system, because the posix support is broken. Maybe someone can include the following patch to the ssl_cert.c file: ---------------------------------- --- the regular includes --- #include <stdio.h> #include <sys/types.h> #ifndef WIN32 #ifndef VMS #include <dirent.h> #endif #endif #include <openssl/objects.h> #include <openssl/bio.h> #include <openssl/pem.h> #include "ssl_locl.h" --- the patch for NEXTSTEP/OPENSTEP --- #if defined(NO_DIRENT) || defined(NeXT) /* -- REx */ #include <sys/dir.h> #define dirent direct #endif --- end patch --- ---------------------------------- With this patch it is possible to compile the file on the NEXTSTEP/OPENSTEP system, too. Bye, Juergen Moellenhoff ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]