Kaydet (Commit) ade16076 authored tarafından Thomas Wouters's avatar Thomas Wouters

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.)
üst bb0a4b78
...@@ -153,7 +153,6 @@ pwd pwdmodule.c # pwd(3) ...@@ -153,7 +153,6 @@ pwd pwdmodule.c # pwd(3)
grp grpmodule.c # grp(3) grp grpmodule.c # grp(3)
errno errnomodule.c # posix (UNIX) errno values errno errnomodule.c # posix (UNIX) errno values
select selectmodule.c # select(2); not on ancient System V select selectmodule.c # select(2); not on ancient System V
_socket socketmodule.c # socket(2)
# Memory-mapped files (also works on Win32). # Memory-mapped files (also works on Win32).
mmap mmapmodule.c mmap mmapmodule.c
...@@ -161,7 +160,11 @@ mmap mmapmodule.c ...@@ -161,7 +160,11 @@ mmap mmapmodule.c
# Dynamic readlines # Dynamic readlines
xreadlines xreadlinesmodule.c 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 #SSL=/usr/local/ssl
#_socket socketmodule.c \ #_socket socketmodule.c \
# -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \ # -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment