mirror of git://git.tartarus.org/simon/putty.git, used for client testing
Перейти к файлу
Simon Tatham 7aa84c296f Let's spell '\t' as VK_TAB in that last patch, in fact, just in case
[originally from svn r409]
2000-03-13 15:04:07 +00:00
.cvsignore Cause irritating ? markers in cvs update/commit to disappear 1999-02-10 11:13:28 +00:00
LICENCE New DES implementation, replacing Eric Young's. All of PuTTY is now 2000-03-10 17:27:20 +00:00
MODULE Module description file added 1999-08-10 16:04:43 +00:00
Makefile Fix problems with resource compilation Makefile lines 2000-01-19 12:16:19 +00:00
README Add multi-makefile management system 1999-12-13 17:21:42 +00:00
ldisc.c Robert de Bath's patch: ^C ^Z and ^D send Telnet specials in terminal line 2000-03-11 14:03:04 +00:00
misc.c Remove buffering on malloc log file 1999-01-15 11:27:36 +00:00
mkfiles.pl Borland makefile should now work sanely with the free-beer bcc55 2000-03-08 09:41:17 +00:00
noise.c Can now build with /DWIN32S_COMPAT to work (minimally) with Win32s 1999-11-04 11:26:07 +00:00
putty.h Robert de Bath's patch: integrate line disciplines into Telnet and have them 2000-03-11 14:06:11 +00:00
putty.ico Initial checkin: beta 0.43 1999-01-08 13:02:13 +00:00
raw.c Fix some picky compiler warnings kindly provided by Borland C++ 5.5 2000-03-08 10:21:13 +00:00
resource.h Initial checkin: beta 0.43 1999-01-08 13:02:13 +00:00
scp.c Fix some picky compiler warnings kindly provided by Borland C++ 5.5 2000-03-08 10:21:13 +00:00
scp.h Added Joris van Rantwijk's scp client 1999-08-31 09:20:48 +00:00
scp.ico Added Joris van Rantwijk's scp client 1999-08-31 09:20:48 +00:00
scp.rc Added Joris van Rantwijk's scp client 1999-08-31 09:20:48 +00:00
scpssh.c Fix some picky compiler warnings kindly provided by Borland C++ 5.5 2000-03-08 10:21:13 +00:00
sizetip.c Cleanups to remove warnings for GNU/mingw32 compilation 1999-11-22 10:07:24 +00:00
ssh.c Robert de Bath's multi-purpose patch, slightly modified. 1999-11-30 10:52:07 +00:00
ssh.h New CRC32 implementation, from scratch, not copyrighted by somebody else! 2000-03-08 16:13:32 +00:00
sshblowf.c Changes from executor: 1999-11-09 11:10:04 +00:00
sshcrc.c New CRC32 implementation, from scratch, not copyrighted by somebody else! 2000-03-08 16:13:32 +00:00
sshdes.c Added a large comment describing the transformations between the DES 2000-03-11 11:06:06 +00:00
sshmd5.c Initial checkin: beta 0.43 1999-01-08 13:02:13 +00:00
sshrand.c Small but highly unhelpful typo 1999-08-11 08:50:36 +00:00
sshrsa.c Fix some picky compiler warnings kindly provided by Borland C++ 5.5 2000-03-08 10:21:13 +00:00
sshsha.c Replace SHA implementation with homegrown one 1999-12-03 11:32:50 +00:00
telnet.c Robert de Bath's patch: when the user presses CR, the Telnet backend 2000-03-11 14:25:35 +00:00
terminal.c Robert de Bath's patch: ARG_DEFAULT is now zero because it's 2000-03-11 14:16:55 +00:00
version.c Added automatic version distinguishing code, to differentiate releases 1999-02-09 15:18:34 +00:00
win_res.h Add ISO-8859-2 / Win-1250 char set translation 1999-11-17 10:44:43 +00:00
win_res.rc New DES implementation, replacing Eric Young's. All of PuTTY is now 2000-03-10 17:27:20 +00:00
windlg.c Cleanups to remove warnings for GNU/mingw32 compilation 1999-11-22 10:07:24 +00:00
window.c Let's spell '\t' as VK_TAB in that last patch, in fact, just in case 2000-03-13 15:04:07 +00:00
xlat.c Add ISO-8859-2 / Win-1250 char set translation 1999-11-17 10:44:43 +00:00

README

This is the README for PuTTY, a free Win32 Telnet and SSH client.

The provided Makefile is for MS Visual C++ systems. Type `nmake' to
build both putty.exe (the main program) and pscp.exe (an SCP
client). The comment at the top of the Makefile gives extra build
options you can use to build in limited Win32s compatibility, a hack
to pass SSH through some types of firewall, and `official' version
numbers.

MS Visual Studio version 6 falls over on the nasty macros in ssh.c.
This is a bug in Visual Studio. The culprit is the /ZI compiler
option (debug info generation: Edit and Continue). To avoid this
problem while compiling PuTTY under VS6, you should:
 - right-click ssh.c in the FileView
 - click Settings
 - select the C/C++ tab and the General category
 - under `Debug info:', select anything _other_ than `Program
   Database for Edit and Continue'.
Alternatively disable the /ZI option, replacing it with a saner
value, such as /Zi.

For other compilers, some alternative Makefiles are provided. These
Makefiles are generated automatically from the master `Makefile' by
the Perl script `mkfiles.pl'. Additions and corrections to the
script are more useful than additions and corrections to the
alternative Makefiles themselves.

The PuTTY home web site is

    http://www.chiark.greenend.org.uk/~sgtatham/putty.html

Bug reports and feature requests should be sent to
<putty-bugs@lists.tartarus.org>. PLEASE read the section on the web
site about how to report bugs effectively. Do NOT send one-line
reports saying `it doesn't work'!

See the file LICENCE for the licence conditions.