[Ttssh2-commit] [7688] OpenSSL 1.1.1をVS2005でビルドできるようにコンパイルオプションを変更した。

Back to archive index
scmno****@osdn***** scmno****@osdn*****
2019年 5月 19日 (日) 12:41:11 JST


Revision: 7688
          https://osdn.net/projects/ttssh2/scm/svn/commits/7688
Author:   yutakapon
Date:     2019-05-19 12:41:11 +0900 (Sun, 19 May 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/libs/buildopenssl11.bat

-------------- next part --------------
Modified: branches/openssl_1_1_1/libs/buildopenssl11.bat
===================================================================
--- branches/openssl_1_1_1/libs/buildopenssl11.bat	2019-05-18 14:49:35 UTC (rev 7687)
+++ branches/openssl_1_1_1/libs/buildopenssl11.bat	2019-05-19 03:41:11 UTC (rev 7688)
@@ -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


Ttssh2-commit メーリングリストの案内
Back to archive index