From 7846529112219ead7a31c287d1cff153d3e6001c Mon Sep 17 00:00:00 2001 From: Suhas Nandakumar Date: Tue, 26 Apr 2022 11:17:09 -0700 Subject: [PATCH 1/3] force openssl version --- vcpkg.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/vcpkg.json b/vcpkg.json index 1fe34c36..ab0e70a5 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -3,7 +3,17 @@ "version-string": "0.1", "description": "Cisco MLS C++ library", "dependencies": [ - "openssl", + { + "name": "openssl", + "version>=": ""1.1.1n" + }, "doctest" + ], + "builtin-baseline": "3b3bd424827a1f7f4813216f6b32b6c61e386b2e", + "overrides": [ + { + "name": "openssl", + "version-string": "1.1.1n" + } ] } From 54d61574813df64f6db238fbb8b5d5213d2e97f2 Mon Sep 17 00:00:00 2001 From: Suhas Nandakumar Date: Tue, 26 Apr 2022 11:20:56 -0700 Subject: [PATCH 2/3] typo fix --- vcpkg.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcpkg.json b/vcpkg.json index ab0e70a5..f5870561 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -5,7 +5,7 @@ "dependencies": [ { "name": "openssl", - "version>=": ""1.1.1n" + "version>=": "1.1.1n" }, "doctest" ], From 0efe7d2dbaaf80bc37a59bcbb33de59b71b66e11 Mon Sep 17 00:00:00 2001 From: Suhas Nandakumar Date: Tue, 26 Apr 2022 12:52:05 -0700 Subject: [PATCH 3/3] update interop to pin to openssl1.1 --- cmd/interop/vcpkg.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/cmd/interop/vcpkg.json b/cmd/interop/vcpkg.json index e7a79980..3b8622da 100644 --- a/cmd/interop/vcpkg.json +++ b/cmd/interop/vcpkg.json @@ -3,10 +3,20 @@ "version-string": "0.1", "description": "Interop harness for Cisco MLS C++ library", "dependencies": [ - "openssl", + { + "name": "openssl", + "version>=": "1.1.1n" + }, "protobuf", "grpc", "gflags", "nlohmann-json" + ], + "builtin-baseline": "3b3bd424827a1f7f4813216f6b32b6c61e386b2e", + "overrides": [ + { + "name": "openssl", + "version-string": "1.1.1n" + } ] }