Update putty to 0.60.
Patch provided by Jukka Salmi in PR 37056. These features are new in beta 0.60 (released 2007-04-29): * Pressing Ctrl+Break now sends a serial break signal. (The previous behaviour can still be obtained with Ctrl+C.) * Serial ports higher than COM9 now no longer need a leading \\.\. * You can now store a host name in the Default Settings. * Bug fix: serial connections and local proxies should no longer crash all the time. * Bug fix: configuring the default connection type to serial should no longer cause the configuration dialog to be skipped on startup. * Bug fix: "Unable to read from standard input" should now not happen, or if it still does it should produce more detailed diagnostics. * Bug fix: fixed some malformed SSH-2 packet generation. * Other minor bug fixes.
This commit is contained in:
parent
f07791f522
commit
47e3e9f2b6
3 changed files with 14 additions and 15 deletions
|
@ -1,9 +1,9 @@
|
|||
# $NetBSD: Makefile,v 1.15 2007/09/07 22:12:22 jlam Exp $
|
||||
# $NetBSD: Makefile,v 1.16 2007/10/13 09:14:16 obache Exp $
|
||||
#
|
||||
|
||||
DISTNAME= putty-0.59
|
||||
DISTNAME= putty-0.60
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= http://the.earth.li/~sgtatham/putty/0.59/
|
||||
MASTER_SITES= http://the.earth.li/~sgtatham/putty/0.60/
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
HOMEPAGE= http://www.chiark.greenend.org.uk/~sgtatham/putty/
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
$NetBSD: distinfo,v 1.6 2007/03/17 16:35:05 rillig Exp $
|
||||
$NetBSD: distinfo,v 1.7 2007/10/13 09:14:16 obache Exp $
|
||||
|
||||
SHA1 (putty-0.59.tar.gz) = 64fcbcd50bc7f204699de415931b3745ceac8c56
|
||||
RMD160 (putty-0.59.tar.gz) = dea0c6b3890760617e26d380e500fcc8b898bbeb
|
||||
Size (putty-0.59.tar.gz) = 1736071 bytes
|
||||
SHA1 (patch-aa) = 3bec8d64a504a887c0ef299aead01c647480313f
|
||||
SHA1 (putty-0.60.tar.gz) = 8d99f8f1077b7ab25f014126b5d812a1ad55ce37
|
||||
RMD160 (putty-0.60.tar.gz) = 9c56ee4d2d05f5b1079c65f19a5d9d06b596aba3
|
||||
Size (putty-0.60.tar.gz) = 1743711 bytes
|
||||
SHA1 (patch-aa) = 4949b10698c445fa16a28a8818c7448959f45135
|
||||
SHA1 (patch-ac) = 61cc8640417931a04152d4f4a1d6daa420d85496
|
||||
SHA1 (patch-ad) = b90f5fc8ebd7bb1227dc18ed93afe104e5e40490
|
||||
SHA1 (patch-ae) = 82bd150f0dfb59eda57e4d9bca7abfc8093090a9
|
||||
|
|
|
@ -1,17 +1,16 @@
|
|||
$NetBSD: patch-aa,v 1.4 2007/03/17 16:35:05 rillig Exp $
|
||||
$NetBSD: patch-aa,v 1.5 2007/10/13 09:14:16 obache Exp $
|
||||
|
||||
--- unix/Makefile.gtk.orig 2007-01-24 21:22:52.000000000 +0100
|
||||
+++ unix/Makefile.gtk 2007-03-17 17:27:25.000000000 +0100
|
||||
@@ -98,14 +98,14 @@
|
||||
--- unix/Makefile.gtk.orig 2007-04-29 13:41:48.000000000 +0200
|
||||
+++ unix/Makefile.gtk 2007-10-03 09:26:39.000000000 +0200
|
||||
@@ -99,14 +99,14 @@
|
||||
# TOOLPATH = /opt/gcc/bin
|
||||
CC = $(TOOLPATH)cc
|
||||
|
||||
-CFLAGS = -O2 -Wall -Werror -g -I.././ -I../charset/ -I../windows/ -I../unix/ \
|
||||
+CFLAGS += -O2 -Wall -Werror -g -I.././ -I../charset/ -I../windows/ -I../unix/ \
|
||||
-I../mac/ -I../macosx/ `gtk-config --cflags` -D _FILE_OFFSET_BITS=64
|
||||
XLDFLAGS = `gtk-config --libs`
|
||||
-ULDFLAGS =#
|
||||
+ULDFLAGS = $(LDFLAGS)
|
||||
XLDFLAGS = $(LDFLAGS) `gtk-config --libs`
|
||||
ULDFLAGS = $(LDFLAGS)
|
||||
INSTALL=install
|
||||
INSTALL_PROGRAM=$(INSTALL)
|
||||
INSTALL_DATA=$(INSTALL)
|
||||
|
|
Loading…
Reference in a new issue