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

Fred L. Drake python-dev@python.org
Fri, 15 Sep 2000 11:56:02 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv712/Modules

Modified Files:
	Setup.in 
Log Message:

Some systems need -lucb to compile the mmap module.  Add a comment to
this effect.

This address one aspect of SourceForge bug #113797.


Index: Setup.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/Setup.in,v
retrieving revision 1.109
retrieving revision 1.110
diff -C2 -r1.109 -r1.110
*** Setup.in	2000/08/31 16:11:07	1.109
--- Setup.in	2000/09/15 18:55:58	1.110
***************
*** 151,157 ****
  grp grpmodule.c		# grp(3)
  errno errnomodule.c	# posix (UNIX) errno values
- mmap mmapmodule.c       # Memory-mapped files (also works on Win32)
  select selectmodule.c	# select(2); not on ancient System V
  _socket socketmodule.c	# socket(2)
  
  # Socket module compiled with SSL support; you must edit the SSL variable:
--- 151,160 ----
  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).
+ # Some platforms require -lucb.
+ mmap mmapmodule.c # -lucb
  
  # Socket module compiled with SSL support; you must edit the SSL variable: