aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authororbea <orbea@riseup.net>2024-08-01 15:18:53 -0700
committerorbea <orbea@riseup.net>2024-08-01 15:31:01 -0700
commitf609ff6daec571316f2ff40ffcefb45cd6834082 (patch)
treea38e1cd29c05e693bf31cdc8ed03f57a389fb24c
parentapp-crypt/trousers: update SRC_URI (diff)
downloadlibressl-f609ff6daec571316f2ff40ffcefb45cd6834082.tar.gz
libressl-f609ff6daec571316f2ff40ffcefb45cd6834082.tar.bz2
libressl-f609ff6daec571316f2ff40ffcefb45cd6834082.zip
dev-libs/libtpms: remove duplicate patch
Signed-off-by: orbea <orbea@riseup.net>
-rw-r--r--dev-libs/libtpms/files/407.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/dev-libs/libtpms/files/407.patch b/dev-libs/libtpms/files/407.patch
deleted file mode 100644
index 2c7aecf..0000000
--- a/dev-libs/libtpms/files/407.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 96cf3dede02cbf58134115603209d863fc82a06c Mon Sep 17 00:00:00 2001
-From: orbea <orbea@riseup.net>
-Date: Wed, 13 Mar 2024 10:01:49 -0700
-Subject: [PATCH] tpm_crypto: add missing openssl includes
-
-This fixes the build with LibreSSL 3.9.0 where many implicit
-declarations for BN_, EVP_ and RSA_ functions occur which were
-implicitly included before.
-
-Signed-off-by: orbea <orbea@riseup.net>
----
- src/tpm12/tpm_crypto.c | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/src/tpm12/tpm_crypto.c b/src/tpm12/tpm_crypto.c
-index bcbaa7fc2..628e27cc2 100644
---- a/src/tpm12/tpm_crypto.c
-+++ b/src/tpm12/tpm_crypto.c
-@@ -48,6 +48,8 @@
- #include <openssl/rand.h>
- #include <openssl/sha.h>
- #include <openssl/engine.h>
-+#include <openssl/evp.h>
-+#include <openssl/rsa.h>
-
- #include "tpm_cryptoh.h"
- #include "tpm_debug.h"