git: c853409d69c4 - main - libcrypto: move engines and modules to openssl-lib
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 05 May 2025 22:16:49 UTC
The branch main has been updated by ivy: URL: https://cgit.FreeBSD.org/src/commit/?id=c853409d69c4186b65b0dd63d0a8faf63c1a5cac commit c853409d69c4186b65b0dd63d0a8faf63c1a5cac Author: Lexi Winter <ivy@FreeBSD.org> AuthorDate: 2025-05-05 21:49:57 +0000 Commit: Lexi Winter <ivy@FreeBSD.org> CommitDate: 2025-05-05 21:49:57 +0000 libcrypto: move engines and modules to openssl-lib currently, some OpenSSL-related files end up in the utilities package: /usr/lib/engines-3/capi.so /usr/lib/engines-3/devcrypto.so /usr/lib/engines-3/loader_attic.so /usr/lib/engines-3/padlock.so /usr/lib/ossl-modules/legacy.so since these are part of OpenSSL and are not useful without it, move them to the openssl-lib package. Reviewed by: manu, des, emaste Approved by: des (mentor) Differential Revision: https://reviews.freebsd.org/D50144 --- secure/lib/libcrypto/engines/Makefile.inc | 2 ++ secure/lib/libcrypto/modules/Makefile.inc | 1 + 2 files changed, 3 insertions(+) diff --git a/secure/lib/libcrypto/engines/Makefile.inc b/secure/lib/libcrypto/engines/Makefile.inc index 3da129023c7f..777193ba3f9a 100644 --- a/secure/lib/libcrypto/engines/Makefile.inc +++ b/secure/lib/libcrypto/engines/Makefile.inc @@ -1,3 +1,5 @@ +PACKAGE?= openssl-lib + SHLIBDIR= ${LIBDIR}/engines-3 LCRYPTO_SRC= ${SRCTOP}/crypto/openssl diff --git a/secure/lib/libcrypto/modules/Makefile.inc b/secure/lib/libcrypto/modules/Makefile.inc index 92bc102c06e9..79d9a65b44c2 100644 --- a/secure/lib/libcrypto/modules/Makefile.inc +++ b/secure/lib/libcrypto/modules/Makefile.inc @@ -1,3 +1,4 @@ +PACKAGE?= openssl-lib SHLIBDIR= ${LIBDIR}/ossl-modules LCRYPTO_SRC= ${SRCTOP}/crypto/openssl