blob: d540bfca66085d1d5dc00d402cca39bb37cb86d2 [file] [log] [blame]
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001# To be fixed:
2# Implement --disable-modules setting
Fredrik Lundhade711a2001-01-24 08:00:28 +00003
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00004import sys, os, string, getopt
5from distutils import sysconfig
6from distutils.core import Extension, setup
7from distutils.command.build_ext import build_ext
8
9# This global variable is used to hold the list of modules to be disabled.
10disabled_module_list = []
11
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000012def find_file(filename, std_dirs, paths):
13 """Searches for the directory where a given file is located,
14 and returns a possibly-empty list of additional directories, or None
15 if the file couldn't be found at all.
Fredrik Lundhade711a2001-01-24 08:00:28 +000016
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000017 'filename' is the name of a file, such as readline.h or libcrypto.a.
18 'std_dirs' is the list of standard system directories; if the
19 file is found in one of them, no additional directives are needed.
20 'paths' is a list of additional locations to check; if the file is
21 found in one of them, the resulting list will contain the directory.
22 """
23
24 # Check the standard locations
25 for dir in std_dirs:
26 f = os.path.join(dir, filename)
27 if os.path.exists(f): return []
28
29 # Check the additional directories
30 for dir in paths:
31 f = os.path.join(dir, filename)
32 if os.path.exists(f):
33 return [dir]
34
35 # Not found anywhere
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000036 return None
37
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000038def find_library_file(compiler, libname, std_dirs, paths):
39 filename = compiler.library_filename(libname, lib_type='shared')
40 result = find_file(filename, std_dirs, paths)
41 if result is not None: return result
Fredrik Lundhade711a2001-01-24 08:00:28 +000042
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000043 filename = compiler.library_filename(libname, lib_type='static')
44 result = find_file(filename, std_dirs, paths)
45 return result
46
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000047def module_enabled(extlist, modname):
48 """Returns whether the module 'modname' is present in the list
49 of extensions 'extlist'."""
50 extlist = [ext for ext in extlist if ext.name == modname]
51 return len(extlist)
Fredrik Lundhade711a2001-01-24 08:00:28 +000052
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000053class PyBuildExt(build_ext):
Fredrik Lundhade711a2001-01-24 08:00:28 +000054
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000055 def build_extensions(self):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000056
57 # Detect which modules should be compiled
58 self.detect_modules()
59
60 # Remove modules that are present on the disabled list
61 self.extensions = [ext for ext in self.extensions
62 if ext.name not in disabled_module_list]
Fredrik Lundhade711a2001-01-24 08:00:28 +000063
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000064 # Fix up the autodetected modules, prefixing all the source files
65 # with Modules/ and adding Python's include directory to the path.
66 (srcdir,) = sysconfig.get_config_vars('srcdir')
67
Fredrik Lundhade711a2001-01-24 08:00:28 +000068 #
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000069 moddir = os.path.join(os.getcwd(), 'Modules', srcdir)
70 moddir = os.path.normpath(moddir)
71 srcdir, tail = os.path.split(moddir)
72 srcdir = os.path.normpath(srcdir)
73 moddir = os.path.normpath(moddir)
74
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000075 for ext in self.extensions[:]:
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000076 ext.sources = [ os.path.join(moddir, filename)
77 for filename in ext.sources ]
78 ext.include_dirs.append( '.' ) # to get config.h
Andrew M. Kuchlinge3d6e412001-01-19 02:50:34 +000079 ext.include_dirs.append( os.path.join(srcdir, './Include') )
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000080
Andrew M. Kuchlinge7c87322001-01-19 16:58:21 +000081 # If a module has already been built statically,
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000082 # don't build it here
Andrew M. Kuchlinge7c87322001-01-19 16:58:21 +000083 if ext.name in sys.builtin_module_names:
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000084 self.extensions.remove(ext)
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +000085
86 # When you run "make CC=altcc" or something similar, you really want
87 # those environment variables passed into the setup.py phase. Here's
88 # a small set of useful ones.
89 compiler = os.environ.get('CC')
90 linker_so = os.environ.get('LDSHARED')
91 args = {}
92 # unfortunately, distutils doesn't let us provide separate C and C++
93 # compilers
94 if compiler is not None:
95 args['compiler_so'] = compiler
96 if linker_so is not None:
97 args['linker_so'] = linker_so + ' -shared'
98 self.compiler.set_executables(**args)
99
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000100 build_ext.build_extensions(self)
101
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000102 def get_platform (self):
Fredrik Lundhade711a2001-01-24 08:00:28 +0000103 # Get value of sys.platform
104 platform = sys.platform
105 if platform[:6] =='cygwin':
106 platform = 'cygwin'
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000107
Fredrik Lundhade711a2001-01-24 08:00:28 +0000108 return platform
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000109
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000110 def detect_modules(self):
Fredrik Lundhade711a2001-01-24 08:00:28 +0000111 # Ensure that /usr/local is always used
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000112 if '/usr/local/lib' not in self.compiler.library_dirs:
113 self.compiler.library_dirs.append('/usr/local/lib')
114 if '/usr/local/include' not in self.compiler.include_dirs:
115 self.compiler.include_dirs.append( '/usr/local/include' )
116
117 # lib_dirs and inc_dirs are used to search for files;
118 # if a file is found in one of those directories, it can
119 # be assumed that no additional -I,-L directives are needed.
120 lib_dirs = self.compiler.library_dirs + ['/lib', '/usr/lib']
121 inc_dirs = ['/usr/include'] + self.compiler.include_dirs
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000122 exts = []
123
Fredrik Lundhade711a2001-01-24 08:00:28 +0000124 platform = self.get_platform()
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000125
Fredrik Lundhade711a2001-01-24 08:00:28 +0000126 # Check for MacOS X, which doesn't need libm.a at all
127 math_libs = ['m']
128 if platform == 'Darwin1.2':
129 math_libs = []
Andrew M. Kuchling5ddb25f2001-01-23 22:21:11 +0000130
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000131 # XXX Omitted modules: gl, pure, dl, SGI-specific modules
132
133 #
134 # The following modules are all pretty straightforward, and compile
135 # on pretty much any POSIXish platform.
136 #
Fredrik Lundhade711a2001-01-24 08:00:28 +0000137
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000138 # Some modules that are normally always on:
139 exts.append( Extension('regex', ['regexmodule.c', 'regexpr.c']) )
140 exts.append( Extension('pcre', ['pcremodule.c', 'pypcre.c']) )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000141
Andrew M. Kuchlingd5c43062001-01-17 15:59:25 +0000142 exts.append( Extension('xreadlines', ['xreadlinesmodule.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000143
144 # array objects
145 exts.append( Extension('array', ['arraymodule.c']) )
146 # complex math library functions
Andrew M. Kuchling5ddb25f2001-01-23 22:21:11 +0000147 exts.append( Extension('cmath', ['cmathmodule.c'],
148 libraries=math_libs) )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000149
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000150 # math library functions, e.g. sin()
Andrew M. Kuchling5ddb25f2001-01-23 22:21:11 +0000151 exts.append( Extension('math', ['mathmodule.c'],
152 libraries=math_libs) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000153 # fast string operations implemented in C
154 exts.append( Extension('strop', ['stropmodule.c']) )
155 # time operations and variables
Andrew M. Kuchling5ddb25f2001-01-23 22:21:11 +0000156 exts.append( Extension('time', ['timemodule.c'],
157 libraries=math_libs) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000158 # operator.add() and similar goodies
159 exts.append( Extension('operator', ['operator.c']) )
160 # access to the builtin codecs and codec registry
161 exts.append( Extension('_codecs', ['_codecsmodule.c']) )
162 # static Unicode character database
Marc-André Lemburg14970be2001-01-22 10:38:27 +0000163 exts.append( Extension('unicodedata', ['unicodedata.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000164 # access to ISO C locale support
165 exts.append( Extension('_locale', ['_localemodule.c']) )
166
167 # Modules with some UNIX dependencies -- on by default:
168 # (If you have a really backward UNIX, select and socket may not be
169 # supported...)
170
171 # fcntl(2) and ioctl(2)
172 exts.append( Extension('fcntl', ['fcntlmodule.c']) )
173 # pwd(3)
174 exts.append( Extension('pwd', ['pwdmodule.c']) )
175 # grp(3)
176 exts.append( Extension('grp', ['grpmodule.c']) )
177 # posix (UNIX) errno values
178 exts.append( Extension('errno', ['errnomodule.c']) )
179 # select(2); not on ancient System V
180 exts.append( Extension('select', ['selectmodule.c']) )
181
182 # The md5 module implements the RSA Data Security, Inc. MD5
183 # Message-Digest Algorithm, described in RFC 1321. The necessary files
184 # md5c.c and md5.h are included here.
185 exts.append( Extension('md5', ['md5module.c', 'md5c.c']) )
186
187 # The sha module implements the SHA checksum algorithm.
188 # (NIST's Secure Hash Algorithm.)
189 exts.append( Extension('sha', ['shamodule.c']) )
190
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000191 # Tommy Burnette's 'new' module (creates new empty objects of certain
192 # kinds):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000193 exts.append( Extension('new', ['newmodule.c']) )
194
195 # Helper module for various ascii-encoders
196 exts.append( Extension('binascii', ['binascii.c']) )
197
198 # Fred Drake's interface to the Python parser
199 exts.append( Extension('parser', ['parsermodule.c']) )
200
201 # Digital Creations' cStringIO and cPickle
202 exts.append( Extension('cStringIO', ['cStringIO.c']) )
203 exts.append( Extension('cPickle', ['cPickle.c']) )
204
205 # Memory-mapped files (also works on Win32).
206 exts.append( Extension('mmap', ['mmapmodule.c']) )
207
208 # Lance Ellinghaus's modules:
209 # enigma-inspired encryption
210 exts.append( Extension('rotor', ['rotormodule.c']) )
211 # syslog daemon interface
212 exts.append( Extension('syslog', ['syslogmodule.c']) )
213
214 # George Neville-Neil's timing module:
215 exts.append( Extension('timing', ['timingmodule.c']) )
216
217 #
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000218 # Here ends the simple stuff. From here on, modules need certain
219 # libraries, are platform-specific, or present other surprises.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000220 #
221
222 # Multimedia modules
223 # These don't work for 64-bit platforms!!!
224 # These represent audio samples or images as strings:
225
Fredrik Lundhade711a2001-01-24 08:00:28 +0000226 # Disabled on 64-bit platforms
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000227 if sys.maxint != 9223372036854775807L:
228 # Operations on audio samples
229 exts.append( Extension('audioop', ['audioop.c']) )
230 # Operations on images
231 exts.append( Extension('imageop', ['imageop.c']) )
232 # Read SGI RGB image files (but coded portably)
233 exts.append( Extension('rgbimg', ['rgbimgmodule.c']) )
234
235 # readline
Andrew M. Kuchling4f9e9432001-01-17 20:20:44 +0000236 if (self.compiler.find_library_file(lib_dirs, 'readline')):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000237 exts.append( Extension('readline', ['readline.c'],
238 libraries=['readline', 'termcap']) )
239
240 # The crypt module is now disabled by default because it breaks builds
241 # on many systems (where -lcrypt is needed), e.g. Linux (I believe).
242
243 if self.compiler.find_library_file(lib_dirs, 'crypt'):
244 libs = ['crypt']
245 else:
246 libs = []
247 exts.append( Extension('crypt', ['cryptmodule.c'], libraries=libs) )
248
249 # socket(2)
250 # Detect SSL support for the socket module
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000251 ssl_incs = find_file('openssl/ssl.h', inc_dirs,
Andrew M. Kuchlinge7c87322001-01-19 16:58:21 +0000252 ['/usr/local/ssl/include',
253 '/usr/contrib/ssl/include/'
254 ]
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000255 )
256 ssl_libs = find_library_file(self.compiler, 'ssl',lib_dirs,
Andrew M. Kuchlinge7c87322001-01-19 16:58:21 +0000257 ['/usr/local/ssl/lib',
258 '/usr/contrib/ssl/lib/'
259 ] )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000260
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000261 if (ssl_incs is not None and
262 ssl_libs is not None):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000263 exts.append( Extension('_socket', ['socketmodule.c'],
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000264 include_dirs = ssl_incs,
Fredrik Lundhade711a2001-01-24 08:00:28 +0000265 library_dirs = ssl_libs,
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000266 libraries = ['ssl', 'crypto'],
267 define_macros = [('USE_SSL',1)] ) )
268 else:
269 exts.append( Extension('_socket', ['socketmodule.c']) )
270
271 # Modules that provide persistent dictionary-like semantics. You will
272 # probably want to arrange for at least one of them to be available on
273 # your machine, though none are defined by default because of library
274 # dependencies. The Python module anydbm.py provides an
275 # implementation independent wrapper for these; dumbdbm.py provides
276 # similar functionality (but slower of course) implemented in Python.
277
278 # The standard Unix dbm module:
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000279 if platform not in ['cygwin']:
280 if (self.compiler.find_library_file(lib_dirs, 'ndbm')):
281 exts.append( Extension('dbm', ['dbmmodule.c'],
282 libraries = ['ndbm'] ) )
283 else:
284 exts.append( Extension('dbm', ['dbmmodule.c']) )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000285
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000286 # Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
287 if (self.compiler.find_library_file(lib_dirs, 'gdbm')):
288 exts.append( Extension('gdbm', ['gdbmmodule.c'],
289 libraries = ['gdbm'] ) )
290
291 # Berkeley DB interface.
292 #
293 # This requires the Berkeley DB code, see
294 # ftp://ftp.cs.berkeley.edu/pub/4bsd/db.1.85.tar.gz
295 #
296 # Edit the variables DB and DBPORT to point to the db top directory
297 # and the subdirectory of PORT where you built it.
298 #
299 # (See http://electricrain.com/greg/python/bsddb3/ for an interface to
300 # BSD DB 3.x.)
301
302 # Note: If a db.h file is found by configure, bsddb will be enabled
303 # automatically via Setup.config.in. It only needs to be enabled here
304 # if it is not automatically enabled there; check the generated
305 # Setup.config before enabling it here.
306
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000307 db_incs = find_file('db_185.h', inc_dirs, [])
308 if (db_incs is not None and
309 self.compiler.find_library_file(lib_dirs, 'db') ):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000310 exts.append( Extension('bsddb', ['bsddbmodule.c'],
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000311 include_dirs = db_incs,
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000312 libraries = ['db'] ) )
313
314 # The mpz module interfaces to the GNU Multiple Precision library.
Fredrik Lundhade711a2001-01-24 08:00:28 +0000315 # You need to ftp the GNU MP library.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000316 # This was originally written and tested against GMP 1.2 and 1.3.2.
317 # It has been modified by Rob Hooft to work with 2.0.2 as well, but I
318 # haven't tested it recently. For a more complete module,
319 # refer to pympz.sourceforge.net.
320
321 # A compatible MP library unencombered by the GPL also exists. It was
322 # posted to comp.sources.misc in volume 40 and is widely available from
323 # FTP archive sites. One URL for it is:
324 # ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z
325
326 # Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
327 if (self.compiler.find_library_file(lib_dirs, 'gmp')):
328 exts.append( Extension('mpz', ['mpzmodule.c'],
329 libraries = ['gmp'] ) )
330
331
332 # Unix-only modules
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000333 if platform not in ['mac', 'win32']:
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000334 # Steen Lumholt's termios module
335 exts.append( Extension('termios', ['termios.c']) )
336 # Jeremy Hylton's rlimit interface
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000337 if platform not in ['cygwin']:
338 exts.append( Extension('resource', ['resource.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000339
340 if (self.compiler.find_library_file(lib_dirs, 'nsl')):
341 exts.append( Extension('nis', ['nismodule.c'],
342 libraries = ['nsl']) )
343
344 # Curses support, requring the System V version of curses, often
Fredrik Lundhade711a2001-01-24 08:00:28 +0000345 # provided by the ncurses library.
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000346 if platform == 'sunos4':
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000347 include_dirs += ['/usr/5include']
348 lib_dirs += ['/usr/5lib']
349
350 if (self.compiler.find_library_file(lib_dirs, 'ncurses')):
351 curses_libs = ['ncurses']
352 exts.append( Extension('_curses', ['_cursesmodule.c'],
353 libraries = curses_libs) )
354 elif (self.compiler.find_library_file(lib_dirs, 'curses')):
355 if (self.compiler.find_library_file(lib_dirs, 'terminfo')):
356 curses_libs = ['curses', 'terminfo']
357 else:
358 curses_libs = ['curses', 'termcap']
Fredrik Lundhade711a2001-01-24 08:00:28 +0000359
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000360 exts.append( Extension('_curses', ['_cursesmodule.c'],
361 libraries = curses_libs) )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000362
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000363 # If the curses module is enabled, check for the panel module
364 if (os.path.exists('Modules/_curses_panel.c') and
365 module_enabled(exts, '_curses') and
366 self.compiler.find_library_file(lib_dirs, 'panel')):
367 exts.append( Extension('_curses_panel', ['_curses_panel.c'],
368 libraries = ['panel'] + curses_libs) )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000369
370
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000371
372 # Lee Busby's SIGFPE modules.
373 # The library to link fpectl with is platform specific.
374 # Choose *one* of the options below for fpectl:
375
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000376 if platform == 'irix5':
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000377 # For SGI IRIX (tested on 5.3):
378 exts.append( Extension('fpectl', ['fpectlmodule.c'],
379 libraries=['fpe']) )
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000380 elif 0: # XXX how to detect SunPro?
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000381 # For Solaris with SunPro compiler (tested on Solaris 2.5 with SunPro C 4.2):
382 # (Without the compiler you don't have -lsunmath.)
383 #fpectl fpectlmodule.c -R/opt/SUNWspro/lib -lsunmath -lm
384 pass
385 else:
386 # For other systems: see instructions in fpectlmodule.c.
387 #fpectl fpectlmodule.c ...
388 exts.append( Extension('fpectl', ['fpectlmodule.c']) )
389
390
391 # Andrew Kuchling's zlib module.
392 # This require zlib 1.1.3 (or later).
393 # See http://www.cdrom.com/pub/infozip/zlib/
394 if (self.compiler.find_library_file(lib_dirs, 'z')):
395 exts.append( Extension('zlib', ['zlibmodule.c'],
396 libraries = ['z']) )
397
398 # Interface to the Expat XML parser
399 #
400 # Expat is written by James Clark and must be downloaded separately
401 # (see below). The pyexpat module was written by Paul Prescod after a
402 # prototype by Jack Jansen.
403 #
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000404 # The Expat dist includes Windows .lib and .dll files. Home page is
405 # at http://www.jclark.com/xml/expat.html, the current production
406 # release is always ftp://ftp.jclark.com/pub/xml/expat.zip.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000407 #
408 # EXPAT_DIR, below, should point to the expat/ directory created by
409 # unpacking the Expat source distribution.
410 #
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000411 # Note: the expat build process doesn't yet build a libexpat.a; you
412 # can do this manually while we try convince the author to add it. To
413 # do so, cd to EXPAT_DIR, run "make" if you have not done so, then
414 # run:
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000415 #
416 # ar cr libexpat.a xmltok/*.o xmlparse/*.o
417 #
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000418 expat_defs = []
419 expat_incs = find_file('expat.h', inc_dirs, [])
420 if expat_incs is not None:
421 # expat.h was found
422 expat_defs = [('HAVE_EXPAT_H', 1)]
423 else:
424 expat_incs = find_file('xmlparse.h', inc_dirs, [])
Fredrik Lundhade711a2001-01-24 08:00:28 +0000425
Martin v. Löwis1ab29b22001-01-21 10:54:52 +0000426 if (expat_incs is not None and
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000427 self.compiler.find_library_file(lib_dirs, 'expat')):
428 exts.append( Extension('pyexpat', ['pyexpat.c'],
429 define_macros = expat_defs,
430 libraries = ['expat']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000431
432 # Platform-specific libraries
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000433 if platform == 'linux2':
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000434 # Linux-specific modules
435 exts.append( Extension('linuxaudiodev', ['linuxaudiodev.c']) )
436
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000437 if platform == 'sunos5':
Fredrik Lundhade711a2001-01-24 08:00:28 +0000438 # SunOS specific modules
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000439 exts.append( Extension('sunaudiodev', ['sunaudiodev.c']) )
440
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000441 self.extensions.extend(exts)
442
443 # Call the method for detecting whether _tkinter can be compiled
444 self.detect_tkinter(inc_dirs, lib_dirs)
Fredrik Lundhade711a2001-01-24 08:00:28 +0000445
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000446
447 def detect_tkinter(self, inc_dirs, lib_dirs):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000448 # The _tkinter module.
449 #
450 # The command for _tkinter is long and site specific. Please
451 # uncomment and/or edit those parts as indicated. If you don't have a
452 # specific extension (e.g. Tix or BLT), leave the corresponding line
453 # commented out. (Leave the trailing backslashes in! If you
454 # experience strange errors, you may want to join all uncommented
455 # lines and remove the backslashes -- the backslash interpretation is
456 # done by the shell's "read" command and it may not be implemented on
457 # every system.
458
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000459 # Assume we haven't found any of the libraries or include files
460 tcllib = tklib = tcl_includes = tk_includes = None
Andrew M. Kuchlingd5c43062001-01-17 15:59:25 +0000461 for version in ['8.4', '8.3', '8.2', '8.1', '8.0']:
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000462 tklib = self.compiler.find_library_file(lib_dirs,
463 'tk' + version )
464 tcllib = self.compiler.find_library_file(lib_dirs,
465 'tcl' + version )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000466 if tklib and tcllib:
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000467 # Exit the loop when we've found the Tcl/Tk libraries
468 break
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000469
Fredrik Lundhade711a2001-01-24 08:00:28 +0000470 # Now check for the header files
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000471 if tklib and tcllib:
472 # Check for the include files on Debian, where
473 # they're put in /usr/include/{tcl,tk}X.Y
474 debian_tcl_include = ( '/usr/include/tcl' + version )
475 debian_tk_include = ( '/usr/include/tk' + version )
476 tcl_includes = find_file('tcl.h', inc_dirs,
477 [debian_tcl_include]
478 )
479 tk_includes = find_file('tk.h', inc_dirs,
480 [debian_tk_include]
481 )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000482
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000483 if (tcllib is None or tklib is None and
484 tcl_includes is None or tk_includes is None):
485 # Something's missing, so give up
486 return
Fredrik Lundhade711a2001-01-24 08:00:28 +0000487
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000488 # OK... everything seems to be present for Tcl/Tk.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000489
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000490 include_dirs = [] ; libs = [] ; defs = [] ; added_lib_dirs = []
491 for dir in tcl_includes + tk_includes:
492 if dir not in include_dirs:
493 include_dirs.append(dir)
Fredrik Lundhade711a2001-01-24 08:00:28 +0000494
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000495 # Check for various platform-specific directories
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000496 platform = self.get_platform()
497 if platform == 'sunos5':
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000498 include_dirs.append('/usr/openwin/include')
499 added_lib_dirs.append('/usr/openwin/lib')
500 elif os.path.exists('/usr/X11R6/include'):
501 include_dirs.append('/usr/X11R6/include')
502 added_lib_dirs.append('/usr/X11R6/lib')
503 elif os.path.exists('/usr/X11R5/include'):
504 include_dirs.append('/usr/X11R5/include')
505 added_lib_dirs.append('/usr/X11R5/lib')
506 else:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000507 # Assume default location for X11
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000508 include_dirs.append('/usr/X11/include')
509 added_lib_dirs.append('/usr/X11/lib')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000510
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000511 # Check for Tix extension
512 if self.compiler.find_library_file(lib_dirs + added_lib_dirs, 'tix4.1.8.0'):
513 defs.append( ('WITH_TIX', 1) )
514 libs.append('tix4.1.8.0')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000515
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000516 # Check for BLT extension
517 if self.compiler.find_library_file(lib_dirs + added_lib_dirs, 'BLT8.0'):
518 defs.append( ('WITH_BLT', 1) )
519 libs.append('BLT8.0')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000520
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000521 # Add the Tcl/Tk libraries
Fredrik Lundhade711a2001-01-24 08:00:28 +0000522 libs.append('tk'+version)
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000523 libs.append('tcl'+version)
Fredrik Lundhade711a2001-01-24 08:00:28 +0000524
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000525 if platform in ['aix3', 'aix4']:
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000526 libs.append('ld')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000527
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000528 # Finally, link with the X11 libraries
529 libs.append('X11')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000530
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000531 ext = Extension('_tkinter', ['_tkinter.c', 'tkappinit.c'],
532 define_macros=[('WITH_APPINIT', 1)] + defs,
533 include_dirs = include_dirs,
534 libraries = libs,
535 library_dirs = added_lib_dirs,
536 )
537 self.extensions.append(ext)
Fredrik Lundhade711a2001-01-24 08:00:28 +0000538
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000539 # XXX handle these, but how to detect?
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000540 # *** Uncomment and edit for PIL (TkImaging) extension only:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000541 # -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000542 # *** Uncomment and edit for TOGL extension only:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000543 # -DWITH_TOGL togl.c \
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000544 # *** Uncomment these for TOGL extension only:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000545 # -lGL -lGLU -lXext -lXmu \
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000546
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000547def main():
548 setup(name = 'Python standard library',
Neil Schemenauere7e2ece2001-01-17 21:58:00 +0000549 version = '%d.%d' % sys.version_info[:2],
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000550 cmdclass = {'build_ext':PyBuildExt},
551 # The struct module is defined here, because build_ext won't be
552 # called unless there's at least one extension module defined.
553 ext_modules=[Extension('struct', ['structmodule.c'])]
554 )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000555
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000556# --install-platlib
557if __name__ == '__main__':
558 sysconfig.set_python_build()
559 main()