1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
$NetBSD: patch-aa,v 1.2 2002/01/28 09:12:09 drochner Exp $
--- setup.py.orig Mon Dec 17 18:24:43 2001
+++ setup.py Sun Jan 27 13:33:55 2002
@@ -314,13 +314,13 @@
# These represent audio samples or images as strings:
# Disabled on 64-bit platforms
- if sys.maxint != 9223372036854775807L:
+# if sys.maxint != 9223372036854775807L:
# Operations on audio samples
- exts.append( Extension('audioop', ['audioop.c']) )
+# exts.append( Extension('audioop', ['audioop.c']) )
# Operations on images
- exts.append( Extension('imageop', ['imageop.c']) )
+# exts.append( Extension('imageop', ['imageop.c']) )
# Read SGI RGB image files (but coded portably)
- exts.append( Extension('rgbimg', ['rgbimgmodule.c']) )
+# exts.append( Extension('rgbimg', ['rgbimgmodule.c']) )
# readline
if self.compiler.find_library_file(lib_dirs, 'readline'):
@@ -481,8 +481,8 @@
else:
curses_libs = ['curses', 'termcap']
- exts.append( Extension('_curses', ['_cursesmodule.c'],
- libraries = curses_libs) )
+# exts.append( Extension('_curses', ['_cursesmodule.c'],
+# libraries = curses_libs) )
# If the curses module is enabled, check for the panel module
if (module_enabled(exts, '_curses') and
@@ -784,7 +784,7 @@
ext_modules=[Extension('struct', ['structmodule.c'])],
# Scripts to install
- scripts = ['Tools/scripts/pydoc']
+ scripts = ['Tools/scripts/pydoc2.2']
)
# --install-platlib
|