From: Frank Lichtenheld Date: Thu, 30 Mar 2023 10:15:36 +0000 (+0200) Subject: vcpkg: request "tools" feature of openssl for MSVC build X-Git-Tag: v2.6.3~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=253a87dccf8c9645fade2426177489fcd8dd0ec8;p=thirdparty%2Fopenvpn.git vcpkg: request "tools" feature of openssl for MSVC build We need this for the MSI build. Previously this was enabled by default. Signed-off-by: Frank Lichtenheld Acked-by: Lev Stipakov Message-Id: <20230330101536.533080-1-frank@lichtenheld.com> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg26561.html Signed-off-by: Gert Doering (cherry picked from commit b1fc3f25bc27462100bf96d9b677d6a3c31d3303) --- diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 99ae437e1..4766efdc7 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -440,7 +440,7 @@ jobs: - name: Restore artifacts, or setup vcpkg (do not install any package) uses: lukka/run-vcpkg@v10 with: - vcpkgGitCommitId: 'cafd398be781144787573ca78390e951673c7055' + vcpkgGitCommitId: 'd10d511f25620ca0f315cd83dcef6485efc63010' appendedCacheKey: '${{matrix.triplet}}' - name: Run MSBuild consuming vcpkg.json diff --git a/src/openvpn/vcpkg.json b/src/openvpn/vcpkg.json index 806456770..0afd802ce 100644 --- a/src/openvpn/vcpkg.json +++ b/src/openvpn/vcpkg.json @@ -3,7 +3,10 @@ "name": "openvpn", "version": "2.6", "dependencies": [ - "openssl", + { + "name": "openssl", + "features": ["tools"] + }, "tap-windows6", "lzo", "lz4",