-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update uudeview and friends to 0.5.20. Fixes a few serious bugs in uu…
…lib, including buffer overrun errors, and adds a handful of little improvements to the library and programs.
- Loading branch information
fredb
committed
Apr 8, 2004
1 parent
918a2dc
commit f0f2218
Showing
9 changed files
with
51 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
$NetBSD: distinfo,v 1.5 2002/08/31 16:54:34 wiz Exp $ | ||
$NetBSD: distinfo,v 1.6 2004/04/08 01:03:33 fredb Exp $ | ||
|
||
SHA1 (uudeview-0.5.18.tar.gz) = 357c6adc20ef247c0a7745c42318230e90b16790 | ||
Size (uudeview-0.5.18.tar.gz) = 260889 bytes | ||
SHA1 (uudeview-0.5.20.tar.gz) = 2c6ab7d355b545218bd0877d598bd5327d9fd125 | ||
Size (uudeview-0.5.20.tar.gz) = 261574 bytes | ||
SHA1 (patch-aa) = bf7e281b7e0e2ceae6bc8c19c9e64cdb7d5a9d64 | ||
SHA1 (patch-ab) = bdd62a84d0f62c697dd4440df861c343ffeb683a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
$NetBSD: distinfo,v 1.5 2002/08/31 16:54:33 wiz Exp $ | ||
$NetBSD: distinfo,v 1.6 2004/04/08 01:03:33 fredb Exp $ | ||
|
||
SHA1 (uudeview-0.5.18.tar.gz) = 357c6adc20ef247c0a7745c42318230e90b16790 | ||
Size (uudeview-0.5.18.tar.gz) = 260889 bytes | ||
SHA1 (uudeview-0.5.20.tar.gz) = 2c6ab7d355b545218bd0877d598bd5327d9fd125 | ||
Size (uudeview-0.5.20.tar.gz) = 261574 bytes | ||
SHA1 (patch-aa) = 2a60a00bb2bc4078063d285df65a5d4b906582c5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
$NetBSD: distinfo,v 1.5 2002/08/31 16:54:34 wiz Exp $ | ||
$NetBSD: distinfo,v 1.6 2004/04/08 01:03:34 fredb Exp $ | ||
|
||
SHA1 (uudeview-0.5.18.tar.gz) = 357c6adc20ef247c0a7745c42318230e90b16790 | ||
Size (uudeview-0.5.18.tar.gz) = 260889 bytes | ||
SHA1 (uudeview-0.5.20.tar.gz) = 2c6ab7d355b545218bd0877d598bd5327d9fd125 | ||
Size (uudeview-0.5.20.tar.gz) = 261574 bytes | ||
SHA1 (patch-ab) = dea2e56b811327e61264627852e1b6bb1eb6a643 | ||
SHA1 (patch-ac) = 57e2b11157b47abfdc2a2f71444feb42e8c012eb | ||
SHA1 (patch-ad) = a3e0892498aa0db7c3271824b44bce7bf725aee8 | ||
SHA1 (patch-ae) = fb89ccadfcc3cf9a9ef0addfa29def0a2924a673 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
$NetBSD: patch-ad,v 1.4 2004/04/08 01:03:34 fredb Exp $ | ||
|
||
--- configure.in.orig 2004-03-01 17:06:18.000000000 -0600 | ||
+++ configure.in | ||
@@ -275,8 +275,8 @@ fi | ||
if test "x$have_tk" != "xno" ; then | ||
tklibflag=`eval echo $TK_LIB_FLAG` | ||
TCL_CPPFLAGS="-I$tk_h_dir $TK_XINCLUDES $TCL_CPPFLAGS" | ||
- TCL_LDFLAGS="-L$tk_lib_dir $TCL_LDFLAGS" | ||
- TCL_LIBS="$tklibflag $TCL_LIBS" | ||
+ TCL_LDFLAGS="$TK_LIB_SPEC $TCL_LDFLAGS" | ||
+ TCL_LIBS="$tklibflag $TCL_LIBS $TK_LIBS" | ||
AC_DEFINE(HAVE_TK) | ||
fi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
$NetBSD: patch-ae,v 1.1 2004/04/08 01:03:34 fredb Exp $ | ||
|
||
--- configure.orig 2004-03-01 17:06:18.000000000 -0600 | ||
+++ configure | ||
@@ -1422,8 +1422,8 @@ fi | ||
if test "x$have_tk" != "xno" ; then | ||
tklibflag=`eval echo $TK_LIB_FLAG` | ||
TCL_CPPFLAGS="-I$tk_h_dir $TK_XINCLUDES $TCL_CPPFLAGS" | ||
- TCL_LDFLAGS="-L$tk_lib_dir $TCL_LDFLAGS" | ||
- TCL_LIBS="$tklibflag $TCL_LIBS" | ||
+ TCL_LDFLAGS="$TK_LIB_SPEC $TCL_LDFLAGS" | ||
+ TCL_LIBS="$tklibflag $TCL_LIBS $TK_LIBS" | ||
cat >> confdefs.h <<\EOF | ||
#define HAVE_TK 1 | ||
EOF |