FYI

Here is the steps:

- See Install.w32 and follow steps for "Borland C++ builder 5"
- You will have erros at compilation time

Errors are due to the following 2 lines

  struct _timeb tb;

and

  _ftime(&tb);


Workaround for BCB 6:
Change those lines to the following.



#if (__BORLANDC__==0x0560)
        timeb
#else
        _timeb
#endif
        tb;




#if (__BORLANDC__==0x0560)
        ftime(&tb);
#else
        _ftime(&tb);
#endif




It will then compile and link properly

Regards
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           majord...@openssl.org

Reply via email to