Skip to content

Commit

Permalink
vibe.dのdll依存をやめ、openssl-staticに切り替え
Browse files Browse the repository at this point in the history
ついでにOpenSSLのバージョンも更新
  • Loading branch information
shoo committed Sep 23, 2023
1 parent f3ed4b5 commit 049e009
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions thirdparty/openssl/dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ description "A minimal D application."
authors "SHOO"
copyright "Copyright © 2021, SHOO"
license "public domain"
# WindowsでOpenSSLを使うにはコンパイル済みのバイナリ(DLL+lib)が必要
# 自前で用意するのは手間なので、vibe.dで用意されているものを使用する
dependency "vibe-d" version="~>0.9.4"
dependency "openssl" version="~>1.1.6+1.0.1g"
# WindowsでOpenSSLを使うにはコンパイル済みのバイナリ(DLL+lib)が必要。
# 自前で用意するのは手間なので、openssl-staticで用意されているものを使用する。
# openssl-staticは内部でDeimosのopensslに依存しているので、
# 改めてDeimosのopensslをdubのプロジェクト設定に追加する必要はない。
dependency "openssl-static" version="~>1.0.2+3.0.8"
libs "Advapi32" platform="windows"
libs "User32" platform="windows"

0 comments on commit 049e009

Please sign in to comment.