From e67afe214b2f562c8ef976023915ce7b2b010f08 Mon Sep 17 00:00:00 2001 From: rillig Date: Wed, 20 May 2020 06:09:03 +0000 Subject: mark packages that fail with -Werror=char-subscripts These packages are susceptible to bugs when confronted with non-ASCII characters. See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94182. It takes some time to analyze and fix these individually, therefore they are only marked as "needs work". --- cad/veriwell/Makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'cad/veriwell') diff --git a/cad/veriwell/Makefile b/cad/veriwell/Makefile index 0534e0db988..276728b2f77 100644 --- a/cad/veriwell/Makefile +++ b/cad/veriwell/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2020/03/18 17:45:25 joerg Exp $ +# $NetBSD: Makefile,v 1.3 2020/05/20 06:09:09 rillig Exp $ DISTNAME= veriwell-2.8.7 CATEGORIES= cad @@ -14,5 +14,14 @@ USE_LANGUAGES= c c++03 TEST_TARGET= check +# parse.yy:2253:57: error: array subscript has type 'char' [-Werror=char-subscripts] +# parse.yy:2253:85: error: array subscript has type 'char' [-Werror=char-subscripts] +# $$ = edge_mask[$1[0]][$1[1]]; +# parse.yy:2258:79: error: array subscript has type 'char' [-Werror=char-subscripts] +# parse.yy:2258:108: error: array subscript has type 'char' [-Werror=char-subscripts] +# $$ = $3 | edge_mask[$1[0]][$1[1]]; +# Maybe fix this later. +BUILDLINK_TRANSFORM+= rm:-Werror=char-subscripts + .include "../../devel/zlib/buildlink3.mk" .include "../../mk/bsd.pkg.mk" -- cgit v1.2.3