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 /net | |
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 'net')
-rw-r--r-- | net/openag/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/net/openag/Makefile b/net/openag/Makefile index 3e1b39c3c1c..80eb3862f04 100644 --- a/net/openag/Makefile +++ b/net/openag/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2019/11/03 11:45:46 rillig Exp $ +# $NetBSD: Makefile,v 1.16 2020/05/20 06:09:07 rillig Exp $ # DISTNAME= OpenAG-1.1.1 @@ -18,6 +18,13 @@ USE_TOOLS+= wget:run CONFIGURE_ENV+= WGET=wget +# mp3info/mp3info.cpp: In function 'long int get_length(mp3_file_info*, FILE*, long int)': +# mp3info/mp3info.cpp:436:52: error: array subscript has type 'char' [-Werror=char-subscripts] +# sample_rate = samples_rates_frequencies[mpeg_v][((scan2&0x0c) >> 2)]; +# ^ +# Maybe fix this later. +BUILDLINK_TRANSFORM+= rm:-Werror=char-subscripts + .include "../../devel/zlib/buildlink3.mk" INSTALLATION_DIRS+= share/doc/OpenAG |