diff options
author | Guido van Rossum <guido@python.org> | 1995-02-14 09:43:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-02-14 09:43:25 (GMT) |
commit | d4837daa8d637699967fb35e9922ac11ffeb3c74 (patch) | |
tree | 1a93fcc95463a9ee2b5e0b19a067bc14820f3d59 /Modules/Setup.in | |
parent | 24c137432c0f0d26f13d2f645688e904f8ca0ee1 (diff) | |
download | cpython-d4837daa8d637699967fb35e9922ac11ffeb3c74.zip cpython-d4837daa8d637699967fb35e9922ac11ffeb3c74.tar.gz cpython-d4837daa8d637699967fb35e9922ac11ffeb3c74.tar.bz2 |
added some clarifying comments about -lcrypt and Tk 4.0
Diffstat (limited to 'Modules/Setup.in')
-rw-r--r-- | Modules/Setup.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in index 44ad2b2..134aab9 100644 --- a/Modules/Setup.in +++ b/Modules/Setup.in @@ -101,7 +101,7 @@ time timemodule.c # time operations and variables fcntl fcntlmodule.c # fcntl(2) and ioctl(2) pwd pwdmodule.c # pwd(3) grp grpmodule.c # grp(3) -crypt cryptmodule.c # crypt(3) +crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems select selectmodule.c # select(2); not on ancient System V socket socketmodule.c # socket(2); not on ancient System V signal signalmodule.c # signal(2) @@ -237,6 +237,10 @@ md5 md5module.c md5c.c # libraries/objects to the second line, and use that. # # In all cases also enable the last line (TKPATH). +# +# This was designed to build with Tk 3.6 and Tcl 7.3, but also seems +# to work Tk 4.0 beta. (Tkinter.py hasn't been fixed though, so for +# the time being Tk 3.6 is the version of choice!) # *** Use ONE of the following two lines, see previous comments *** #tkinter tkintermodule.c -I/usr/local/include -L/usr/local/lib -ltk -ltcl -lX11 |