From owner-dev-commits-ports-all@freebsd.org Mon Aug 2 15:35:47 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7506E6766F1; Mon, 2 Aug 2021 15:35:47 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Gdhsv2hqNz4cVD; Mon, 2 Aug 2021 15:35:47 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from odin.corp.delphij.net (unknown [IPv6:2601:646:8600:34ea:9cac:fd78:13dc:14ca]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: delphij/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id CE0F72EA99; Mon, 2 Aug 2021 15:35:46 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Subject: Re: git: 616f384d5cce - main - net/openldap24-server: Cleanup and make better use of options framework. To: Charlie Li , ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org References: <202108020449.1724nx2m042115@gitrepo.freebsd.org> <401f3bec-acad-5686-cb77-ebd9a4cacee3@freebsd.org> From: Xin Li Organization: The FreeBSD Project Message-ID: Date: Mon, 2 Aug 2021 08:35:45 -0700 User-Agent: Thunderbird MIME-Version: 1.0 In-Reply-To: <401f3bec-acad-5686-cb77-ebd9a4cacee3@freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Aug 2021 15:35:47 -0000 On 8/2/21 08:07, Charlie Li wrote: > Xin LI wrote: >> -.if !${PORT_OPTIONS:MFETCH} >> -CONFIGURE_ARGS+= --without-fetch >> -.else >> -. if defined(OPENSSL_INSTALLED) && ${OPENSSL_INSTALLED} != "" || ${SSL_DEFAULT} != base >> +.if ${PORT_OPTIONS:MFETCH} && defined(OPENSSL_INSTALLED) && ${OPENSSL_INSTALLED} != "" || ${SSL_DEFAULT} != base >> BROKEN= using OpenSSL from ports and OPTION FETCH together is not supported >> . endif >> > This change prevents building with any SSL_DEFAULT that is not base > regardless of whether FETCH is set. Not sure if this was intended. No, it's not. Sorry for the breakage. This is fixed in 068a856800e6 now. Cheers,