summaryrefslogtreecommitdiff
path: root/www/lynx-current/patches
diff options
context:
space:
mode:
authorblymn <blymn>2002-08-21 12:01:04 +0000
committerblymn <blymn>2002-08-21 12:01:04 +0000
commit50ea764ebd5f4825e5db945dd53abe1f3be2b8ea (patch)
treea764e606600084b5091232017ce5f2e7f02a0d9e /www/lynx-current/patches
parentb09052e75b89410cd13ddcc7b474f1f4d9b2c2c9 (diff)
downloadpkgsrc-50ea764ebd5f4825e5db945dd53abe1f3be2b8ea.tar.gz
Patched lynx to make sure endwin() is called on exit.
Diffstat (limited to 'www/lynx-current/patches')
-rw-r--r--www/lynx-current/patches/patch-ab23
1 files changed, 23 insertions, 0 deletions
diff --git a/www/lynx-current/patches/patch-ab b/www/lynx-current/patches/patch-ab
new file mode 100644
index 00000000000..418ef218bfa
--- /dev/null
+++ b/www/lynx-current/patches/patch-ab
@@ -0,0 +1,23 @@
+$NetBSD: patch-ab,v 1.3 2002/08/21 12:01:04 blymn Exp $
+
+--- src/LYCurses.c.orig Wed Aug 21 21:16:48 2002
++++ src/LYCurses.c
+@@ -564,9 +564,7 @@ PUBLIC void curses_style ARGS2(
+ }
+ #endif /* USE_COLOR_STYLE */
+
+-#ifndef USE_SLANG
+ PRIVATE BOOL lynx_called_initscr = FALSE;
+-#endif
+
+ #if defined(HAVE_USE_DEFAULT_COLORS) && defined(USE_DEFAULT_COLORS)
+ /*
+@@ -1274,7 +1272,7 @@ PUBLIC void stop_curses NOARGS
+ lynx_nl2crlf(TRUE);
+ lynx_enable_mouse (0);
+ #if (!defined(WIN_EX) || defined(__CYGWIN__)) /* @@@ */
+- if(LYscreen) {
++ if(LYscreen || lynx_called_initscr) {
+ endwin(); /* stop curses */
+ LYDELSCR();
+ }