On Fri, Mar 24, 2000 at 05:34:14PM -0500, [EMAIL PROTECTED] wrote:

> We are having problems compiling....first we run the Configure script.

Thanks for the report.

Please try OpenSSL 0.9.5a-beta2 with the changes below (I assume the
Cygwin defines __CYGWIN32__; if it is something else, please change it
accordingly), and let me know the results.

Index: e_os.h
===================================================================
RCS file: /home/um/cvs/openssl/e_os.h,v
retrieving revision 1.33
diff -u -r1.33 e_os.h
--- e_os.h      2000/03/23 17:54:58     1.33
+++ e_os.h      2000/03/24 21:50:58
@@ -135,7 +135,7 @@
 #define clear_sys_error()      errno=0
 #endif
 
-#ifdef WINDOWS
+#if defined(WINDOWS) && !defined(__CYGWIN32__)
 #define get_last_socket_error()        WSAGetLastError()
 #define clear_socket_error()   WSASetLastError(0)
 #define readsocket(s,b,n)      recv((s),(b),(n),0)
@@ -169,7 +169,7 @@
 #  define NO_FP_API
 #endif
 
-#if defined(WINDOWS) || defined(MSDOS)
+#if (defined(WINDOWS) || defined(MSDOS)) && !defined(__CYGWIN32__)
 
 #  ifndef S_IFDIR
 #    define S_IFDIR    _S_IFDIR
Index: crypto/des/read_pwd.c
===================================================================
RCS file: /home/um/cvs/openssl/crypto/des/read_pwd.c,v
retrieving revision 1.19
diff -u -r1.19 read_pwd.c
--- read_pwd.c  1999/12/26 22:46:49     1.19
+++ read_pwd.c  2000/03/24 21:52:05
@@ -161,7 +161,7 @@
 #include <sys/ioctl.h>
 #endif
 
-#ifdef MSDOS
+#if defined(MSDOS) && !defined(__CYGWIN32__)
 #include <conio.h>
 #define fgets(a,b,c) noecho_fgets(a,b,c)
 #endif
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to