Received: by mail.netbsd.org (Postfix, from userid 605) id 5FA6184D66; Thu, 13 Dec 2018 05:01:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4BCD984D61 for ; Thu, 13 Dec 2018 05:01:56 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id kh1BH5D-7u70 for ; Thu, 13 Dec 2018 05:01:55 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 71CF384D20 for ; Thu, 13 Dec 2018 05:01:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6B5F1FB16; Thu, 13 Dec 2018 05:01:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_154467731573430" MIME-Version: 1.0 Date: Thu, 13 Dec 2018 05:01:55 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/mail/qmail To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20181213050155.6B5F1FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_154467731573430 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Thu Dec 13 05:01:55 UTC 2018 Modified Files: pkgsrc/mail/qmail: options.mk Log Message: Explicitly buildlink-depend on openssl<1.1. Fixes build on NetBSD-current (by adding dependency on security/openssl to get a sufficiently old version). NFCI elsewhere. To generate a diff of this commit: cvs rdiff -u -r1.59 -r1.60 pkgsrc/mail/qmail/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_154467731573430 Content-Disposition: inline Content-Length: 840 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/qmail/options.mk diff -u pkgsrc/mail/qmail/options.mk:1.59 pkgsrc/mail/qmail/options.mk:1.60 --- pkgsrc/mail/qmail/options.mk:1.59 Sat Nov 10 16:42:52 2018 +++ pkgsrc/mail/qmail/options.mk Thu Dec 13 05:01:55 2018 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.59 2018/11/10 16:42:52 schmonz Exp $ +# $NetBSD: options.mk,v 1.60 2018/12/13 05:01:55 schmonz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.qmail PKG_SUPPORTED_OPTIONS+= eai inet6 pam syncdir tls @@ -79,6 +79,8 @@ SUBST_MESSAGE.load= Setting linker flag PLIST_VARS+= tls .if !empty(PKG_OPTIONS:Mtls) PLIST.tls= yes +BUILDLINK_API_DEPENDS.openssl+= openssl<1.1 +BUILDLINK_ABI_DEPENDS.openssl+= openssl<1.1 . include "../../security/openssl/buildlink3.mk" CFLAGS+= -DTLS=20160918 # NOTE: match what's _in_ the patch USE_TOOLS+= openssl --_----------=_154467731573430--