Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 33D681A9217 for ; Mon, 18 Jan 2021 09:25:18 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 5805584D3D; Mon, 18 Jan 2021 09:25:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8A55B84E02 for ; Mon, 18 Jan 2021 09:22:20 +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 JyscgNhAz-aE for ; Mon, 18 Jan 2021 09:22:20 +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 D9DEE84DB5 for ; Mon, 18 Jan 2021 09:22:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D3B20FA9D; Mon, 18 Jan 2021 09:22:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1610961739114660" MIME-Version: 1.0 Date: Mon, 18 Jan 2021 09:22:19 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/devel/libusb1 To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210118092219.D3B20FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1610961739114660 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Jan 18 09:22:19 UTC 2021 Modified Files: pkgsrc/devel/libusb1: Makefile buildlink3.mk Log Message: libusb1: require gcc>=4.7 for -std=c11 To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 pkgsrc/devel/libusb1/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/libusb1/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1610961739114660 Content-Disposition: inline Content-Length: 1388 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libusb1/Makefile diff -u pkgsrc/devel/libusb1/Makefile:1.26 pkgsrc/devel/libusb1/Makefile:1.27 --- pkgsrc/devel/libusb1/Makefile:1.26 Fri Dec 18 23:06:19 2020 +++ pkgsrc/devel/libusb1/Makefile Mon Jan 18 09:22:19 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2020/12/18 23:06:19 nia Exp $ +# $NetBSD: Makefile,v 1.27 2021/01/18 09:22:19 nia Exp $ DISTNAME= libusb-1.0.24 PKGNAME= ${DISTNAME:S/libusb/libusb1/} @@ -13,6 +13,8 @@ HOMEPAGE= https://libusb.info/ COMMENT= USB Access Library (version 1) LICENSE= gnu-lgpl-v2.1 +GCC_REQD+= 4.7 # -std=c11 + # Works on Dragonfly but explicitly not wanted by DragonFly upstream; # see PR 47042. NOT_FOR_PLATFORM= DragonFly-*-* Index: pkgsrc/devel/libusb1/buildlink3.mk diff -u pkgsrc/devel/libusb1/buildlink3.mk:1.3 pkgsrc/devel/libusb1/buildlink3.mk:1.4 --- pkgsrc/devel/libusb1/buildlink3.mk:1.3 Mon May 25 06:47:40 2020 +++ pkgsrc/devel/libusb1/buildlink3.mk Mon Jan 18 09:22:19 2021 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.3 2020/05/25 06:47:40 plunky Exp $ +# $NetBSD: buildlink3.mk,v 1.4 2021/01/18 09:22:19 nia Exp $ BUILDLINK_TREE+= libusb1 @@ -7,6 +7,9 @@ LIBUSB1_BUILDLINK3_MK:= BUILDLINK_API_DEPENDS.libusb1+= libusb1>=1.0.9 BUILDLINK_PKGSRCDIR.libusb1?= ../../devel/libusb1 + +GCC_REQD+= 4.7 # -std=c11 + .endif # LIBUSB1_BUILDLINK3_MK BUILDLINK_TREE+= -libusb1 --_----------=_1610961739114660--