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 B53A97A21A for ; Fri, 5 May 2017 07:34:07 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 66F5F855EA; Fri, 5 May 2017 07:34:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EA7F484D8E for ; Fri, 5 May 2017 07:34:06 +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 FK4MdTh1wqsT for ; Fri, 5 May 2017 07:34:06 +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 776DF84CDD for ; Fri, 5 May 2017 07:34:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 72054FBE4; Fri, 5 May 2017 07:34:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1493969646154370" MIME-Version: 1.0 Date: Fri, 5 May 2017 07:34:06 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/devel/splint To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20170505073406.72054FBE4@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. --_----------=_1493969646154370 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Fri May 5 07:34:06 UTC 2017 Modified Files: pkgsrc/devel/splint: distinfo pkgsrc/devel/splint/patches: patch-aa Log Message: splint: use the standard check for C99 before including a C99 header If PR pkg/47405 was not fixed before (it probably was), this should definitely do the trick. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/splint/distinfo cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/splint/patches/patch-aa Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1493969646154370 Content-Disposition: inline Content-Length: 1878 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/splint/distinfo diff -u pkgsrc/devel/splint/distinfo:1.10 pkgsrc/devel/splint/distinfo:1.11 --- pkgsrc/devel/splint/distinfo:1.10 Tue Nov 3 03:29:33 2015 +++ pkgsrc/devel/splint/distinfo Fri May 5 07:34:06 2017 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.10 2015/11/03 03:29:33 agc Exp $ +$NetBSD: distinfo,v 1.11 2017/05/05 07:34:06 maya Exp $ SHA1 (splint-3.1.2.src.tgz) = 0df489cb228dcfffb149b38c57614c2c3e200501 RMD160 (splint-3.1.2.src.tgz) = 52e9786d3cbeaa437877a33b18e42b32dff3b96b SHA512 (splint-3.1.2.src.tgz) = 9bbf3f6575763c022940efde947f845f52095a1bcf645f7f4a98feb335b62d2bd50d78420e7fe95f81eb139b110d8fe48112b025deace45f7994360b20d47e0b Size (splint-3.1.2.src.tgz) = 2284033 bytes -SHA1 (patch-aa) = 3324bff7178957f25bab17cb8ab4d3d25a2d0397 +SHA1 (patch-aa) = b1504db4985b3f3533c4ca8a195edb4a1c8852b6 SHA1 (patch-src_Headers_scan_h) = 9d286990abcad9f3df49c19c6302f1a4a590ee1b SHA1 (patch-src_osd.c) = 84499ef0e9bd23ea89dcb14b8951fa0dfcfed198 Index: pkgsrc/devel/splint/patches/patch-aa diff -u pkgsrc/devel/splint/patches/patch-aa:1.3 pkgsrc/devel/splint/patches/patch-aa:1.4 --- pkgsrc/devel/splint/patches/patch-aa:1.3 Tue Mar 3 08:58:23 2009 +++ pkgsrc/devel/splint/patches/patch-aa Fri May 5 07:34:06 2017 @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.3 2009/03/03 08:58:23 rillig Exp $ +$NetBSD: patch-aa,v 1.4 2017/05/05 07:34:06 maya Exp $ Some systems don't have . @@ -9,7 +9,7 @@ Some systems don't have . # include -# if !defined (WIN32) && !(defined (OS2) && defined (__IBMC__)) -+# if !defined (WIN32) && !(defined (OS2) && defined (__IBMC__)) && !(defined(__GNUC__) && (__GNUC__ == 2)) && !(defined(__sun) && !(__STDC_VERSION__ >= 199901L)) ++# if (__STDC_VERSION__ >= 199901L) /* Microsoft VC++ still doesn't support ISO C99... */ # include # endif --_----------=_1493969646154370--