diff options
author | Thomas Wouters <thomas@python.org> | 2001-01-11 14:46:40 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2001-01-11 14:46:40 (GMT) |
commit | ade16076a1fcd90ee86d6fc1ba44832f908ec14f (patch) | |
tree | 2f3f48562cf03f7dde0ce01418c608c154a9be9f /Modules | |
parent | bb0a4b7898437988b1b022f0170a2052926479c7 (diff) | |
download | cpython-ade16076a1fcd90ee86d6fc1ba44832f908ec14f.zip cpython-ade16076a1fcd90ee86d6fc1ba44832f908ec14f.tar.gz cpython-ade16076a1fcd90ee86d6fc1ba44832f908ec14f.tar.bz2 |
Move the _socket module closer to the SSL-_socket line (mmap and
xreadlines inserted themselves inbetween the two) and clarify that the
normal socket module should be commented out. (Someone also suggested the
latter on c.l.py some time ago, I forget who, sorry.)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Setup.dist | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Modules/Setup.dist b/Modules/Setup.dist index 522ca52..9b863d5 100644 --- a/Modules/Setup.dist +++ b/Modules/Setup.dist @@ -153,7 +153,6 @@ pwd pwdmodule.c # pwd(3) grp grpmodule.c # grp(3) errno errnomodule.c # posix (UNIX) errno values select selectmodule.c # select(2); not on ancient System V -_socket socketmodule.c # socket(2) # Memory-mapped files (also works on Win32). mmap mmapmodule.c @@ -161,7 +160,11 @@ mmap mmapmodule.c # Dynamic readlines xreadlines xreadlinesmodule.c -# Socket module compiled with SSL support; you must edit the SSL variable: +# for socket(2), without SSL support. +_socket socketmodule.c + +# Socket module compiled with SSL support; you must comment out the other +# socket line above, and possibly edit the SSL variable: #SSL=/usr/local/ssl #_socket socketmodule.c \ # -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \ |