From 5d7999584dc0f45fae6489bf579f0622425e47f4 Mon Sep 17 00:00:00 2001 From: loqs Date: Thu, 24 Feb 2022 01:10:44 +0000 Subject: [PATCH] OpenSSL 3.0.Y compatibility fix. OpenSSL 3.0.Y does not define OPENSSL_API_COMPAT so git-crypt uses the 1.0 interface include functions that have been removed. Fix by defining OPENSSL_API_COMPAT=0x30000000L which allows the build to complete without hiding deprecation warnings. https://github.com/AGWA/git-crypt/issues/232 --- trunk/PKGBUILD | 1 + 1 file changed, 1 insertion(+) diff --git a/trunk/PKGBUILD b/trunk/PKGBUILD index 4f9cdbb81..27d9c7c2a 100644 --- a/trunk/PKGBUILD +++ b/trunk/PKGBUILD @@ -25,6 +25,7 @@ validpgpkeys=('EF5D84C1838F2EB6D8968C0410378EFC2080080C') # Andrew Ayer