diff options
author | Guido van Rossum <guido@python.org> | 1995-01-04 19:10:35 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-04 19:10:35 (GMT) |
commit | 524b588553afb0759c5be590a7aa41db92dcd2ae (patch) | |
tree | b71384583af38722ebda222f40bb5db5e852285e /Modules/Setup.in | |
parent | b9f8d6e54d72d108648a411174e57779c212871a (diff) | |
download | cpython-524b588553afb0759c5be590a7aa41db92dcd2ae.zip cpython-524b588553afb0759c5be590a7aa41db92dcd2ae.tar.gz cpython-524b588553afb0759c5be590a7aa41db92dcd2ae.tar.bz2 |
Added 1995 to copyright message.
Setup.in: clarified Tk comments somewhat.
structmodule.c: use memcpy() instead of double precision assignment.
Diffstat (limited to 'Modules/Setup.in')
-rw-r--r-- | Modules/Setup.in | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in index 661c775..65c559f 100644 --- a/Modules/Setup.in +++ b/Modules/Setup.in @@ -227,15 +227,22 @@ md5 md5module.c md5c.c #timing timingmodule.c -# Steen Lumholt's tkinter module. For use with plain Tk, use the -# first line. For use with extended Tk, edit tkappinit.c, add -# appropriate -DWITH_... and libraries/objects to the second line, and -# use that. In all cases also enable the last line (TKPATH). +# Steen Lumholt's tkinter module. +# +# For use with plain Tk, use the first line. +# +# For use with extended Tk (i.e. if you have added extra widgets to +# the Tk library, such as the common "studButton" and "triButton" +# extensions), edit tkappinit.c, add appropriate -DWITH_... and +# libraries/objects to the second line, and use that. +# +# In all cases also enable the last line (TKPATH). # *** Use ONE of the following two lines, see previous comments *** #tkinter tkintermodule.c -I/usr/local/include -L/usr/local/lib -ltk -ltcl -lX11 #tkinter tkintermodule.c tkappinit.c -DWITH_APPINIT -I/usr/local/include -L/usr/local/lib -ltk -ltcl -lX11 +# *** ALWAYS use this line as well *** #TKPATH=:$(DESTLIB)/tkinter |