Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Feb 2021 14:40:48 GMT
From:      Mitchell Horne <mhorne@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: e5cc1c474841 - main - src.opts.mk: set MK_ZFS conditional on MK_OPENSSL
Message-ID:  <202102011440.111Eemlb054360@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by mhorne:

URL: https://cgit.FreeBSD.org/src/commit/?id=e5cc1c47484160969e0a7c13cdbc71081d7dd60e

commit e5cc1c47484160969e0a7c13cdbc71081d7dd60e
Author:     Mitchell Horne <mhorne@FreeBSD.org>
AuthorDate: 2021-01-30 19:04:08 +0000
Commit:     Mitchell Horne <mhorne@FreeBSD.org>
CommitDate: 2021-02-01 14:31:17 +0000

    src.opts.mk: set MK_ZFS conditional on MK_OPENSSL
    
    libzfs has a dependency on libcrypto. This causes a buildworld link
    failure when WITHOUT_OPENSSL/WITHOUT_CRYPT is set.
    
    This dependency was added implicitly by the switch to OpenZFS, and
    explicitly in 40d0fd287510 and cd568e2b1b67.
    
    PR:             252841
    Reviewed by:    kevans, freqlabs
    MFC after:      3 days
    Differential Revision:  https://reviews.freebsd.org/D28431
---
 share/mk/src.opts.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk
index d3f7e33f276c..6cfab4b50613 100644
--- a/share/mk/src.opts.mk
+++ b/share/mk/src.opts.mk
@@ -438,6 +438,7 @@ MK_LDNS:=	no
 MK_PKGBOOTSTRAP:=	no
 MK_SVN:=		no
 MK_SVNLITE:=		no
+MK_ZFS:=	no
 .endif
 
 .if ${MK_LDNS} == "no"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202102011440.111Eemlb054360>