Received: by mail.netbsd.org (Postfix, from userid 605) id 06A8E84CDC; Sun, 2 Dec 2018 03:01:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3CD6484CD9 for ; Sun, 2 Dec 2018 03:01:40 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id poVvFSrjx02C for ; Sun, 2 Dec 2018 03:01:39 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A8A8F84C77 for ; Sun, 2 Dec 2018 03:01:39 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A1877FB1F; Sun, 2 Dec 2018 03:01:39 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1543719699262330" MIME-Version: 1.0 Date: Sun, 2 Dec 2018 03:01:39 +0000 From: "Sevan Janiyan" Subject: CVS commit: pkgsrc/devel/cmake To: pkgsrc-changes@NetBSD.org Reply-To: sevan@netbsd.org X-Mailer: log_accum Message-Id: <20181202030139.A1877FB1F@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. --_----------=_1543719699262330 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: sevan Date: Sun Dec 2 03:01:39 UTC 2018 Modified Files: pkgsrc/devel/cmake: Makefile Log Message: Need pthread support, make sure a substitue is present if OS lacks support natively, e.g Minix at present. To generate a diff of this commit: cvs rdiff -u -r1.153 -r1.154 pkgsrc/devel/cmake/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1543719699262330 Content-Disposition: inline Content-Length: 613 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/cmake/Makefile diff -u pkgsrc/devel/cmake/Makefile:1.153 pkgsrc/devel/cmake/Makefile:1.154 --- pkgsrc/devel/cmake/Makefile:1.153 Wed Nov 21 16:58:52 2018 +++ pkgsrc/devel/cmake/Makefile Sun Dec 2 03:01:39 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.153 2018/11/21 16:58:52 adam Exp $ +# $NetBSD: Makefile,v 1.154 2018/12/02 03:01:39 sevan Exp $ .include "Makefile.version" @@ -76,4 +76,5 @@ CFLAGS+= -I${BUILDLINK_INCDIRS.curses}/n CXXFLAGS+= -I${BUILDLINK_INCDIRS.curses}/ncurses .endif +.include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1543719699262330--