Hey, I was trying to build the openssl library with the Visual Studio 2005 configurations for CE. I am getting bunch of errors, first it gave error for standart C string functions. I defined the macro _CRT_SECURE_NO_WARNINGS and it worked for that. Then i needed to define macro OPENSSL_SYSNAME_WIN32, as it was asking for strings.h file. Then i needed to disable /WX for Optiomization warning. Now i am getting eror dso_win32.c .\crypto\dso\dso_win32.c(90) : error C2373: 'LoadLibraryA' : redefinition; different type modifiers C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\include\winbase.h(5524) : see declaration of 'LoadLibraryA' .\crypto\dso\dso_win32.c(262) : warning C4013: 'GetProcAddressA' undefined; assuming extern returning int .\crypto\dso\dso_win32.c(262) : warning C4047: '=' : 'void *' differs in levels of indirection from 'int' .\crypto\dso\dso_win32.c(293) : warning C4047: '=' : 'void *' differs in levels of indirection from 'int' .\crypto\dso\dso_win32.c(832) : warning C4047: '=' : 'FARPROC' differs in levels of indirection from 'int' NMAKE : fatal error U1077: '"C:\Program Files\Microsoft Visual Studio 8\VC\BIN\cl.EXE"' : return code '0x2'
Just curious, is there some particular compiler needed for getting it compiled without Errors. // Harshvir