From 5ffef74b16e85aa63bbbe7f8d2dfd003e8fa53fd Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Thu, 30 Apr 2020 18:11:56 +0000 Subject: [PATCH] src.opts.mk: add WITHOUT_OPENSSL dependencies A number of components require OpenSSL and fail to build if it is not enabled. As a first phase force these off under WITHOUT_OPENSSL. A second phase should make these more fine-grained, allowing the component to build but without OpenSSL. PR: 245931 Sponsored by: The FreeBSD Foundation --- share/mk/src.opts.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk index 6726ea702fe..fc03abf50c6 100644 --- a/share/mk/src.opts.mk +++ b/share/mk/src.opts.mk @@ -435,6 +435,10 @@ MK_OPENSSH:= no MK_KERBEROS:= no MK_KERBEROS_SUPPORT:= no MK_LDNS:= no +MK_PKGBOOTSTRAP:= no +MK_SVN:= no +MK_SVNLITE:= no +MK_WIRELESS:= no .endif .if ${MK_LDNS} == "no"