svn commit: r364319 - stable/12/share/mk

Ed Maste emaste at FreeBSD.org
Mon Aug 17 17:47:05 UTC 2020


Author: emaste
Date: Mon Aug 17 17:47:04 2020
New Revision: 364319
URL: https://svnweb.freebsd.org/changeset/base/364319

Log:
  MFC r360501: 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

Modified:
  stable/12/share/mk/src.opts.mk
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/share/mk/src.opts.mk
==============================================================================
--- stable/12/share/mk/src.opts.mk	Mon Aug 17 17:17:33 2020	(r364318)
+++ stable/12/share/mk/src.opts.mk	Mon Aug 17 17:47:04 2020	(r364319)
@@ -507,6 +507,10 @@ MK_DMAGENT:=	no
 MK_OPENSSH:=	no
 MK_KERBEROS:=	no
 MK_LDNS:=	no
+MK_PKGBOOTSTRAP:=	no
+MK_SVN:=		no
+MK_SVNLITE:=		no
+MK_WIRELESS:=		no
 .endif
 
 .if ${MK_LDNS} == "no"


More information about the svn-src-all mailing list