Fix a couple of Makefile dependencies - oops
[u/mdw/putty] / README
CommitLineData
b9c299bb 1This is the README for PuTTY, a free Win32 Telnet and SSH client.
2
3The provided Makefile is for MS Visual C++ systems. Type `nmake' to
4build both putty.exe (the main program) and pscp.exe (an SCP
df0b42a5 5client). The comment at the top of the Makefile gives extra build
6options you can use to build in limited Win32s compatibility, a hack
7to pass SSH through some types of firewall, and `official' version
8numbers.
b9c299bb 9
b8c98f3c 10MS Visual Studio version 6 falls over on the nasty macros in ssh.c.
11This is a bug in Visual Studio. The culprit is the /ZI compiler
12option (debug info generation: Edit and Continue). To avoid this
13problem while compiling PuTTY under VS6, you should:
14 - right-click ssh.c in the FileView
15 - click Settings
16 - select the C/C++ tab and the General category
17 - under `Debug info:', select anything _other_ than `Program
18 Database for Edit and Continue'.
19Alternatively disable the /ZI option, replacing it with a saner
20value, such as /Zi.
b9c299bb 21
3d541627 22For other compilers, some alternative Makefiles are provided. These
23Makefiles are generated automatically from the master `Makefile' by
24the Perl script `mkfiles.pl'. Additions and corrections to the
25script are more useful than additions and corrections to the
26alternative Makefiles themselves.
27
b9c299bb 28The PuTTY home web site is
29
30 http://www.chiark.greenend.org.uk/~sgtatham/putty.html
31
32Bug reports and feature requests should be sent to
33<putty-bugs@lists.tartarus.org>. PLEASE read the section on the web
34site about how to report bugs effectively. Do NOT send one-line
35reports saying `it doesn't work'!
36
37See the file LICENCE for the licence conditions.