[Python-checkins] python/dist/src setup.py,1.193,1.194
loewis at users.sourceforge.net
loewis at users.sourceforge.net
Mon Jul 19 18:42:22 CEST 2004
Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31978
Modified Files:
setup.py
Log Message:
Patch #993173: Enable audioop on 64-bit platforms.
Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.193
retrieving revision 1.194
diff -C2 -d -r1.193 -r1.194
*** setup.py 18 Jul 2004 05:56:06 -0000 1.193
--- setup.py 19 Jul 2004 16:42:19 -0000 1.194
***************
*** 408,415 ****
# These represent audio samples or images as strings:
# Disabled on 64-bit platforms
if sys.maxint != 9223372036854775807L:
# Operations on audio samples
- exts.append( Extension('audioop', ['audioop.c']) )
# Operations on images
exts.append( Extension('imageop', ['imageop.c']) )
--- 408,418 ----
# These represent audio samples or images as strings:
+ # According to #993173, this one should actually work fine on
+ # 64-bit platforms.
+ exts.append( Extension('audioop', ['audioop.c']) )
+
# Disabled on 64-bit platforms
if sys.maxint != 9223372036854775807L:
# Operations on audio samples
# Operations on images
exts.append( Extension('imageop', ['imageop.c']) )
More information about the Python-checkins
mailing list