diff options
author | fredb <fredb> | 2001-12-31 19:31:07 +0000 |
---|---|---|
committer | fredb <fredb> | 2001-12-31 19:31:07 +0000 |
commit | 6c071f2276112e79aeb3bd75705f47d92a0f822b (patch) | |
tree | 4175689e8adb84c65cc6f0ef065a518dd6847efd /www/lynx/Makefile | |
parent | 9ca984cee5512267ba0126ab998b16a779b21806 (diff) | |
download | pkgsrc-6c071f2276112e79aeb3bd75705f47d92a0f822b.tar.gz |
Update package to 2.8.4rel.1b (2.8.4.1.2), which is the second patch release
to 2.8.4rel.1. A complete summary of changes follows.
extracted from 2001-10-06 (2.8.5dev.3)
* modify LYtouchline() to avoid using wredrawln() for ncurses, since the
LYwin variable may be a pad much wider than the screen, which is not handled
properly (report by Karl Eichwalder <keichwa@gmx.net>) -TD
* correct beginning configure script, which was supposed to remove
config.cache, but did not, due to a misplaced line when it was added
1998-06-04 (prompted by a report by Fr3dY <fr3dy@retemail.es> that the
checks for srand/rand did not work) -TD
extracted from 2001-08-15 (2.8.5dev.2)
* work around defect in move_anchors_in_region() and related logic by changing
default for nested-tables to FALSE when Lynx is not configured for
color-style. The problem is that when an anchor is shifted right by
nested-table logic, if it has a <BR> near the beginning of a table cell and
it happens to be split across a line, its size will not be adjusted properly
(report by Hataguchi Takeshi) -TD
* correct logic used for trimming TEXTAREA introduced in 2.8.4pre.3, which did
not trim carriage-return characters if TRIM_INPUT_FIELDS was false.
(report by Hataguchi Takeshi <patakuti@t3.rim.or.jp>) -TD
* correct a bug in search logic which happens with pages shorter than the
screen, due to improper starting-line value sent to search function. Fixed
by adding checks in www_search_backward() and www_search_foreward(), (report
by -Frederic L W Meunier) -TD
extracted from 2001-07-24 (2.8.5dev.1)
* modify GetChar() definition for PDCurses to ignore key-modifiers which are
passed back from getch() as if they were key codes. Those interfere with
shifted commands such as 'Q' -TD
* modify parse_style() function to operate on a copy of its parameter, to avoid
changing it. Otherwise, when parse_style() is executed as a side effect of
start_curses(), its data is modified and not valid on successive calls.
This bug existed prior to 2.8.4dev.17 -TD
* set return value of edit_current_file() to true if the file is edited. This
forces a reload for example if one edits the current html file, and is needed
to make PDCurses repaint the screen as well (report by vtailor@gte.net,
bug introduced in 2.8.4dev.21) -TD
* add ifdef for wresize() to accommodate FreeBSD 3.x which has resizeterm() but
not wresize(). Also, use a 'long' rather than 'attr_t'. These changes are
needed to build with the 1.8.6ache patches to ncurses (report by Matt
<matt@greenviolet.net>) -TD
Diffstat (limited to 'www/lynx/Makefile')
-rw-r--r-- | www/lynx/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/www/lynx/Makefile b/www/lynx/Makefile index ac3bee1f711..69c7d690536 100644 --- a/www/lynx/Makefile +++ b/www/lynx/Makefile @@ -1,13 +1,17 @@ -# $NetBSD: Makefile,v 1.45 2001/12/28 07:38:56 jlam Exp $ +# $NetBSD: Makefile,v 1.46 2001/12/31 19:31:07 fredb Exp $ # DISTNAME= lynx2.8.4rel.1 -PKGNAME= lynx-2.8.4.1 +PKGNAME= lynx-2.8.4.1.2 CATEGORIES= www MASTER_SITES= http://lynx.isc.org/release/ \ ftp://lynx.isc.org/lynx/ EXTRACT_SUFX= .tar.bz2 +PATCH_SITES= http://lynx.isc.org/lynx2.8.4/patches/ \ + ftp://lynx.isc.org/lynx/lynx2.8.4/patches/ +PATCHFILES= lynx2.8.4rel.1a.patch lynx2.8.4rel.1b.patch + MAINTAINER= fredb@netbsd.org HOMEPAGE= http://lynx.browser.org/ COMMENT= Alphanumeric display oriented World-Wide Web Client |