• R/O
  • SSH
  • HTTPS

ttssh2: コミット


コミットメタ情報

リビジョン6576 (tree)
日時2017-01-15 22:53:37
作者(del#24082)

ログメッセージ

・OpenSSL を静的ライブラリとしてビルドするため、no-shared を追加した。
・CAPIエンジン(engines/e_capi.c)はCrypt32.lib(XP以降)を必要とするため、
 no-capieng を指定して除外とした。

変更サマリ

差分

--- branches/openssl_1_1_0/libs/buildopenssl11.bat (revision 6575)
+++ branches/openssl_1_1_0/libs/buildopenssl11.bat (revision 6576)
@@ -1,7 +1,12 @@
1+rem
2+rem [no-capieng]
3+rem CAPIエンジン(engines/e_capi.c)はCrypt32.lib(XP以降)を利用するため、除外する。
4+rem
5+
16 cd openssl
27
38 if exist "out32.dbg\libcrypto.lib" goto build_dbg_end
4-perl Configure no-asm no-async VC-WIN32 --debug
9+perl Configure no-asm no-async no-shared no-capieng VC-WIN32 --debug
510 perl -e "open(IN,'makefile');while(<IN>){s| /MDd| /MTd|;print $_;}close(IN);" > makefile.tmp
611 if exist "makefile.dbg" del makefile.dbg
712 ren makefile.tmp makefile.dbg
@@ -13,7 +18,7 @@
1318 :build_dbg_end
1419
1520 if exist "out32\libcrypto.lib" goto build_end
16-perl Configure no-asm no-async VC-WIN32
21+perl Configure no-asm no-async no-shared no-capieng VC-WIN32
1722 perl -e "open(IN,'makefile');while(<IN>){s| /MD| /MT|;print $_;}close(IN);" > makefile.tmp
1823 if exist "makefile" del makefile
1924 ren makefile.tmp makefile
旧リポジトリブラウザで表示