Received: by mail.netbsd.org (Postfix, from userid 605) id 8050584E5D; Sun, 9 Oct 2022 07:25:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AF1B984D3F for ; Sun, 9 Oct 2022 07:25:23 +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 qqkMUJEMtmKW for ; Sun, 9 Oct 2022 07:25:23 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 42C0C84CDC for ; Sun, 9 Oct 2022 07:25:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3FF0AFA90; Sun, 9 Oct 2022 07:25:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1665300323217510" MIME-Version: 1.0 Date: Sun, 9 Oct 2022 07:25:23 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/net/cppzmq To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20221009072523.3FF0AFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1665300323217510 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Oct 9 07:25:23 UTC 2022 Modified Files: pkgsrc/net/cppzmq: Makefile Log Message: cppzmq: fix building without git To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/cppzmq/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1665300323217510 Content-Disposition: inline Content-Length: 643 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/cppzmq/Makefile diff -u pkgsrc/net/cppzmq/Makefile:1.1 pkgsrc/net/cppzmq/Makefile:1.2 --- pkgsrc/net/cppzmq/Makefile:1.1 Sat Oct 8 13:15:07 2022 +++ pkgsrc/net/cppzmq/Makefile Sun Oct 9 07:25:23 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2022/10/08 13:15:07 adam Exp $ +# $NetBSD: Makefile,v 1.2 2022/10/09 07:25:23 adam Exp $ DISTNAME= cppzmq-4.8.1 CATEGORIES= net @@ -14,5 +14,7 @@ USE_CMAKE= yes USE_LANGUAGES= c c++ TEST_TARGET= test +# needed for building unit tests +.include "../../devel/catch2/buildlink3.mk" .include "../../net/zeromq/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1665300323217510--