[Python-checkins] CVS: python/dist/src/Modules Setup.in,1.88,1.89

Guido van Rossum guido@cnri.reston.va.us
Tue, 7 Dec 1999 16:47:12 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Modules
In directory eric:/projects/python/develop/guido/src/Modules

Modified Files:
	Setup.in 
Log Message:
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.


Index: Setup.in
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Modules/Setup.in,v
retrieving revision 1.88
retrieving revision 1.89
diff -C2 -r1.88 -r1.89
*** Setup.in	1999/03/24 19:03:56	1.88
--- Setup.in	1999/12/07 21:47:09	1.89
***************
*** 146,153 ****
  pwd pwdmodule.c		# pwd(3) 
  grp grpmodule.c		# grp(3)
  select selectmodule.c	# select(2); not on ancient System V
  socket socketmodule.c	# socket(2); not on ancient System V
  #_socket socketmodule.c	# socket(2); use this one for BeOS sockets
! errno errnomodule.c	# posix (UNIX) errno values
  
  # The crypt module is now disabled by default because it breaks builds
--- 146,159 ----
  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); not on ancient System V
  #_socket socketmodule.c	# socket(2); use this one for BeOS sockets
! 
! # Socket module compiled with SSL support; you must edit the SSL variable:
! #SSL=/usr/local/ssl
! #socket socketmodule.c \
! #	-DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
! #	-L$(SSL)/lib -lssl -lcrypto
  
  # The crypt module is now disabled by default because it breaks builds