pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/textproc/ja-groff textproc/ja-groff: fix -Wchar-subscr...
details: https://anonhg.NetBSD.org/pkgsrc/rev/4f62f9f42c15
branches: trunk
changeset: 426141:4f62f9f42c15
user: rillig <rillig%pkgsrc.org@localhost>
date: Thu Mar 26 21:09:20 2020 +0000
description:
textproc/ja-groff: fix -Wchar-subscripts
diffstat:
textproc/ja-groff/distinfo | 4 ++--
textproc/ja-groff/patches/patch-ao | 32 +++++++++++++++++++++++++++++++-
2 files changed, 33 insertions(+), 3 deletions(-)
diffs (60 lines):
diff -r 1993e55f52e4 -r 4f62f9f42c15 textproc/ja-groff/distinfo
--- a/textproc/ja-groff/distinfo Thu Mar 26 20:05:29 2020 +0000
+++ b/textproc/ja-groff/distinfo Thu Mar 26 21:09:20 2020 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.6 2015/11/04 01:59:37 agc Exp $
+$NetBSD: distinfo,v 1.7 2020/03/26 21:09:20 rillig Exp $
SHA1 (groff-1.10.tar.gz) = 032eeb221aff1a621019374646819e8741c11d39
RMD160 (groff-1.10.tar.gz) = 3dafd992282ef8bf1b71d908acc45ede575b177f
@@ -22,7 +22,7 @@
SHA1 (patch-al) = 63c383ec386657aff1d84e01dee1843d7f94109b
SHA1 (patch-am) = 4d0a6a4e76691d2baa17e7a0784659668977a9a6
SHA1 (patch-an) = 3af3af89d799d968d64cfa8ba89f6b549db17bdb
-SHA1 (patch-ao) = 0e209fb57d849ac670ad2a635b7b78114203e705
+SHA1 (patch-ao) = c4a097f9e3d8af3ac9cbd18438c54674a0ed3564
SHA1 (patch-ap) = 54949929ca91fcfb090c2d570d754d347a1923fd
SHA1 (patch-aq) = 6ba046f7ce8d7c9de57420558801b32768dd9792
SHA1 (patch-ar) = cddbf3b845ae009e0786d23b777724b8e1ff9a87
diff -r 1993e55f52e4 -r 4f62f9f42c15 textproc/ja-groff/patches/patch-ao
--- a/textproc/ja-groff/patches/patch-ao Thu Mar 26 20:05:29 2020 +0000
+++ b/textproc/ja-groff/patches/patch-ao Thu Mar 26 21:09:20 2020 +0000
@@ -1,7 +1,37 @@
-$NetBSD: patch-ao,v 1.1 2006/03/21 17:30:00 yyamano Exp $
+$NetBSD: patch-ao,v 1.2 2020/03/26 21:09:20 rillig Exp $
+
+tfmtodit.cc: In member function 'int tfm::get_height(int)':
+tfmtodit.cc:212:47: error: array subscript has type 'char' [-Werror=char-subscripts]
+ return height[char_info[i - bc].height_index];
+ ^
+tfmtodit.cc: In member function 'int tfm::get_depth(int)':
+tfmtodit.cc:217:45: error: array subscript has type 'char' [-Werror=char-subscripts]
+ return depth[char_info[i - bc].depth_index];
+ ^
+tfmtodit.cc: In member function 'int tfm::get_italic(int)':
+tfmtodit.cc:222:47: error: array subscript has type 'char' [-Werror=char-subscripts]
+ return italic[char_info[i - bc].italic_index];
+ ^
+
+The above errors are harmless, but it's too hard to prove for the
+compiler. These variables were always initialized from an unsigned char,
+shifted right by a few positions.
--- tfmtodit/tfmtodit.cc.orig 2006-03-22 01:56:43.000000000 +0900
+++ tfmtodit/tfmtodit.cc
+@@ -67,9 +67,9 @@ both be zero. */
+
+ struct char_info_word {
+ unsigned char width_index;
+- char height_index;
+- char depth_index;
+- char italic_index;
++ unsigned char height_index;
++ unsigned char depth_index;
++ unsigned char italic_index;
+ char tag;
+ unsigned char remainder;
+ };
@@ -651,7 +651,7 @@ lig_chars table. `ch' gives the full-nam
gives the groff name of the character, `i' gives its index in
the encoding, which is filled in later (-1 if it does not appear). */
Home |
Main Index |
Thread Index |
Old Index