Hi,
The Borland C++ free compiler suite does not bundle the TASM assembler.
crypto/rand/rand_win.c fails to compile because it contains some
assembler code.
Following simple patch disables the assembler:
ngps@madcap:/tmp$ diff -u rand_win.c.org rand_win.c
--- rand_win.c.org Mon Jan 29 11:00:30 2001
+++ rand_win.c Mon Jan 29 10:59:46 2001
@@ -570,7 +570,7 @@
DWORD w;
LARGE_INTEGER l;
static int have_perfc = 1;
-#ifndef __GNUC__
+#if !__GNUC__ && !__BORLANDC__
static int have_tsc = 1;
DWORD cyclecount;
Cheers.
--
Ng Pheng Siong <[EMAIL PROTECTED]> * http://www.post1.com/home/ngps
______________________________________________________________________
OpenSSL Project http://www.openssl.org
Development Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]