summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-09-15 18:55:58 (GMT)
committerFred Drake <fdrake@acm.org>2000-09-15 18:55:58 (GMT)
commite64572bccbb8b22e7e384ae1a7009532d389a850 (patch)
tree0bb033a4dbc708ddf333fcccf0ffe7d89ec95035 /Modules
parent3b2aedbdc58c3466469abf4f3fbfc123195ff1f9 (diff)
downloadcpython-e64572bccbb8b22e7e384ae1a7009532d389a850.zip
cpython-e64572bccbb8b22e7e384ae1a7009532d389a850.tar.gz
cpython-e64572bccbb8b22e7e384ae1a7009532d389a850.tar.bz2
Some systems need -lucb to compile the mmap module. Add a comment to
this effect. This address one aspect of SourceForge bug #113797.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/Setup.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in
index ae9352b..994c687 100644
--- a/Modules/Setup.in
+++ b/Modules/Setup.in
@@ -150,10 +150,13 @@ 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)
+# 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:
#SSL=/usr/local/ssl
#_socket socketmodule.c \