- des_old.h, ui_locl.h
5. Undef '_' for SH3 and SH4. For SH3 and SH4, '_' is defined as '1' and
   it causes a compile error. Although I think it's better to change the
   variable name, I add '#undef _' just to compile.

Well, I'd rather go for

#ifdef _
#undef _
#endif

I mean I would not make it specific to WCE as any compiler would fail. As for renaming it. There might have been reason for naming it like that. Other team members might have an idea...

- ectest.c
6. Add pragma to disable warnings.

- rc2_skey.c, rsa_pss.c
7. Add pragma to disable optimizations because they cause 'Internal
   Compile Error' while compiling for Windows Mobile 2003 (WCE420/ARMV4).

I'll throw in additional defined(_MSC_VER) to those #ifs as the pragmas in question *are* MSC specific. As for rc2_skey.c. There was a report maintaining that switching off global optimizations, i.e. #pragma optimize("g",off), is sufficient. Can you test and confirm or refute it? A.
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       openssl-dev@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to