Revision: 7785 https://osdn.net/projects/ttssh2/scm/svn/commits/7785 Author: yutakapon Date: 2019-06-21 20:19:25 +0900 (Fri, 21 Jun 2019) Log Message: ----------- OpenSSL 1.1.1をVS2005でビルドできるようにコンパイルオプションを変更した。 チケット #36876 Ticket Links: ------------ https://osdn.net/projects/ttssh2/tracker/detail/36876 Modified Paths: -------------- branches/openssl_1_1_1_v2/libs/buildopenssl11.bat -------------- next part -------------- Modified: branches/openssl_1_1_1_v2/libs/buildopenssl11.bat =================================================================== --- branches/openssl_1_1_1_v2/libs/buildopenssl11.bat 2019-06-20 14:41:18 UTC (rev 7784) +++ branches/openssl_1_1_1_v2/libs/buildopenssl11.bat 2019-06-21 11:19:25 UTC (rev 7785) @@ -1,7 +1,11 @@ -cd openssl-1.1.0 +cd openssl if exist "out32.dbg\libcrypto.lib" goto build_dbg_end -perl Configure no-asm no-async VC-WIN32 --debug + +perl -e "open(IN,'Configurations/10-main.conf');while(<IN>){s|/WX|/W1|;print $_;}close(IN);" > conf.tmp +move conf.tmp Configurations/10-main.conf + +perl Configure no-asm no-async VC-WIN32 -D_WIN32_WINNT=0x0501 --debug perl -e "open(IN,'makefile');while(<IN>){s| /MDd| /MTd|;print $_;}close(IN);" > makefile.tmp if exist "makefile.dbg" del makefile.dbg ren makefile.tmp makefile.dbg @@ -13,7 +17,7 @@ :build_dbg_end if exist "out32\libcrypto.lib" goto build_end -perl Configure no-asm no-async VC-WIN32 +perl Configure no-asm no-async VC-WIN32 -D_WIN32_WINNT=0x0501 perl -e "open(IN,'makefile');while(<IN>){s| /MD| /MT|;print $_;}close(IN);" > makefile.tmp if exist "makefile" del makefile ren makefile.tmp makefile