summaryrefslogtreecommitdiff
path: root/filesystems
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2020-05-20 06:09:03 +0000
committerrillig <rillig@pkgsrc.org>2020-05-20 06:09:03 +0000
commite67afe214b2f562c8ef976023915ce7b2b010f08 (patch)
tree8bc9014eb0b670d92e8e9c47b03b37496a61c767 /filesystems
parent96ab5fbe38d2155394682ee895e27fecfaf99b75 (diff)
downloadpkgsrc-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 'filesystems')
-rw-r--r--filesystems/fuse-afpfs-ng/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/filesystems/fuse-afpfs-ng/Makefile b/filesystems/fuse-afpfs-ng/Makefile
index d30e8d2c533..7845f3791e2 100644
--- a/filesystems/fuse-afpfs-ng/Makefile
+++ b/filesystems/fuse-afpfs-ng/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.15 2019/06/22 11:52:31 nia Exp $
+# $NetBSD: Makefile,v 1.16 2020/05/20 06:09:04 rillig Exp $
DISTNAME= afpfs-ng-0.8.1
PKGNAME= fuse-${DISTNAME}
@@ -29,6 +29,13 @@ SUBST_SED.termcap+= -e 's|ncurses||'
SUBST_SED.termcap+= -e 's|ncurses|${BUILDLINK_LIBNAME.termcap}|'
.endif
+# debug.c: In function 'afp_get_command_name':
+# debug.c:62:33: error: array subscript has type 'char' [-Werror=char-subscripts]
+# return afp_command_names[code];
+# ^
+# Maybe fix this later.
+BUILDLINK_TRANSFORM+= rm:-Werror=char-subscripts
+
.include "../../devel/gmp/buildlink3.mk"
.include "../../security/libgpg-error/buildlink3.mk"
.include "../../security/libgcrypt/buildlink3.mk"