Received: by mail.netbsd.org (Postfix, from userid 605) id 884CC84D55; Sat, 20 Jan 2018 05:34:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1313084D24 for ; Sat, 20 Jan 2018 05:34:22 +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 8jMkEAwUcwCF for ; Sat, 20 Jan 2018 05:34:21 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 6912984C2E for ; Sat, 20 Jan 2018 05:34:21 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5C000FBDE; Sat, 20 Jan 2018 05:34:21 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1516426461267630" MIME-Version: 1.0 Date: Sat, 20 Jan 2018 05:34:21 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/net/mDNSResponder To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20180120053421.5C000FBDE@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. --_----------=_1516426461267630 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Sat Jan 20 05:34:21 UTC 2018 Modified Files: pkgsrc/net/mDNSResponder: builtin.mk Log Message: Support a version in recent NetBSD-current, 878.1.1 as builtin To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/net/mDNSResponder/builtin.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1516426461267630 Content-Disposition: inline Content-Length: 1097 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/mDNSResponder/builtin.mk diff -u pkgsrc/net/mDNSResponder/builtin.mk:1.7 pkgsrc/net/mDNSResponder/builtin.mk:1.8 --- pkgsrc/net/mDNSResponder/builtin.mk:1.7 Fri May 2 02:29:39 2014 +++ pkgsrc/net/mDNSResponder/builtin.mk Sat Jan 20 05:34:21 2018 @@ -1,4 +1,4 @@ -# $NetBSD: builtin.mk,v 1.7 2014/05/02 02:29:39 obache Exp $ +# $NetBSD: builtin.mk,v 1.8 2018/01/20 05:34:21 ryoon Exp $ BUILTIN_PKG:= mDNSResponder @@ -36,6 +36,8 @@ _BLTN_DNSSD_320_5!= \ ${GREP} -c 3200500 ${H_DNSSD} || ${TRUE} _BLTN_DNSSD_320_16!= \ ${GREP} -c 3201600 ${H_DNSSD} || ${TRUE} +_BLTN_DNSSD_878_1_1!= \ + ${GREP} -c 8780101 ${H_DNSSD} || ${TRUE} . if ${_BLTN_DNSSD_320_16} == "1" BUILTIN_VERSION.mDNSResponder= 320.16 . elif ${_BLTN_DNSSD_320_5} == "1" @@ -46,6 +48,8 @@ BUILTIN_VERSION.mDNSResponder= 258.14 BUILTIN_VERSION.mDNSResponder= 214.3.2 . elif ${_BLTN_DNSSD_212_1} == "1" BUILTIN_VERSION.mDNSResponder= 212.1 +. elif ${_BLTN_DNSSD_878_1_1} == "1" +BUILTIN_VERSION.mDNSResponder= 878.1.1 . else BUILTIN_VERSION.mDNSResponder= 0 #unknown . endif --_----------=_1516426461267630--