README 1.6 KB

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