I changed the code as follows, sorry it is not in diff format.  Essentially
remove the assembly language section and define and set tsc=0 which causes
the later code to use another random gen method.


 static int have_perfc =1;
 static int have_tsc = 0;//add line
#ifndef __GNUC__
/*                    //add line
 static int have_tsc = 1;
 DWORD cyclecount;
 if (have_tsc) {
   __try {
     __asm {
       rdtsc
       mov cyclecount, eax
       }
     RAND_add(&cyclecount, sizeof(cyclecount), 1);
   } __except(EXCEPTION_EXECUTE_HANDLER) {
     have_tsc = 0;
   }
 }
*/                        //add line
#else

----- Original Message -----
From: "Steve" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, October 17, 2000 4:47 PM
Subject: Re: compiling 0.9.6 with VC5


>
> ----- Original Message -----
> From: "Ales Pour" <[EMAIL PROTECTED]>
> > Hmmm... so /G5 option (ntdll.mak) isn't enough?
>
> The /G5 option does not exist for BC++ Ver3.0. I think it should be -5
>
> Stephen
>
> ______________________________________________________________________
> OpenSSL Project                                 http://www.openssl.org
> User Support Mailing List                    [EMAIL PROTECTED]
> Automated List Manager                           [EMAIL PROTECTED]
>

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

Reply via email to