Fix for `slow-startup-printer': use PRINTER_INFO_4 on NT-class systems, which
[u/mdw/putty] / Recipe
CommitLineData
7603011f 1# -*- makefile -*-
2#
3# This file describes which PuTTY programs are made up from which
4# object and resource files. It is processed into the various
5# Makefiles by means of a Perl script. Makefile changes should
6# really be made by editing this file and/or the Perl script, not
7# by editing the actual Makefiles.
8
9# Help text added to the top of each Makefile, with /D converted
10# into -D as appropriate for the particular Makefile.
11
12!begin help
13#
14# Extra options you can set:
15#
16# - FWHACK=/DFWHACK
17# Enables a hack that tunnels through some firewall proxies.
18#
19# - VER=/DSNAPSHOT=1999-01-25
20# Generates executables whose About box report them as being a
21# development snapshot.
22#
23# - VER=/DRELEASE=0.43
24# Generates executables whose About box report them as being a
25# release version.
26#
27# - COMPAT=/DAUTO_WINSOCK
28# Causes PuTTY to assume that <windows.h> includes its own WinSock
29# header file, so that it won't try to include <winsock.h>.
30#
31# - COMPAT=/DWINSOCK_TWO
32# Causes the PuTTY utilities to include <winsock2.h> instead of
33# <winsock.h>, except Plink which _needs_ WinSock 2 so it already
34# does this.
35#
36# - COMPAT=/DNO_SECURITY
37# Disables Pageant's use of <aclapi.h>, which is not available
7c521ac9 38# with some development environments (such as older versions of
39# the Cygwin/mingw GNU toolchain). This means that Pageant
7603011f 40# won't care about the local user ID of processes accessing it; a
41# version of Pageant built with this option will therefore refuse
42# to run under NT-series OSes on security grounds (although it
43# will run fine on Win95-series OSes where there is no access
44# control anyway).
45#
7603011f 46# - COMPAT=/DNO_MULTIMON
47# Disables PuTTY's use of <multimon.h>, which is not available
48# with some development environments. This means that PuTTY's
49# full-screen mode (configurable to work on Alt-Enter) will
50# not behave usefully in a multi-monitor environment.
51#
52# Note that this definition is always enabled in the Cygwin
53# build, since at the time of writing this <multimon.h> is
54# known not to be available in Cygwin.
55#
56# - COMPAT=/DMSVC4
57# - RCFL=/DMSVC4
58# Makes a couple of minor changes so that PuTTY compiles using
59# MSVC 4. You will also need /DNO_SECURITY and /DNO_MULTIMON.
60#
61# - RCFL=/DASCIICTLS
62# Uses ASCII rather than Unicode to specify the tab control in
63# the resource file. Probably most useful when compiling with
64# Cygnus/mingw32, whose resource compiler may have less of a
65# problem with it.
66#
4044fc45 67# - XFLAGS=/DTELNET_DEFAULT
68# Causes PuTTY to default to the Telnet protocol (in the absence
69# of Default Settings and so on to the contrary). Normally PuTTY
70# will default to SSH.
71#
7603011f 72# - XFLAGS=/DDEBUG
73# Causes PuTTY to enable internal debugging.
74#
75# - XFLAGS=/DMALLOC_LOG
76# Causes PuTTY to emit a file called putty_mem.log, logging every
77# memory allocation and free, so you can track memory leaks.
78#
79# - XFLAGS=/DMINEFIELD
80# Causes PuTTY to use a custom memory allocator, similar in
81# concept to Electric Fence, in place of regular malloc(). Wastes
82# huge amounts of RAM, but should cause heap-corruption bugs to
83# show up as GPFs at the point of failure rather than appearing
84# later on as second-level damage.
85#
86!end
87
88# Definitions of object groups. A group name, followed by an =,
89# followed by any number of objects or other already-defined group
90# names. A line beginning `+' is assumed to continue the previous
91# line.
92
93# GUI front end and terminal emulator (putty, puttytel).
5def7522 94GUITERM = window windlg winctrls terminal sizetip wcwidth unicode ldiscucs
fe8abbf4 95 + logging printing winutils dialog config wincfg tree234
7603011f 96
f5dd8adb 97# Same thing on Unix.
98UXTERM = pterm config uxcfg dialog gtkdlg gtkcols gtkpanel tree234
99 + terminal wcwidth uxucs ldiscucs logging uxprint xkeysym
1d009ae7 100
7603011f 101# Non-SSH back ends (putty, puttytel, plink).
102NONSSH = telnet raw rlogin ldisc
103
104# SSH back end (putty, plink, pscp, psftp).
c5e438ec 105SSH = ssh sshcrc sshdes sshmd5 sshrsa sshrand sshsha sshblowf
106 + sshdh sshcrcda sshpubk sshzlib sshdss x11fwd portfwd
831301f6 107 + sshaes sshsh512 sshbn wildcard
c5e438ec 108WINSSH = SSH noise pageantc
109UXSSH = SSH uxnoise uxagentc
0c4b7799 110MACSSH = SSH macnoise
7603011f 111
112# SFTP implementation (pscp, psftp).
113SFTP = sftp int64 logging
114
115# Miscellaneous objects appearing in all the network utilities (not
116# Pageant or PuTTYgen).
c5e438ec 117WINMISC = misc version winstore settings tree234 winnet proxy cmdline
0f0a2507 118 + windefs winmisc pproxy
0ff9ea38 119UXMISC = misc version uxstore settings tree234 uxsel uxnet proxy cmdline
0f0a2507 120 + uxmisc uxproxy
27a3458f 121MACMISC = misc version macstore settings tree234 macnet mtcpnet otnet proxy
0f0a2507 122 + macmisc macabout pproxy
7603011f 123
2dc6356a 124# Character set library, for use in pterm.
d4413bd2 125CHARSET = sbcsdat slookup sbcs utf8 toucs fromucs xenc mimeenc macenc localenc
2dc6356a 126
7603011f 127# Standard libraries, and the same with WinSocks 1 and 2.
128LIBS = advapi32.lib user32.lib gdi32.lib comctl32.lib comdlg32.lib
129 + shell32.lib winmm.lib imm32.lib winspool.lib
130LIBS1 = LIBS wsock32.lib
131LIBS2 = LIBS ws2_32.lib
132
133# Definitions of actual programs. The program name, followed by a
134# colon, followed by a list of objects. Also in the list may be the
f7f27309 135# keywords [G] for Windows GUI app, [C] for Console app, [X] for
dddf640d 136# X/GTK Unix app, [U] for command-line Unix app, [M] for Macintosh app.
7603011f 137
c5e438ec 138putty : [G] GUITERM NONSSH WINSSH be_all WINMISC win_res.res LIBS1
139puttytel : [G] GUITERM NONSSH be_nossh WINMISC win_res.res LIBS1
140plink : [C] plink console NONSSH WINSSH be_all logging WINMISC
141 + plink.res LIBS2
142pscp : [C] scp console WINSSH be_none SFTP wildcard WINMISC scp.res LIBS1
143psftp : [C] psftp console WINSSH be_none SFTP WINMISC scp.res LIBS1
7603011f 144
145pageant : [G] pageant sshrsa sshpubk sshdes sshbn sshmd5 version tree234
9a30e26b 146 + misc sshaes sshsha pageantc sshdss sshsh512 winutils winmisc
b492c4d7 147 + pageant.res LIBS
7603011f 148
149puttygen : [G] puttygen sshrsag sshdssg sshprime sshdes sshbn sshmd5 version
9a30e26b 150 + sshrand noise sshsha winstore misc winctrls sshrsa sshdss winmisc
fe8abbf4 151 + sshpubk sshaes sshsh512 import winutils puttygen.res tree234 LIBS
f7f27309 152
f5dd8adb 153pterm : [X] UXTERM uxmisc misc ldisc settings pty uxsel be_none uxstore
154 + signal CHARSET cmdline ptermm version
155putty : [X] UXTERM uxmisc misc ldisc settings pty uxsel be_all uxstore
156 + signal CHARSET uxputty NONSSH UXSSH UXMISC ux_x11
157puttytel : [X] UXTERM uxmisc misc ldisc settings pty uxsel be_nossh uxstore
158 + signal CHARSET uxputty NONSSH UXMISC
c5e438ec 159
e0e7dff8 160plink : [U] uxplink uxcons NONSSH UXSSH be_all logging UXMISC signal ux_x11
cd6ca416 161
7dcd1f87 162PuTTY : [M] terminal wcwidth ldiscucs logging be_all mac macdlg macevlog
0c4b7799 163 + macterm macucs mac_res.rsrc testback NONSSH MACSSH MACMISC CHARSET
8a7e67ec 164 + stricmp vsnprint dialog config macctrls
7dcd1f87 165PuTTYtel : [M] terminal wcwidth ldiscucs logging be_nossh mac macdlg macevlog
8485cc75 166 + macterm macucs mac_res.rsrc testback NONSSH MACMISC CHARSET
8a7e67ec 167 + stricmp vsnprint dialog config macctrls
06c24bc0 168PuTTYgen : [M] macpgen sshrsag sshdssg sshprime sshdes sshbn sshmd5 version
169 + sshrand macnoise sshsha macstore misc sshrsa sshdss macmisc sshpubk
217b88d1 170 + sshaes sshsh512 import macpgen.rsrc macpgkey macabout