From 6fcc6301cbb6ea5d47209442358f4af309d05661 Mon Sep 17 00:00:00 2001 From: tb <> Date: Fri, 21 Jul 2023 09:04:23 +0000 Subject: Provide a bunch of always failing ENGINE API This commit adds a few symbols under OPENSSL_NO_ENGINE. They will be used after the main ENGINE code is disabled in the next bump. The ecosystem is mostly prepared for dealing with a libcrypto compiled with OPENSSL_NO_ENGINE. There are a few stragglers like M2Crypto, dovecot and the latest apr-util release (fixed in their development branch). To avoid intrusive patching in these ports, we need to keep a bunch of ENGINE symbols around despite adding OPENSSL_NO_ENGINE. This of course meant patching some other ports, but that was way easier. ok jsing --- src/lib/libcrypto/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/lib/libcrypto/Makefile') diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile index 8ec9b1b3d8..b9cb2eddce 100644 --- a/src/lib/libcrypto/Makefile +++ b/src/lib/libcrypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.138 2023/07/20 16:36:06 tb Exp $ +# $OpenBSD: Makefile,v 1.139 2023/07/21 09:04:23 tb Exp $ LIB= crypto LIBREBUILD=y @@ -362,6 +362,7 @@ SRCS+= ecs_lib.c SRCS+= ecdsa.c # engine/ +SRCS+= engine_stubs.c SRCS+= eng_all.c SRCS+= eng_cnf.c SRCS+= eng_ctrl.c -- cgit v1.2.3-55-g6feb