diff options
author | obache <obache@pkgsrc.org> | 2010-05-26 01:32:33 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2010-05-26 01:32:33 +0000 |
commit | c11624e16fa86b55e8aa98aa5ca6cfe606995d5e (patch) | |
tree | 4ab4fedacb66cc81a9c907c8ebd8fcd4d14aaeb8 /www/lynx/patches | |
parent | f31416c7683d5950dab8eebcf4dde08b837b0d80 (diff) | |
download | pkgsrc-c11624e16fa86b55e8aa98aa5ca6cfe606995d5e.tar.gz |
Fixes Bus error with --restrictions option. PR#43340.
(sent and confirmed by upstream).
Diffstat (limited to 'www/lynx/patches')
-rw-r--r-- | www/lynx/patches/patch-ac | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/www/lynx/patches/patch-ac b/www/lynx/patches/patch-ac index f78ed79acd4..2012920c108 100644 --- a/www/lynx/patches/patch-ac +++ b/www/lynx/patches/patch-ac @@ -1,10 +1,13 @@ -$NetBSD: patch-ac,v 1.3 2009/08/09 08:20:27 wiz Exp $ +$NetBSD: patch-ac,v 1.4 2010/05/26 01:32:33 obache Exp $ +* fixes build failure: LYMain.c: In function 'SetLocale': LYMain.c:941: error: 'LC_ALL' undeclared (first use in this function) LYMain.c:941: error: (Each undeclared identifier is reported only once LYMain.c:941: error: for each function it appears in.) +* fixes PR#43340 + --- src/LYMain.c.orig 2009-07-05 23:52:33.000000000 +0000 +++ src/LYMain.c @@ -57,7 +57,7 @@ @@ -16,3 +19,12 @@ LYMain.c:941: error: for each function it appears in.) #undef gettext /* Solaris locale.h prototypes gettext() */ #include <locale.h> #ifndef HAVE_GETTEXT +@@ -3079,7 +3079,7 @@ G)oto's" }, + if (first) { + printf("Other restrictions (see the user's guide):\n"); + } +- value = show_restriction(table[j].name); ++ value = show_restriction(name); + printf("%s%s (%s)", column ? ", " : " ", name, value); + column += 5 + strlen(name) + strlen(value); + if (column > 50) { |