diff options
author | Guido van Rossum <guido@python.org> | 1997-09-03 00:44:14 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-09-03 00:44:14 (GMT) |
commit | 3f0bff666dfd09b1fd80f335362fe7184b4a1135 (patch) | |
tree | 56d29a012b0558693adbd89b348c6f2a7651a37e | |
parent | fc6efffbf909272cf8cf9ed1f1c7a54bad00661c (diff) | |
download | cpython-3f0bff666dfd09b1fd80f335362fe7184b4a1135.zip cpython-3f0bff666dfd09b1fd80f335362fe7184b4a1135.tar.gz cpython-3f0bff666dfd09b1fd80f335362fe7184b4a1135.tar.bz2 |
Disable the portable multimedia modules (audioop, imageop, rgbimg) by
default since they don't work on 64-bit platforms.
-rw-r--r-- | Modules/Setup.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in index 3e886fc..9a1a400 100644 --- a/Modules/Setup.in +++ b/Modules/Setup.in @@ -159,12 +159,13 @@ errno errnomodule.c # posix (UNIX) errno values #resource resource.c # Jeremy Hylton's rlimit interface -# Multimedia modules -- on by default. +# Multimedia modules -- off by default. +# These don't for 64-bit platforms!!! # These represent audio samples or images as strings: -audioop audioop.c # Operations on audio samples -imageop imageop.c # Operations on images -rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably) +#audioop audioop.c # Operations on audio samples +#imageop imageop.c # Operations on images +#rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably) # The stdwin module provides a simple, portable (between X11 and Mac) |