Received: by mail.netbsd.org (Postfix, from userid 605) id 382DE84D45; Tue, 16 Jan 2018 15:49:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B7F0784D40 for ; Tue, 16 Jan 2018 15:49:49 +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 oFmrys5M9u6p for ; Tue, 16 Jan 2018 15:49:49 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4208B84D3A for ; Tue, 16 Jan 2018 15:49:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BB80EFBDE; Tue, 16 Jan 2018 15:49:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1516117787255720" MIME-Version: 1.0 Date: Tue, 16 Jan 2018 15:49:47 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/graphics/MesaLib To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20180116154947.BB80EFBDE@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. --_----------=_1516117787255720 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Tue Jan 16 15:49:47 UTC 2018 Modified Files: pkgsrc/graphics/MesaLib: distinfo Added Files: pkgsrc/graphics/MesaLib/patches: patch-src_gallium_drivers_nouveau_nouveau__debug.h Log Message: MesaLib: Fix "C++11 requires a space between literal and identifier". To generate a diff of this commit: cvs rdiff -u -r1.120 -r1.121 pkgsrc/graphics/MesaLib/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/graphics/MesaLib/patches/patch-src_gallium_drivers_nouveau_nouveau__debug.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1516117787255720 Content-Disposition: inline Content-Length: 2399 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/MesaLib/distinfo diff -u pkgsrc/graphics/MesaLib/distinfo:1.120 pkgsrc/graphics/MesaLib/distinfo:1.121 --- pkgsrc/graphics/MesaLib/distinfo:1.120 Wed Mar 22 20:22:31 2017 +++ pkgsrc/graphics/MesaLib/distinfo Tue Jan 16 15:49:47 2018 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.120 2017/03/22 20:22:31 markd Exp $ +$NetBSD: distinfo,v 1.121 2018/01/16 15:49:47 jperkin Exp $ SHA1 (mesa-11.2.2.tar.xz) = c3805020be6fef77d3b96a5ddf4ddc256dee16ff RMD160 (mesa-11.2.2.tar.xz) = 14bca7cc76015e53db2fafcebb8540f451be5aab @@ -22,6 +22,7 @@ SHA1 (patch-src_gallium_auxiliary_util_u SHA1 (patch-src_gallium_drivers_llvmpipe_lp__state__fs.c) = b14ca18ae1dc03901b197c86e67052bbb154a81f SHA1 (patch-src_gallium_drivers_llvmpipe_lp__state__setup.c) = 1d6c24bc598da9945ce75c1cc6a2334228d66b41 SHA1 (patch-src_gallium_drivers_nouveau_codegen_nv50__ir__peephole.cpp) = 5fc2ef7eafac3006896af96bac8176c79b17cfdc +SHA1 (patch-src_gallium_drivers_nouveau_nouveau__debug.h) = dd60605a9d89e573ad2cdeb67b11450b0eedeebf SHA1 (patch-src_gallium_drivers_nouveau_nouveau__vp3__video.c) = ae1b6eb4df3e4db0f37e44118cdf69b16f3c471e SHA1 (patch-src_gallium_drivers_nouveau_nv50_nv84__video.c) = 1b4239fe053523835ecac006894bdb0cde0ee626 SHA1 (patch-src_gallium_drivers_r600_r600__llvm.c) = 37ffa4df519df4b7a35b686448e823200d5144ae Added files: Index: pkgsrc/graphics/MesaLib/patches/patch-src_gallium_drivers_nouveau_nouveau__debug.h diff -u /dev/null pkgsrc/graphics/MesaLib/patches/patch-src_gallium_drivers_nouveau_nouveau__debug.h:1.1 --- /dev/null Tue Jan 16 15:49:47 2018 +++ pkgsrc/graphics/MesaLib/patches/patch-src_gallium_drivers_nouveau_nouveau__debug.h Tue Jan 16 15:49:47 2018 @@ -0,0 +1,15 @@ +$NetBSD: patch-src_gallium_drivers_nouveau_nouveau__debug.h,v 1.1 2018/01/16 15:49:47 jperkin Exp $ + +Avoid "C++11 requires a space between literal and identifier" error. + +--- src/gallium/drivers/nouveau/nouveau_debug.h.orig 2016-05-09 12:20:52.000000000 +0000 ++++ src/gallium/drivers/nouveau/nouveau_debug.h +@@ -16,7 +16,7 @@ + #define NOUVEAU_DEBUG 0 + + #define NOUVEAU_ERR(fmt, args...) \ +- fprintf(stderr, "%s:%d - "fmt, __FUNCTION__, __LINE__, ##args) ++ fprintf(stderr, "%s:%d - " fmt, __FUNCTION__, __LINE__, ##args) + + #define NOUVEAU_DBG(ch, args...) \ + if ((NOUVEAU_DEBUG) & (NOUVEAU_DEBUG_##ch)) \ --_----------=_1516117787255720--