diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2000-03-30 21:14:30 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2000-03-30 21:14:30 (GMT) |
commit | 1ed7d2d2b824b8a7ef80a284efa6eef75f4fd885 (patch) | |
tree | ea38f66862ab6e2e93f73e4ef28f8a77fa5d5e23 /Modules/Setup.in | |
parent | e0dd3010ce1e07f345653906bb951348562b0a23 (diff) | |
download | cpython-1ed7d2d2b824b8a7ef80a284efa6eef75f4fd885.zip cpython-1ed7d2d2b824b8a7ef80a284efa6eef75f4fd885.tar.gz cpython-1ed7d2d2b824b8a7ef80a284efa6eef75f4fd885.tar.bz2 |
Added mmap module -- map a view of a file into memory on Win32 and Unix.
(Needs testing on Win32.)
Diffstat (limited to 'Modules/Setup.in')
-rw-r--r-- | Modules/Setup.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in index 839cc09..eacfa67 100644 --- a/Modules/Setup.in +++ b/Modules/Setup.in @@ -150,6 +150,7 @@ fcntl fcntlmodule.c # fcntl(2) and ioctl(2) pwd pwdmodule.c # pwd(3) 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); not on ancient System V #_socket socketmodule.c # socket(2); use this one for BeOS sockets @@ -418,6 +419,5 @@ cPickle cPickle.c # See http://www.cdrom.com/pub/infozip/zlib/ #zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz - # Example -- included for reference only: # xx xxmodule.c |