Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 17B6A7A2E0 for ; Sun, 13 Nov 2016 23:45:44 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id BDA3F855B0; Sun, 13 Nov 2016 23:45:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4E8E78557A for ; Sun, 13 Nov 2016 23:45:43 +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 BOidxToRESTP for ; Sun, 13 Nov 2016 23:45:42 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id AED4985570 for ; Sun, 13 Nov 2016 23:45:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A4EF9FBA6; Sun, 13 Nov 2016 23:45:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1479080742292620" MIME-Version: 1.0 Date: Sun, 13 Nov 2016 23:45:42 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/libuv To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20161113234542.A4EF9FBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1479080742292620 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Nov 13 23:45:42 UTC 2016 Modified Files: pkgsrc/devel/libuv: Makefile Log Message: Fix packaging by installing pthread-barrier.h unconditionally. pkgsrc installs all headers independent of OS right now, so this is just another header in the list. Feel free to make this more opsys-specific. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/libuv/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1479080742292620 Content-Disposition: inline Content-Length: 690 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libuv/Makefile diff -u pkgsrc/devel/libuv/Makefile:1.9 pkgsrc/devel/libuv/Makefile:1.10 --- pkgsrc/devel/libuv/Makefile:1.9 Sat Nov 12 07:47:34 2016 +++ pkgsrc/devel/libuv/Makefile Sun Nov 13 23:45:42 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2016/11/12 07:47:34 adam Exp $ +# $NetBSD: Makefile,v 1.10 2016/11/13 23:45:42 wiz Exp $ DISTNAME= libuv-1.10.0 CATEGORIES= devel @@ -16,7 +16,7 @@ USE_TOOLS+= autoconf automake pkg-config GNU_CONFIGURE= yes HEADERS= uv-aix.h uv-bsd.h uv-darwin.h uv-linux.h uv-sunos.h \ - uv-unix.h uv-win.h + uv-unix.h uv-win.h pthread-barrier.h pre-configure: ${RUN} cd ${WRKSRC} && ${SH} ./autogen.sh --_----------=_1479080742292620--