mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 21:19:06 +08:00
4cbbcbddfd
* [vcpkg ci:osx] Remove brew install * add instructions for creating a new vagrant box * fix the vagrant scripts for the new box * finish fixing the setup * [mecab jxrlib] fix ports for CI mecab needed to use an actual ref that wasn't master, and jxrlib needed a patch for xcode 12 CLTs. Additionally, this fixes the mecab version to be a date, the date of the last commit, since `1.0` is not the correct version (mecab doesn't have released versions) * [many ports] fix compile with Xcode 12 CLTs This mostly means fixing errors on implicit-function-declaration, and removing some Werrors * alac-decoder * apr * argtable2 * arrow * hyperscan * mcpp * minizip * mosquitto * stormlib * [many ports] even more Xcode 12 CLT fixes * [jxrlib darknet] fix the last ports! (hopefully) * CRs, plus minor wip changes to osx scripts
30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From d1b446c7a69344cb53be6692cd76186960a1428d Mon Sep 17 00:00:00 2001
|
|
From: Nicole Mazzuca <mazzucan@outlook.com>
|
|
Date: Wed, 23 Sep 2020 09:40:32 -0700
|
|
Subject: [PATCH 1/2] use old pem pack
|
|
|
|
In this commit: https://github.com/noloader/cryptopp-pem/commit/0cfa60820ec1d5e8ac4d77a0a8786ee43e9a2400
|
|
the parameter orders have been changed.
|
|
But we cannot update pem-pack to this version or newer because it
|
|
wont compile with the current version of cryptopp in vcpkg.
|
|
---
|
|
src/external/Ripe.cc | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/external/Ripe.cc b/src/external/Ripe.cc
|
|
index 6ff9561..a1d1eec 100644
|
|
--- a/src/external/Ripe.cc
|
|
+++ b/src/external/Ripe.cc
|
|
@@ -227,7 +227,7 @@ Ripe::KeyPair Ripe::generateRSAKeyPair(unsigned int length, const std::string& s
|
|
if (secret.empty()) {
|
|
PEM_Save(snk, privateKey);
|
|
} else {
|
|
- PEM_Save(snk, privateKey, rng, PRIVATE_RSA_ALGORITHM, secret.data(), secret.size());
|
|
+ PEM_Save(snk, rng, privateKey, PRIVATE_RSA_ALGORITHM, secret.data(), secret.size());
|
|
}
|
|
snk.MessageEnd();
|
|
}
|
|
--
|
|
2.24.3 (Apple Git-128)
|
|
|