diff options
| author | Gleb Smirnoff <glebius@FreeBSD.org> | 2025-09-01 09:39:14 -0700 |
|---|---|---|
| committer | Gleb Smirnoff <glebius@FreeBSD.org> | 2025-09-01 09:39:14 -0700 |
| commit | b370fb00c89e9182f650943902a008f0c60883d6 (patch) | |
| tree | 5b893a3a0cbd070eceea2680254d346be1272dcf /secure | |
| parent | d0f4c558f920309647029a082af2e87706d33eff (diff) | |
openssl: link enough files for the legacy provider to actually load
Reviewed by: khorben, ngie
Differential Revision: https://reviews.freebsd.org/D52113
Diffstat (limited to 'secure')
| -rw-r--r-- | secure/lib/libcrypto/modules/legacy/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/secure/lib/libcrypto/modules/legacy/Makefile b/secure/lib/libcrypto/modules/legacy/Makefile index c16919ddcd94..db05f212f62a 100644 --- a/secure/lib/libcrypto/modules/legacy/Makefile +++ b/secure/lib/libcrypto/modules/legacy/Makefile @@ -1,7 +1,7 @@ SHLIB_NAME?= legacy.so LIBADD= crypto -SRCS+= legacyprov.c prov_running.c +SRCS+= legacyprov.c prov_running.c params_idx.c # ciphers SRCS+= ciphercommon.c ciphercommon_hw.c ciphercommon_block.c \ @@ -21,11 +21,12 @@ SRCS+= digestcommon.c SRCS+= md4_prov.c wp_prov.c ripemd_prov.c # kdfs -SRCS+= pbkdf1.c +SRCS+= pbkdf1.c pvkkdf.c .include <bsd.lib.mk> -.PATH: ${LCRYPTO_SRC}/providers/implementations/ciphers \ +.PATH: ${LCRYPTO_SRC}/crypto \ + ${LCRYPTO_SRC}/providers/implementations/ciphers \ ${LCRYPTO_SRC}/providers/implementations/digests \ ${LCRYPTO_SRC}/providers/implementations/kdfs \ ${LCRYPTO_SRC}/ssl |
