blob: 3c122e5e8bb85fff8b76f59f4e5e78245d5a489d [file] [log] [blame]
Andrew M. Kuchling66012fe2001-01-26 21:56:58 +00001# Autodetecting setup.py script for building the Python extensions
2#
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00003# To be fixed:
4# Implement --disable-modules setting
Andrew M. Kuchling66012fe2001-01-26 21:56:58 +00005#
Fredrik Lundhade711a2001-01-24 08:00:28 +00006
Andrew M. Kuchling66012fe2001-01-26 21:56:58 +00007__version__ = "$Revision$"
8
9import sys, os, getopt
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000010from distutils import sysconfig
Marc-André Lemburg7c6fcda2001-01-26 18:03:24 +000011from distutils.errors import *
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000012from distutils.core import Extension, setup
13from distutils.command.build_ext import build_ext
14
15# This global variable is used to hold the list of modules to be disabled.
16disabled_module_list = []
17
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000018def find_file(filename, std_dirs, paths):
19 """Searches for the directory where a given file is located,
20 and returns a possibly-empty list of additional directories, or None
21 if the file couldn't be found at all.
Fredrik Lundhade711a2001-01-24 08:00:28 +000022
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000023 'filename' is the name of a file, such as readline.h or libcrypto.a.
24 'std_dirs' is the list of standard system directories; if the
25 file is found in one of them, no additional directives are needed.
26 'paths' is a list of additional locations to check; if the file is
27 found in one of them, the resulting list will contain the directory.
28 """
29
30 # Check the standard locations
31 for dir in std_dirs:
32 f = os.path.join(dir, filename)
33 if os.path.exists(f): return []
34
35 # Check the additional directories
36 for dir in paths:
37 f = os.path.join(dir, filename)
38 if os.path.exists(f):
39 return [dir]
40
41 # Not found anywhere
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000042 return None
43
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000044def find_library_file(compiler, libname, std_dirs, paths):
45 filename = compiler.library_filename(libname, lib_type='shared')
46 result = find_file(filename, std_dirs, paths)
47 if result is not None: return result
Fredrik Lundhade711a2001-01-24 08:00:28 +000048
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000049 filename = compiler.library_filename(libname, lib_type='static')
50 result = find_file(filename, std_dirs, paths)
51 return result
52
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000053def module_enabled(extlist, modname):
54 """Returns whether the module 'modname' is present in the list
55 of extensions 'extlist'."""
56 extlist = [ext for ext in extlist if ext.name == modname]
57 return len(extlist)
Fredrik Lundhade711a2001-01-24 08:00:28 +000058
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000059class PyBuildExt(build_ext):
Fredrik Lundhade711a2001-01-24 08:00:28 +000060
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000061 def build_extensions(self):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000062
63 # Detect which modules should be compiled
64 self.detect_modules()
65
66 # Remove modules that are present on the disabled list
67 self.extensions = [ext for ext in self.extensions
68 if ext.name not in disabled_module_list]
Fredrik Lundhade711a2001-01-24 08:00:28 +000069
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000070 # Fix up the autodetected modules, prefixing all the source files
71 # with Modules/ and adding Python's include directory to the path.
72 (srcdir,) = sysconfig.get_config_vars('srcdir')
73
Neil Schemenauer726b78e2001-01-24 17:18:21 +000074 # Figure out the location of the source code for extension modules
75 moddir = os.path.join(os.getcwd(), srcdir, 'Modules')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000076 moddir = os.path.normpath(moddir)
77 srcdir, tail = os.path.split(moddir)
78 srcdir = os.path.normpath(srcdir)
79 moddir = os.path.normpath(moddir)
80
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000081 for ext in self.extensions[:]:
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000082 ext.sources = [ os.path.join(moddir, filename)
83 for filename in ext.sources ]
84 ext.include_dirs.append( '.' ) # to get config.h
Andrew M. Kuchlinge3d6e412001-01-19 02:50:34 +000085 ext.include_dirs.append( os.path.join(srcdir, './Include') )
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000086
Andrew M. Kuchlinge7c87322001-01-19 16:58:21 +000087 # If a module has already been built statically,
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000088 # don't build it here
Andrew M. Kuchlinge7c87322001-01-19 16:58:21 +000089 if ext.name in sys.builtin_module_names:
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000090 self.extensions.remove(ext)
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +000091
92 # When you run "make CC=altcc" or something similar, you really want
93 # those environment variables passed into the setup.py phase. Here's
94 # a small set of useful ones.
95 compiler = os.environ.get('CC')
96 linker_so = os.environ.get('LDSHARED')
97 args = {}
98 # unfortunately, distutils doesn't let us provide separate C and C++
99 # compilers
100 if compiler is not None:
101 args['compiler_so'] = compiler
102 if linker_so is not None:
103 args['linker_so'] = linker_so + ' -shared'
104 self.compiler.set_executables(**args)
105
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000106 build_ext.build_extensions(self)
107
Marc-André Lemburg7c6fcda2001-01-26 18:03:24 +0000108 def build_extension(self, ext):
109
110 try:
111 build_ext.build_extension(self, ext)
112 except (CCompilerError, DistutilsError), why:
113 self.announce('WARNING: building of extension "%s" failed: %s' %
114 (ext.name, sys.exc_info()[1]))
115
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000116 def get_platform (self):
Fredrik Lundhade711a2001-01-24 08:00:28 +0000117 # Get value of sys.platform
118 platform = sys.platform
119 if platform[:6] =='cygwin':
120 platform = 'cygwin'
Andrew M. Kuchling3c044942001-02-06 23:37:23 +0000121 elif platform[:4] =='beos':
122 platform = 'beos'
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000123
Fredrik Lundhade711a2001-01-24 08:00:28 +0000124 return platform
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000125
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000126 def detect_modules(self):
Fredrik Lundhade711a2001-01-24 08:00:28 +0000127 # Ensure that /usr/local is always used
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000128 if '/usr/local/lib' not in self.compiler.library_dirs:
129 self.compiler.library_dirs.append('/usr/local/lib')
130 if '/usr/local/include' not in self.compiler.include_dirs:
131 self.compiler.include_dirs.append( '/usr/local/include' )
132
133 # lib_dirs and inc_dirs are used to search for files;
134 # if a file is found in one of those directories, it can
135 # be assumed that no additional -I,-L directives are needed.
136 lib_dirs = self.compiler.library_dirs + ['/lib', '/usr/lib']
137 inc_dirs = ['/usr/include'] + self.compiler.include_dirs
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000138 exts = []
139
Fredrik Lundhade711a2001-01-24 08:00:28 +0000140 platform = self.get_platform()
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000141
Fredrik Lundhade711a2001-01-24 08:00:28 +0000142 # Check for MacOS X, which doesn't need libm.a at all
143 math_libs = ['m']
Andrew M. Kuchling3c044942001-02-06 23:37:23 +0000144 if platform in ['Darwin1.2', 'beos']:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000145 math_libs = []
Andrew M. Kuchling5ddb25f2001-01-23 22:21:11 +0000146
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000147 # XXX Omitted modules: gl, pure, dl, SGI-specific modules
148
149 #
150 # The following modules are all pretty straightforward, and compile
151 # on pretty much any POSIXish platform.
152 #
Fredrik Lundhade711a2001-01-24 08:00:28 +0000153
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000154 # Some modules that are normally always on:
155 exts.append( Extension('regex', ['regexmodule.c', 'regexpr.c']) )
156 exts.append( Extension('pcre', ['pcremodule.c', 'pypcre.c']) )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000157
Fred Drake2de74712001-02-01 05:26:54 +0000158 exts.append( Extension('_weakref', ['_weakref.c']) )
Jeremy Hylton5e7cb242001-02-02 18:24:26 +0000159 exts.append( Extension('_symtable', ['symtablemodule.c']) )
Andrew M. Kuchlingd5c43062001-01-17 15:59:25 +0000160 exts.append( Extension('xreadlines', ['xreadlinesmodule.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000161
162 # array objects
163 exts.append( Extension('array', ['arraymodule.c']) )
164 # complex math library functions
Andrew M. Kuchling5ddb25f2001-01-23 22:21:11 +0000165 exts.append( Extension('cmath', ['cmathmodule.c'],
166 libraries=math_libs) )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000167
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000168 # math library functions, e.g. sin()
Andrew M. Kuchling5ddb25f2001-01-23 22:21:11 +0000169 exts.append( Extension('math', ['mathmodule.c'],
170 libraries=math_libs) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000171 # fast string operations implemented in C
172 exts.append( Extension('strop', ['stropmodule.c']) )
173 # time operations and variables
Andrew M. Kuchling5ddb25f2001-01-23 22:21:11 +0000174 exts.append( Extension('time', ['timemodule.c'],
175 libraries=math_libs) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000176 # operator.add() and similar goodies
177 exts.append( Extension('operator', ['operator.c']) )
178 # access to the builtin codecs and codec registry
179 exts.append( Extension('_codecs', ['_codecsmodule.c']) )
Marc-André Lemburg261b8e22001-02-02 12:12:44 +0000180 # Python C API test module
Tim Petersd66595f2001-02-04 03:09:53 +0000181 exts.append( Extension('_testcapi', ['_testcapimodule.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000182 # static Unicode character database
Marc-André Lemburg14970be2001-01-22 10:38:27 +0000183 exts.append( Extension('unicodedata', ['unicodedata.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000184 # access to ISO C locale support
185 exts.append( Extension('_locale', ['_localemodule.c']) )
186
187 # Modules with some UNIX dependencies -- on by default:
188 # (If you have a really backward UNIX, select and socket may not be
189 # supported...)
190
191 # fcntl(2) and ioctl(2)
192 exts.append( Extension('fcntl', ['fcntlmodule.c']) )
193 # pwd(3)
194 exts.append( Extension('pwd', ['pwdmodule.c']) )
195 # grp(3)
196 exts.append( Extension('grp', ['grpmodule.c']) )
197 # posix (UNIX) errno values
198 exts.append( Extension('errno', ['errnomodule.c']) )
199 # select(2); not on ancient System V
200 exts.append( Extension('select', ['selectmodule.c']) )
201
202 # The md5 module implements the RSA Data Security, Inc. MD5
203 # Message-Digest Algorithm, described in RFC 1321. The necessary files
204 # md5c.c and md5.h are included here.
205 exts.append( Extension('md5', ['md5module.c', 'md5c.c']) )
206
207 # The sha module implements the SHA checksum algorithm.
208 # (NIST's Secure Hash Algorithm.)
209 exts.append( Extension('sha', ['shamodule.c']) )
210
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000211 # Tommy Burnette's 'new' module (creates new empty objects of certain
212 # kinds):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000213 exts.append( Extension('new', ['newmodule.c']) )
214
215 # Helper module for various ascii-encoders
216 exts.append( Extension('binascii', ['binascii.c']) )
217
218 # Fred Drake's interface to the Python parser
219 exts.append( Extension('parser', ['parsermodule.c']) )
220
221 # Digital Creations' cStringIO and cPickle
222 exts.append( Extension('cStringIO', ['cStringIO.c']) )
223 exts.append( Extension('cPickle', ['cPickle.c']) )
224
225 # Memory-mapped files (also works on Win32).
226 exts.append( Extension('mmap', ['mmapmodule.c']) )
227
228 # Lance Ellinghaus's modules:
229 # enigma-inspired encryption
230 exts.append( Extension('rotor', ['rotormodule.c']) )
231 # syslog daemon interface
232 exts.append( Extension('syslog', ['syslogmodule.c']) )
233
234 # George Neville-Neil's timing module:
235 exts.append( Extension('timing', ['timingmodule.c']) )
236
237 #
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000238 # Here ends the simple stuff. From here on, modules need certain
239 # libraries, are platform-specific, or present other surprises.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000240 #
241
242 # Multimedia modules
243 # These don't work for 64-bit platforms!!!
244 # These represent audio samples or images as strings:
245
Fredrik Lundhade711a2001-01-24 08:00:28 +0000246 # Disabled on 64-bit platforms
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000247 if sys.maxint != 9223372036854775807L:
248 # Operations on audio samples
249 exts.append( Extension('audioop', ['audioop.c']) )
250 # Operations on images
251 exts.append( Extension('imageop', ['imageop.c']) )
252 # Read SGI RGB image files (but coded portably)
253 exts.append( Extension('rgbimg', ['rgbimgmodule.c']) )
254
255 # readline
Marc-André Lemburg2efc3232001-01-26 18:23:02 +0000256 if self.compiler.find_library_file(lib_dirs, 'readline'):
257 readline_libs = ['readline']
258 if self.compiler.find_library_file(lib_dirs +
259 ['/usr/lib/termcap'],
260 'termcap'):
261 readline_libs.append('termcap')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000262 exts.append( Extension('readline', ['readline.c'],
Marc-André Lemburg7c6fcda2001-01-26 18:03:24 +0000263 library_dirs=['/usr/lib/termcap'],
Marc-André Lemburg2efc3232001-01-26 18:23:02 +0000264 libraries=readline_libs) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000265
266 # The crypt module is now disabled by default because it breaks builds
267 # on many systems (where -lcrypt is needed), e.g. Linux (I believe).
268
269 if self.compiler.find_library_file(lib_dirs, 'crypt'):
270 libs = ['crypt']
271 else:
272 libs = []
273 exts.append( Extension('crypt', ['cryptmodule.c'], libraries=libs) )
274
275 # socket(2)
276 # Detect SSL support for the socket module
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000277 ssl_incs = find_file('openssl/ssl.h', inc_dirs,
Andrew M. Kuchlinge7c87322001-01-19 16:58:21 +0000278 ['/usr/local/ssl/include',
279 '/usr/contrib/ssl/include/'
280 ]
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000281 )
282 ssl_libs = find_library_file(self.compiler, 'ssl',lib_dirs,
Andrew M. Kuchlinge7c87322001-01-19 16:58:21 +0000283 ['/usr/local/ssl/lib',
284 '/usr/contrib/ssl/lib/'
285 ] )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000286
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000287 if (ssl_incs is not None and
288 ssl_libs is not None):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000289 exts.append( Extension('_socket', ['socketmodule.c'],
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000290 include_dirs = ssl_incs,
Fredrik Lundhade711a2001-01-24 08:00:28 +0000291 library_dirs = ssl_libs,
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000292 libraries = ['ssl', 'crypto'],
293 define_macros = [('USE_SSL',1)] ) )
294 else:
295 exts.append( Extension('_socket', ['socketmodule.c']) )
296
297 # Modules that provide persistent dictionary-like semantics. You will
298 # probably want to arrange for at least one of them to be available on
299 # your machine, though none are defined by default because of library
300 # dependencies. The Python module anydbm.py provides an
301 # implementation independent wrapper for these; dumbdbm.py provides
302 # similar functionality (but slower of course) implemented in Python.
303
304 # The standard Unix dbm module:
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000305 if platform not in ['cygwin']:
306 if (self.compiler.find_library_file(lib_dirs, 'ndbm')):
307 exts.append( Extension('dbm', ['dbmmodule.c'],
308 libraries = ['ndbm'] ) )
309 else:
310 exts.append( Extension('dbm', ['dbmmodule.c']) )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000311
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000312 # Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
313 if (self.compiler.find_library_file(lib_dirs, 'gdbm')):
314 exts.append( Extension('gdbm', ['gdbmmodule.c'],
315 libraries = ['gdbm'] ) )
316
317 # Berkeley DB interface.
318 #
319 # This requires the Berkeley DB code, see
320 # ftp://ftp.cs.berkeley.edu/pub/4bsd/db.1.85.tar.gz
321 #
322 # Edit the variables DB and DBPORT to point to the db top directory
323 # and the subdirectory of PORT where you built it.
324 #
325 # (See http://electricrain.com/greg/python/bsddb3/ for an interface to
326 # BSD DB 3.x.)
327
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000328 db_incs = find_file('db_185.h', inc_dirs, [])
329 if (db_incs is not None and
330 self.compiler.find_library_file(lib_dirs, 'db') ):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000331 exts.append( Extension('bsddb', ['bsddbmodule.c'],
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000332 include_dirs = db_incs,
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000333 libraries = ['db'] ) )
Andrew M. Kuchling3cbdbfb2001-02-06 22:26:30 +0000334 else:
335 db_incs = find_file('db.h', inc_dirs, [])
336 if db_incs is not None:
337 exts.append( Extension('bsddb', ['bsddbmodule.c'],
338 include_dirs = db_incs) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000339
340 # The mpz module interfaces to the GNU Multiple Precision library.
Fredrik Lundhade711a2001-01-24 08:00:28 +0000341 # You need to ftp the GNU MP library.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000342 # This was originally written and tested against GMP 1.2 and 1.3.2.
343 # It has been modified by Rob Hooft to work with 2.0.2 as well, but I
344 # haven't tested it recently. For a more complete module,
345 # refer to pympz.sourceforge.net.
346
347 # A compatible MP library unencombered by the GPL also exists. It was
348 # posted to comp.sources.misc in volume 40 and is widely available from
349 # FTP archive sites. One URL for it is:
350 # ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z
351
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000352 if (self.compiler.find_library_file(lib_dirs, 'gmp')):
353 exts.append( Extension('mpz', ['mpzmodule.c'],
354 libraries = ['gmp'] ) )
355
356
357 # Unix-only modules
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000358 if platform not in ['mac', 'win32']:
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000359 # Steen Lumholt's termios module
360 exts.append( Extension('termios', ['termios.c']) )
361 # Jeremy Hylton's rlimit interface
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000362 if platform not in ['cygwin']:
363 exts.append( Extension('resource', ['resource.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000364
365 if (self.compiler.find_library_file(lib_dirs, 'nsl')):
366 exts.append( Extension('nis', ['nismodule.c'],
367 libraries = ['nsl']) )
368
369 # Curses support, requring the System V version of curses, often
Fredrik Lundhade711a2001-01-24 08:00:28 +0000370 # provided by the ncurses library.
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000371 if platform == 'sunos4':
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000372 include_dirs += ['/usr/5include']
373 lib_dirs += ['/usr/5lib']
374
375 if (self.compiler.find_library_file(lib_dirs, 'ncurses')):
376 curses_libs = ['ncurses']
377 exts.append( Extension('_curses', ['_cursesmodule.c'],
378 libraries = curses_libs) )
379 elif (self.compiler.find_library_file(lib_dirs, 'curses')):
380 if (self.compiler.find_library_file(lib_dirs, 'terminfo')):
381 curses_libs = ['curses', 'terminfo']
382 else:
383 curses_libs = ['curses', 'termcap']
Fredrik Lundhade711a2001-01-24 08:00:28 +0000384
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000385 exts.append( Extension('_curses', ['_cursesmodule.c'],
386 libraries = curses_libs) )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000387
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000388 # If the curses module is enabled, check for the panel module
389 if (os.path.exists('Modules/_curses_panel.c') and
390 module_enabled(exts, '_curses') and
391 self.compiler.find_library_file(lib_dirs, 'panel')):
392 exts.append( Extension('_curses_panel', ['_curses_panel.c'],
393 libraries = ['panel'] + curses_libs) )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000394
395
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000396
397 # Lee Busby's SIGFPE modules.
398 # The library to link fpectl with is platform specific.
399 # Choose *one* of the options below for fpectl:
400
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000401 if platform == 'irix5':
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000402 # For SGI IRIX (tested on 5.3):
403 exts.append( Extension('fpectl', ['fpectlmodule.c'],
404 libraries=['fpe']) )
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000405 elif 0: # XXX how to detect SunPro?
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000406 # For Solaris with SunPro compiler (tested on Solaris 2.5 with SunPro C 4.2):
407 # (Without the compiler you don't have -lsunmath.)
408 #fpectl fpectlmodule.c -R/opt/SUNWspro/lib -lsunmath -lm
409 pass
410 else:
411 # For other systems: see instructions in fpectlmodule.c.
412 #fpectl fpectlmodule.c ...
413 exts.append( Extension('fpectl', ['fpectlmodule.c']) )
414
415
416 # Andrew Kuchling's zlib module.
417 # This require zlib 1.1.3 (or later).
418 # See http://www.cdrom.com/pub/infozip/zlib/
419 if (self.compiler.find_library_file(lib_dirs, 'z')):
420 exts.append( Extension('zlib', ['zlibmodule.c'],
421 libraries = ['z']) )
422
423 # Interface to the Expat XML parser
424 #
425 # Expat is written by James Clark and must be downloaded separately
426 # (see below). The pyexpat module was written by Paul Prescod after a
427 # prototype by Jack Jansen.
428 #
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000429 # The Expat dist includes Windows .lib and .dll files. Home page is
430 # at http://www.jclark.com/xml/expat.html, the current production
431 # release is always ftp://ftp.jclark.com/pub/xml/expat.zip.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000432 #
433 # EXPAT_DIR, below, should point to the expat/ directory created by
434 # unpacking the Expat source distribution.
435 #
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000436 # Note: the expat build process doesn't yet build a libexpat.a; you
437 # can do this manually while we try convince the author to add it. To
438 # do so, cd to EXPAT_DIR, run "make" if you have not done so, then
439 # run:
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000440 #
441 # ar cr libexpat.a xmltok/*.o xmlparse/*.o
442 #
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000443 expat_defs = []
444 expat_incs = find_file('expat.h', inc_dirs, [])
445 if expat_incs is not None:
446 # expat.h was found
447 expat_defs = [('HAVE_EXPAT_H', 1)]
448 else:
449 expat_incs = find_file('xmlparse.h', inc_dirs, [])
Fredrik Lundhade711a2001-01-24 08:00:28 +0000450
Martin v. Löwis1ab29b22001-01-21 10:54:52 +0000451 if (expat_incs is not None and
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000452 self.compiler.find_library_file(lib_dirs, 'expat')):
453 exts.append( Extension('pyexpat', ['pyexpat.c'],
454 define_macros = expat_defs,
455 libraries = ['expat']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000456
457 # Platform-specific libraries
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000458 if platform == 'linux2':
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000459 # Linux-specific modules
460 exts.append( Extension('linuxaudiodev', ['linuxaudiodev.c']) )
461
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000462 if platform == 'sunos5':
Fredrik Lundhade711a2001-01-24 08:00:28 +0000463 # SunOS specific modules
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000464 exts.append( Extension('sunaudiodev', ['sunaudiodev.c']) )
465
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000466 self.extensions.extend(exts)
467
468 # Call the method for detecting whether _tkinter can be compiled
469 self.detect_tkinter(inc_dirs, lib_dirs)
Fredrik Lundhade711a2001-01-24 08:00:28 +0000470
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000471
472 def detect_tkinter(self, inc_dirs, lib_dirs):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000473 # The _tkinter module.
474 #
475 # The command for _tkinter is long and site specific. Please
476 # uncomment and/or edit those parts as indicated. If you don't have a
477 # specific extension (e.g. Tix or BLT), leave the corresponding line
478 # commented out. (Leave the trailing backslashes in! If you
479 # experience strange errors, you may want to join all uncommented
480 # lines and remove the backslashes -- the backslash interpretation is
481 # done by the shell's "read" command and it may not be implemented on
482 # every system.
483
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000484 # Assume we haven't found any of the libraries or include files
485 tcllib = tklib = tcl_includes = tk_includes = None
Andrew M. Kuchlingd5c43062001-01-17 15:59:25 +0000486 for version in ['8.4', '8.3', '8.2', '8.1', '8.0']:
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000487 tklib = self.compiler.find_library_file(lib_dirs,
488 'tk' + version )
489 tcllib = self.compiler.find_library_file(lib_dirs,
490 'tcl' + version )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000491 if tklib and tcllib:
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000492 # Exit the loop when we've found the Tcl/Tk libraries
493 break
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000494
Fredrik Lundhade711a2001-01-24 08:00:28 +0000495 # Now check for the header files
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000496 if tklib and tcllib:
497 # Check for the include files on Debian, where
498 # they're put in /usr/include/{tcl,tk}X.Y
Andrew M. Kuchling9a3fd8c2001-02-06 22:15:27 +0000499 debian_tcl_include = [ '/usr/include/tcl' + version ]
500 debian_tk_include = [ '/usr/include/tk' + version ] + debian_tcl_include
501 tcl_includes = find_file('tcl.h', inc_dirs, debian_tcl_include)
502 tk_includes = find_file('tk.h', inc_dirs, debian_tk_include)
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000503
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000504 if (tcllib is None or tklib is None and
505 tcl_includes is None or tk_includes is None):
506 # Something's missing, so give up
507 return
Fredrik Lundhade711a2001-01-24 08:00:28 +0000508
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000509 # OK... everything seems to be present for Tcl/Tk.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000510
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000511 include_dirs = [] ; libs = [] ; defs = [] ; added_lib_dirs = []
512 for dir in tcl_includes + tk_includes:
513 if dir not in include_dirs:
514 include_dirs.append(dir)
Fredrik Lundhade711a2001-01-24 08:00:28 +0000515
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000516 # Check for various platform-specific directories
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000517 platform = self.get_platform()
518 if platform == 'sunos5':
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000519 include_dirs.append('/usr/openwin/include')
520 added_lib_dirs.append('/usr/openwin/lib')
521 elif os.path.exists('/usr/X11R6/include'):
522 include_dirs.append('/usr/X11R6/include')
523 added_lib_dirs.append('/usr/X11R6/lib')
524 elif os.path.exists('/usr/X11R5/include'):
525 include_dirs.append('/usr/X11R5/include')
526 added_lib_dirs.append('/usr/X11R5/lib')
527 else:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000528 # Assume default location for X11
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000529 include_dirs.append('/usr/X11/include')
530 added_lib_dirs.append('/usr/X11/lib')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000531
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000532 # Check for Tix extension
533 if self.compiler.find_library_file(lib_dirs + added_lib_dirs, 'tix4.1.8.0'):
534 defs.append( ('WITH_TIX', 1) )
535 libs.append('tix4.1.8.0')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000536
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000537 # Check for BLT extension
538 if self.compiler.find_library_file(lib_dirs + added_lib_dirs, 'BLT8.0'):
539 defs.append( ('WITH_BLT', 1) )
540 libs.append('BLT8.0')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000541
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000542 # Add the Tcl/Tk libraries
Fredrik Lundhade711a2001-01-24 08:00:28 +0000543 libs.append('tk'+version)
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000544 libs.append('tcl'+version)
Fredrik Lundhade711a2001-01-24 08:00:28 +0000545
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000546 if platform in ['aix3', 'aix4']:
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000547 libs.append('ld')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000548
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000549 # Finally, link with the X11 libraries
550 libs.append('X11')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000551
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000552 ext = Extension('_tkinter', ['_tkinter.c', 'tkappinit.c'],
553 define_macros=[('WITH_APPINIT', 1)] + defs,
554 include_dirs = include_dirs,
555 libraries = libs,
556 library_dirs = added_lib_dirs,
557 )
558 self.extensions.append(ext)
Fredrik Lundhade711a2001-01-24 08:00:28 +0000559
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000560 # XXX handle these, but how to detect?
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000561 # *** Uncomment and edit for PIL (TkImaging) extension only:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000562 # -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000563 # *** Uncomment and edit for TOGL extension only:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000564 # -DWITH_TOGL togl.c \
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000565 # *** Uncomment these for TOGL extension only:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000566 # -lGL -lGLU -lXext -lXmu \
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000567
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000568def main():
569 setup(name = 'Python standard library',
Neil Schemenauere7e2ece2001-01-17 21:58:00 +0000570 version = '%d.%d' % sys.version_info[:2],
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000571 cmdclass = {'build_ext':PyBuildExt},
572 # The struct module is defined here, because build_ext won't be
573 # called unless there's at least one extension module defined.
574 ext_modules=[Extension('struct', ['structmodule.c'])]
575 )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000576
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000577# --install-platlib
578if __name__ == '__main__':
579 sysconfig.set_python_build()
580 main()