Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0080085055 for ; Thu, 3 Aug 2023 12:27:05 +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 ovOFcHHC1VYM for ; Thu, 3 Aug 2023 12:27:04 +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 53D8084D1B for ; Thu, 3 Aug 2023 12:27:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4F382FBDB; Thu, 3 Aug 2023 12:27:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16910656248730" MIME-Version: 1.0 Date: Thu, 3 Aug 2023 12:27:04 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/sysutils/pciutils To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230803122704.4F382FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_16910656248730 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Aug 3 12:27:04 UTC 2023 Modified Files: pkgsrc/sysutils/pciutils: Makefile Log Message: pciutils: cannot use standard c99, uses symbol versions To generate a diff of this commit: cvs rdiff -u -r1.55 -r1.56 pkgsrc/sysutils/pciutils/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16910656248730 Content-Disposition: inline Content-Length: 747 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/pciutils/Makefile diff -u pkgsrc/sysutils/pciutils/Makefile:1.55 pkgsrc/sysutils/pciutils/Makefile:1.56 --- pkgsrc/sysutils/pciutils/Makefile:1.55 Wed Aug 2 16:17:18 2023 +++ pkgsrc/sysutils/pciutils/Makefile Thu Aug 3 12:27:04 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.55 2023/08/02 16:17:18 nia Exp $ +# $NetBSD: Makefile,v 1.56 2023/08/03 12:27:04 nia Exp $ DISTNAME= pciutils-3.10.0 CATEGORIES= sysutils @@ -29,7 +29,8 @@ REPLACE_SH= *.sh PKGCONFIG_OVERRIDE= lib/libpci.pc.in # "error: 'for' loop initial declarations are only allowed in C99 mode" -FORCE_C_STD= c99 +# cannot be standard c99, uses symbol versions +FORCE_C_STD= gnu99 .include "../../sysutils/pciutils/libname.mk" --_----------=_16910656248730--