Received: by mail.netbsd.org (Postfix, from userid 605) id 557BB84DCC; Fri, 8 Sep 2017 22:28:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DD3C284CE3 for ; Fri, 8 Sep 2017 22:28:15 +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 cdrsdNm4SdUF for ; Fri, 8 Sep 2017 22:28:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6D70C84CE1 for ; Fri, 8 Sep 2017 22:28:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6B761FA97; Fri, 8 Sep 2017 22:28:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1504909695223800" MIME-Version: 1.0 Date: Fri, 8 Sep 2017 22:28:15 +0000 From: "Kamil Rytarowski" Subject: CVS commit: pkgsrc/graphics/cogl To: pkgsrc-changes@NetBSD.org Reply-To: kamil@netbsd.org X-Mailer: log_accum Message-Id: <20170908222815.6B761FA97@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. --_----------=_1504909695223800 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: kamil Date: Fri Sep 8 22:28:15 UTC 2017 Modified Files: pkgsrc/graphics/cogl: distinfo Added Files: pkgsrc/graphics/cogl/patches: patch-tests_conform_test-backface-culling.c Log Message: coql: Fix build with GCC 5.4.0 on NetBSD Silent maybe-unitialized warning made fatal with -Werror. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/graphics/cogl/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/graphics/cogl/patches/patch-tests_conform_test-backface-culling.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1504909695223800 Content-Disposition: inline Content-Length: 1915 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/cogl/distinfo diff -u pkgsrc/graphics/cogl/distinfo:1.13 pkgsrc/graphics/cogl/distinfo:1.14 --- pkgsrc/graphics/cogl/distinfo:1.13 Wed Nov 4 17:41:19 2015 +++ pkgsrc/graphics/cogl/distinfo Fri Sep 8 22:28:15 2017 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.13 2015/11/04 17:41:19 agc Exp $ +$NetBSD: distinfo,v 1.14 2017/09/08 22:28:15 kamil Exp $ SHA1 (cogl-1.22.0.tar.xz) = 30bef68b5ccffb06df033c5f3f9758ef3e48dc01 RMD160 (cogl-1.22.0.tar.xz) = 26ae4ec92f142902998343dfe8b93ab4ef00f7d3 @@ -7,3 +7,4 @@ Size (cogl-1.22.0.tar.xz) = 1654120 byte SHA1 (patch-cogl-winsys-cogl-winsys-glx.c) = 52be226fb3c62a3275ebec470597937e0b017f96 SHA1 (patch-cogl_driver_gl_gl_cogl-driver-gl.c) = 41d0010a6e2a6a1fb03b6fb23f34db59cb867e14 SHA1 (patch-configure) = aee31057c06af64ec04bcd1b5750ed9a62658661 +SHA1 (patch-tests_conform_test-backface-culling.c) = e5141784424aed0f9a9e59b2a32e375d1a41e73b Added files: Index: pkgsrc/graphics/cogl/patches/patch-tests_conform_test-backface-culling.c diff -u /dev/null pkgsrc/graphics/cogl/patches/patch-tests_conform_test-backface-culling.c:1.1 --- /dev/null Fri Sep 8 22:28:15 2017 +++ pkgsrc/graphics/cogl/patches/patch-tests_conform_test-backface-culling.c Fri Sep 8 22:28:15 2017 @@ -0,0 +1,18 @@ +$NetBSD: patch-tests_conform_test-backface-culling.c,v 1.1 2017/09/08 22:28:15 kamil Exp $ + +--- tests/conform/test-backface-culling.c.orig 2015-04-29 16:27:56.000000000 +0000 ++++ tests/conform/test-backface-culling.c +@@ -164,7 +164,7 @@ validate_result (CoglFramebuffer *frameb + + for (draw_num = 0; draw_num < 16; draw_num++) + { +- CoglBool cull_front, cull_back; ++ CoglBool cull_front = FALSE, cull_back = FALSE; + CoglPipelineCullFaceMode cull_mode; + + if (USE_LEGACY_STATE (draw_num)) +@@ -308,4 +308,3 @@ test_backface_culling (void) + if (cogl_test_verbose ()) + g_print ("OK\n"); + } +- --_----------=_1504909695223800--