dolphin/Externals/openssl
Shawn Hoffman cb03841b7f Add forgotten openssl libs and fix problems from merging Core VS project files. 2012-01-11 21:53:48 -08:00
..
Win32 Add forgotten openssl libs and fix problems from merging Core VS project files. 2012-01-11 21:53:48 -08:00
x64 Add forgotten openssl libs and fix problems from merging Core VS project files. 2012-01-11 21:53:48 -08:00
readme.txt add openssl to externals 2012-01-05 02:59:46 -08:00

readme.txt

#How these openssl libs were compiled:
# VS2010 SP1 from Windows SDK 7.1 prompt
# using debug and release environments
# debug is /MTd, release is /MT

#There is a modification to openssl which removes OPENSSL_cpuid_setup from the x86_64 compile.
# This was a stub function anyways, but it caused errors when linking to x64 dolphin...

#win32 debug
setenv /win7 /x86 /debug
perl Configure no-bf no-camellia no-cast no-cms no-comp no-des no-ec no-ecdh no-ecdsa no-err no-idea no-jpake no-krb5 no-md2 no-md4 no-mdc2 no-rc2 no-rc4 no-rc5 no-ripemd no-seed no-store debug-VC-WIN32
ms\do_ms
nmake -f ms\nt.mak

#win32 release
setenv /win7 /x86 /release
perl Configure no-bf no-camellia no-cast no-cms no-comp no-des no-ec no-ecdh no-ecdsa no-err no-idea no-jpake no-krb5 no-md2 no-md4 no-mdc2 no-rc2 no-rc4 no-rc5 no-ripemd no-seed no-store VC-WIN32
ms\do_ms
nmake -f ms\nt.mak

#win64 debug
setenv /win7 /x64 /debug
perl Configure no-bf no-camellia no-cast no-cms no-comp no-des no-ec no-ecdh no-ecdsa no-err no-idea no-jpake no-krb5 no-md2 no-md4 no-mdc2 no-rc2 no-rc4 no-rc5 no-ripemd no-seed no-store debug-VC-WIN64A
ms\do_win64a
nmake -f ms\nt.mak

#win64 release
setenv /win7 /x64 /release
perl Configure no-bf no-camellia no-cast no-cms no-comp no-des no-ec no-ecdh no-ecdsa no-err no-idea no-jpake no-krb5 no-md2 no-md4 no-mdc2 no-rc2 no-rc4 no-rc5 no-ripemd no-seed no-store VC-WIN64A
ms\do_win64a
nmake -f ms\nt.mak