Received: by mail.netbsd.org (Postfix, from userid 605) id 41C9E84DBC; Mon, 29 Jun 2020 13:36:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B082184D83 for ; Mon, 29 Jun 2020 13:36:51 +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 WJ-GcZa_k_zL for ; Mon, 29 Jun 2020 13:36:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0BE7284DD0 for ; Mon, 29 Jun 2020 13:36:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 09497FB28; Mon, 29 Jun 2020 13:36:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1593437811291170" MIME-Version: 1.0 Date: Mon, 29 Jun 2020 13:36:51 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/mk To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20200629133651.09497FB28@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. --_----------=_1593437811291170 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Mon Jun 29 13:36:50 UTC 2020 Modified Files: pkgsrc/mk: bdb.buildlink3.mk Log Message: mk: Add db18 to Berkeley DB framework To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 pkgsrc/mk/bdb.buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1593437811291170 Content-Disposition: inline Content-Length: 1266 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/bdb.buildlink3.mk diff -u pkgsrc/mk/bdb.buildlink3.mk:1.28 pkgsrc/mk/bdb.buildlink3.mk:1.29 --- pkgsrc/mk/bdb.buildlink3.mk:1.28 Sun May 3 10:00:42 2020 +++ pkgsrc/mk/bdb.buildlink3.mk Mon Jun 29 13:36:50 2020 @@ -1,4 +1,4 @@ -# $NetBSD: bdb.buildlink3.mk,v 1.28 2020/05/03 10:00:42 rillig Exp $ +# $NetBSD: bdb.buildlink3.mk,v 1.29 2020/06/29 13:36:50 ryoon Exp $ # # This Makefile fragment is meant to be included by packages that # require a Berkeley DB (BDB) implementation and that are not restricted @@ -6,7 +6,7 @@ # (if builtin) and db[23456]. # # This Makefile cannot handle packages that can use only a subset of -# { db2 db3 db4 db5 db6 }. +# { db2 db3 db4 db5 db6 db18 }. # # User-settable variables: # @@ -18,7 +18,7 @@ # FIXME: Improve the wording of the text above so that one can # understand it. # -# Possible: db1 db2 db3 db4 db5 db6 +# Possible: db1 db2 db3 db4 db5 db6 db18 # Default: db4 # # BDB185_DEFAULT @@ -78,7 +78,7 @@ USE_DB185?= yes # _BDB_PKGS is an exhaustive list of all of the Berkeley DB # implementations that may be used with bdb.buildlink3.mk. # -_BDB_PKGS?= db1 db2 db3 db4 db5 db6 +_BDB_PKGS?= db1 db2 db3 db4 db5 db6 db18 BDB_DEFAULT?= db4 BDB_ACCEPTED?= ${_BDB_PKGS} --_----------=_1593437811291170--