> Hi All;
>  Thanks to you for your suggestions. I followed your suggestion
> and removed "ssl/ssl_task.c" and compiled it but I got one
> problem which is as follows:

> "crypto\sha\sha1s.cpp", line 72: cc0020:  error: identifier "GetTSC" is
>           undefined
>   GetTSC(s1);

You have no TSC, so this code is of no use to you. Eliminate this file from
those you are compiling.

Arguably, someone should add the following to this file:
---
@@ -28,6 +28,8 @@ void GetTSC(unsigned long& tsc)
   __asm mov a, eax;
   tsc=a;
 }
+#else
+#error This code requires an instruction cycle counter
 #endif

 #include <stdio.h>
---

DS


______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to