diff options
author | rillig <rillig@pkgsrc.org> | 2020-05-20 06:09:03 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2020-05-20 06:09:03 +0000 |
commit | e67afe214b2f562c8ef976023915ce7b2b010f08 (patch) | |
tree | 8bc9014eb0b670d92e8e9c47b03b37496a61c767 /cad/veriwell | |
parent | 96ab5fbe38d2155394682ee895e27fecfaf99b75 (diff) | |
download | pkgsrc-e67afe214b2f562c8ef976023915ce7b2b010f08.tar.gz |
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".
Diffstat (limited to 'cad/veriwell')
-rw-r--r-- | cad/veriwell/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
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" |