Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cbdff76

Browse files
committed
OpenSSL support. This is based on patches for a version of SSLeay by
Brian E Gallew, which were improved and adapted to OpenSSL 0.9.4 by Laszlo Kovacs of HP. Both have kindly given permission to include the patches in the Python distribution. Final formatting by GvR.
1 parent 09c8b6c commit cbdff76

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

Modules/Setup.in

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,10 +145,16 @@ operator operator.c # operator.add() and similar goodies
145145
fcntl fcntlmodule.c # fcntl(2) and ioctl(2)
146146
pwd pwdmodule.c # pwd(3)
147147
grp grpmodule.c # grp(3)
148+
errno errnomodule.c # posix (UNIX) errno values
148149
select selectmodule.c # select(2); not on ancient System V
149150
socket socketmodule.c # socket(2); not on ancient System V
150151
#_socket socketmodule.c # socket(2); use this one for BeOS sockets
151-
errno errnomodule.c # posix (UNIX) errno values
152+
153+
# Socket module compiled with SSL support; you must edit the SSL variable:
154+
#SSL=/usr/local/ssl
155+
#socket socketmodule.c \
156+
# -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
157+
# -L$(SSL)/lib -lssl -lcrypto
152158

153159
# The crypt module is now disabled by default because it breaks builds
154160
# on many systems (where -lcrypt is needed), e.g. Linux (I believe).

0 commit comments

Comments
 (0)