From 74b51585a8a90e9b23f0b30f746eee1f7bc1fb9c Mon Sep 17 00:00:00 2001 From: rin Date: Sat, 8 Jul 2023 23:41:27 +0000 Subject: [PATCH] openssl.old: Fix build with HAVE_OPENSSL == 11. Introduce Makefile.subdir in the same manner as new openssl. --- crypto/external/bsd/openssl.old/lib/Makefile | 7 ++----- crypto/external/bsd/openssl.old/lib/Makefile.subdir | 5 +++++ 2 files changed, 7 insertions(+), 5 deletions(-) create mode 100644 crypto/external/bsd/openssl.old/lib/Makefile.subdir diff --git a/crypto/external/bsd/openssl.old/lib/Makefile b/crypto/external/bsd/openssl.old/lib/Makefile index f370b8b72658..1c094046a16c 100644 --- a/crypto/external/bsd/openssl.old/lib/Makefile +++ b/crypto/external/bsd/openssl.old/lib/Makefile @@ -1,10 +1,7 @@ -# $NetBSD: Makefile,v 1.1.1.2 2023/04/18 14:19:03 christos Exp $ +# $NetBSD: Makefile,v 1.2 2023/07/08 23:41:27 rin Exp $ .include "bsd.own.mk" -# OpenSSL libraries. -SUBDIR= libcrypto libcryptotest libdes - -SUBDIR+= .WAIT libssl # depends on libcrypto +.include "Makefile.subdir" .include diff --git a/crypto/external/bsd/openssl.old/lib/Makefile.subdir b/crypto/external/bsd/openssl.old/lib/Makefile.subdir new file mode 100644 index 000000000000..44dcae343f14 --- /dev/null +++ b/crypto/external/bsd/openssl.old/lib/Makefile.subdir @@ -0,0 +1,5 @@ +# $NetBSD: Makefile.subdir,v 1.1 2023/07/08 23:41:27 rin Exp $ + +# OpenSSL libraries. +SUBDIR+= ${OSSL}libcrypto ${OSSL}libcryptotest ${OSSL}libdes +SUBDIR+= .WAIT ${OSSL}libssl # depends on libcrypto