summaryrefslogtreecommitdiff
path: root/www/lynx/patches
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2014-03-12 10:13:15 +0000
committerwiz <wiz@pkgsrc.org>2014-03-12 10:13:15 +0000
commit79161b2156a37e8d7f121e7276d75438105bb038 (patch)
tree8b754f439ffed36563976e7959b3b3210801f389 /www/lynx/patches
parent1e0eee3c7c166e5e3536486094ff6e3f1bb8cade (diff)
downloadpkgsrc-79161b2156a37e8d7f121e7276d75438105bb038.tar.gz
Update to 2.8.8rel2:
2014-03-09 (2.8.8rel.2) * correct errata in test-files which cause broken links in break-out directory in lynx.isc.org server -TD * amend change from 2.8.8pre.2, to ensure that MinGW libraries already declaring 'sleep()' will build -TD * drop unused save/compress rules from makefile.in, because fixing umask for these is pointless -TD * modify makefile.in to establish sane umask value in the "install-doc" rule (report by Rajeev V Pillai) -TD * build-fix for NetBSD, whose curses library provides use_default_colors(), but the package turns off the keymap feature (patch by Thomas Klausner).
Diffstat (limited to 'www/lynx/patches')
-rw-r--r--www/lynx/patches/patch-src_LYCurses.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/www/lynx/patches/patch-src_LYCurses.c b/www/lynx/patches/patch-src_LYCurses.c
deleted file mode 100644
index 0cf448bd38c..00000000000
--- a/www/lynx/patches/patch-src_LYCurses.c
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD: patch-src_LYCurses.c,v 1.1 2014/02/20 10:07:35 wiz Exp $
-
-Fix build without keymaps support.
-
---- src/LYCurses.c.orig 2013-11-29 00:52:56.000000000 +0000
-+++ src/LYCurses.c
-@@ -1180,10 +1180,12 @@ void restart_curses(void)
- keypad(LYwin, TRUE);
- lynx_enable_mouse(1);
-
-+#if defined(USE_KEYMAPS)
- if (-1 == lynx_initialize_keymaps()) {
- endwin();
- exit_immediately(EXIT_FAILURE);
- }
-+#endif
- if (has_colors()) {
- start_color();
- }