blob: bc49d743262b09ed84b79ec1fe97a0c394e5bab4 [file] [log] [blame]
Andrew M. Kuchling66012fe2001-01-26 21:56:58 +00001# Autodetecting setup.py script for building the Python extensions
2#
Fredrik Lundhade711a2001-01-24 08:00:28 +00003
Andrew M. Kuchling66012fe2001-01-26 21:56:58 +00004__version__ = "$Revision$"
5
Martin v. Löwis05d4d562002-12-06 10:25:02 +00006import sys, os, getopt, imp, re
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00007from distutils import sysconfig
Andrew M. Kuchling8d7f0862001-02-23 16:32:32 +00008from distutils import text_file
Marc-André Lemburg7c6fcda2001-01-26 18:03:24 +00009from distutils.errors import *
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000010from distutils.core import Extension, setup
11from distutils.command.build_ext import build_ext
Andrew M. Kuchlingf52d27e2001-05-21 20:29:27 +000012from distutils.command.install import install
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000013
14# This global variable is used to hold the list of modules to be disabled.
15disabled_module_list = []
16
Michael W. Hudson39230b32002-01-16 15:26:48 +000017def add_dir_to_list(dirlist, dir):
18 """Add the directory 'dir' to the list 'dirlist' (at the front) if
19 1) 'dir' is not already in 'dirlist'
20 2) 'dir' actually exists, and is a directory."""
Jack Jansen4439b7c2002-06-26 15:44:30 +000021 if dir is not None and os.path.isdir(dir) and dir not in dirlist:
Michael W. Hudson39230b32002-01-16 15:26:48 +000022 dirlist.insert(0, dir)
23
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000024def find_file(filename, std_dirs, paths):
25 """Searches for the directory where a given file is located,
26 and returns a possibly-empty list of additional directories, or None
27 if the file couldn't be found at all.
Fredrik Lundhade711a2001-01-24 08:00:28 +000028
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000029 'filename' is the name of a file, such as readline.h or libcrypto.a.
30 'std_dirs' is the list of standard system directories; if the
31 file is found in one of them, no additional directives are needed.
32 'paths' is a list of additional locations to check; if the file is
33 found in one of them, the resulting list will contain the directory.
34 """
35
36 # Check the standard locations
37 for dir in std_dirs:
38 f = os.path.join(dir, filename)
39 if os.path.exists(f): return []
40
41 # Check the additional directories
42 for dir in paths:
43 f = os.path.join(dir, filename)
44 if os.path.exists(f):
45 return [dir]
46
47 # Not found anywhere
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000048 return None
49
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000050def find_library_file(compiler, libname, std_dirs, paths):
Andrew M. Kuchlinga246d9f2002-11-27 13:43:46 +000051 result = compiler.find_library_file(std_dirs + paths, libname)
52 if result is None:
53 return None
Fredrik Lundhade711a2001-01-24 08:00:28 +000054
Andrew M. Kuchlinga246d9f2002-11-27 13:43:46 +000055 # Check whether the found file is in one of the standard directories
56 dirname = os.path.dirname(result)
57 for p in std_dirs:
58 # Ensure path doesn't end with path separator
59 if p.endswith(os.sep):
60 p = p.strip(os.sep)
61 if p == dirname:
62 return [ ]
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000063
Andrew M. Kuchlinga246d9f2002-11-27 13:43:46 +000064 # Otherwise, it must have been in one of the additional directories,
65 # so we have to figure out which one.
66 for p in paths:
67 # Ensure path doesn't end with path separator
68 if p.endswith(os.sep):
69 p = p.strip(os.sep)
70 if p == dirname:
71 return [p]
72 else:
73 assert False, "Internal error: Path not found in std_dirs or paths"
74
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000075def module_enabled(extlist, modname):
76 """Returns whether the module 'modname' is present in the list
77 of extensions 'extlist'."""
78 extlist = [ext for ext in extlist if ext.name == modname]
79 return len(extlist)
Fredrik Lundhade711a2001-01-24 08:00:28 +000080
Jack Jansen144ebcc2001-08-05 22:31:19 +000081def find_module_file(module, dirlist):
82 """Find a module in a set of possible folders. If it is not found
83 return the unadorned filename"""
84 list = find_file(module, [], dirlist)
85 if not list:
86 return module
87 if len(list) > 1:
88 self.announce("WARNING: multiple copies of %s found"%module)
89 return os.path.join(list[0], module)
Michael W. Hudson5b109102002-01-23 15:04:41 +000090
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000091class PyBuildExt(build_ext):
Fredrik Lundhade711a2001-01-24 08:00:28 +000092
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000093 def build_extensions(self):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000094
95 # Detect which modules should be compiled
96 self.detect_modules()
97
98 # Remove modules that are present on the disabled list
99 self.extensions = [ext for ext in self.extensions
100 if ext.name not in disabled_module_list]
Fredrik Lundhade711a2001-01-24 08:00:28 +0000101
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000102 # Fix up the autodetected modules, prefixing all the source files
103 # with Modules/ and adding Python's include directory to the path.
104 (srcdir,) = sysconfig.get_config_vars('srcdir')
Guido van Rossume0fea6c2002-10-14 20:48:09 +0000105 if not srcdir:
106 # Maybe running on Windows but not using CYGWIN?
107 raise ValueError("No source directory; cannot proceed.")
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000108
Neil Schemenauer726b78e2001-01-24 17:18:21 +0000109 # Figure out the location of the source code for extension modules
110 moddir = os.path.join(os.getcwd(), srcdir, 'Modules')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000111 moddir = os.path.normpath(moddir)
112 srcdir, tail = os.path.split(moddir)
113 srcdir = os.path.normpath(srcdir)
114 moddir = os.path.normpath(moddir)
Michael W. Hudson5b109102002-01-23 15:04:41 +0000115
Jack Jansen144ebcc2001-08-05 22:31:19 +0000116 moddirlist = [moddir]
117 incdirlist = ['./Include']
Michael W. Hudson5b109102002-01-23 15:04:41 +0000118
Jack Jansen144ebcc2001-08-05 22:31:19 +0000119 # Platform-dependent module source and include directories
120 platform = self.get_platform()
Jack Jansen4439b7c2002-06-26 15:44:30 +0000121 if platform in ('darwin', 'mac'):
Jack Jansen144ebcc2001-08-05 22:31:19 +0000122 # Mac OS X also includes some mac-specific modules
123 macmoddir = os.path.join(os.getcwd(), srcdir, 'Mac/Modules')
124 moddirlist.append(macmoddir)
125 incdirlist.append('./Mac/Include')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000126
Jeremy Hylton340043e2002-06-13 17:38:11 +0000127 alldirlist = moddirlist + incdirlist
128
Andrew M. Kuchling3da989c2001-02-28 22:49:26 +0000129 # Fix up the paths for scripts, too
130 self.distribution.scripts = [os.path.join(srcdir, filename)
131 for filename in self.distribution.scripts]
132
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000133 for ext in self.extensions[:]:
Jack Jansen144ebcc2001-08-05 22:31:19 +0000134 ext.sources = [ find_module_file(filename, moddirlist)
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000135 for filename in ext.sources ]
Jeremy Hylton340043e2002-06-13 17:38:11 +0000136 if ext.depends is not None:
137 ext.depends = [find_module_file(filename, alldirlist)
138 for filename in ext.depends]
Jack Jansen144ebcc2001-08-05 22:31:19 +0000139 ext.include_dirs.append( '.' ) # to get config.h
140 for incdir in incdirlist:
141 ext.include_dirs.append( os.path.join(srcdir, incdir) )
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000142
Andrew M. Kuchlinge7c87322001-01-19 16:58:21 +0000143 # If a module has already been built statically,
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000144 # don't build it here
Andrew M. Kuchlinge7c87322001-01-19 16:58:21 +0000145 if ext.name in sys.builtin_module_names:
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000146 self.extensions.remove(ext)
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000147
Jack Jansen4439b7c2002-06-26 15:44:30 +0000148 if platform != 'mac':
149 # Parse Modules/Setup to figure out which modules are turned
150 # on in the file.
151 input = text_file.TextFile('Modules/Setup', join_lines=1)
152 remove_modules = []
153 while 1:
154 line = input.readline()
155 if not line: break
156 line = line.split()
157 remove_modules.append( line[0] )
158 input.close()
159
160 for ext in self.extensions[:]:
161 if ext.name in remove_modules:
162 self.extensions.remove(ext)
Michael W. Hudson5b109102002-01-23 15:04:41 +0000163
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000164 # When you run "make CC=altcc" or something similar, you really want
165 # those environment variables passed into the setup.py phase. Here's
166 # a small set of useful ones.
167 compiler = os.environ.get('CC')
168 linker_so = os.environ.get('LDSHARED')
169 args = {}
170 # unfortunately, distutils doesn't let us provide separate C and C++
171 # compilers
172 if compiler is not None:
Martin v. Löwis3e4b0e82001-08-10 08:56:17 +0000173 (ccshared,opt) = sysconfig.get_config_vars('CCSHARED','OPT')
174 args['compiler_so'] = compiler + ' ' + opt + ' ' + ccshared
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000175 if linker_so is not None:
Martin v. Löwis2f20dab2001-10-08 13:18:37 +0000176 args['linker_so'] = linker_so
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000177 self.compiler.set_executables(**args)
178
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000179 build_ext.build_extensions(self)
180
Marc-André Lemburg7c6fcda2001-01-26 18:03:24 +0000181 def build_extension(self, ext):
182
183 try:
184 build_ext.build_extension(self, ext)
185 except (CCompilerError, DistutilsError), why:
186 self.announce('WARNING: building of extension "%s" failed: %s' %
187 (ext.name, sys.exc_info()[1]))
Andrew M. Kuchling62686692001-05-21 20:48:09 +0000188 return
Jack Jansenf49c6f92001-11-01 14:44:15 +0000189 # Workaround for Mac OS X: The Carbon-based modules cannot be
190 # reliably imported into a command-line Python
191 if 'Carbon' in ext.extra_link_args:
Michael W. Hudson5b109102002-01-23 15:04:41 +0000192 self.announce(
193 'WARNING: skipping import check for Carbon-based "%s"' %
194 ext.name)
195 return
Jason Tishler24cf7762002-05-22 16:46:15 +0000196 # Workaround for Cygwin: Cygwin currently has fork issues when many
197 # modules have been imported
198 if self.get_platform() == 'cygwin':
199 self.announce('WARNING: skipping import check for Cygwin-based "%s"'
200 % ext.name)
201 return
Michael W. Hudsonaf142892002-01-23 15:07:46 +0000202 ext_filename = os.path.join(
203 self.build_lib,
204 self.get_ext_filename(self.get_ext_fullname(ext.name)))
Andrew M. Kuchling62686692001-05-21 20:48:09 +0000205 try:
Michael W. Hudsonaf142892002-01-23 15:07:46 +0000206 imp.load_dynamic(ext.name, ext_filename)
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000207 except ImportError, why:
Marc-André Lemburg7c6fcda2001-01-26 18:03:24 +0000208
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000209 if 1:
Michael W. Hudson7113d962002-03-01 14:16:31 +0000210 self.announce('*** WARNING: renaming "%s" since importing it'
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000211 ' failed: %s' % (ext.name, why))
212 assert not self.inplace
Michael W. Hudson7113d962002-03-01 14:16:31 +0000213 basename, tail = os.path.splitext(ext_filename)
214 newname = basename + "_failed" + tail
215 if os.path.exists(newname): os.remove(newname)
216 os.rename(ext_filename, newname)
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000217
218 # XXX -- This relies on a Vile HACK in
219 # distutils.command.build_ext.build_extension(). The
220 # _built_objects attribute is stored there strictly for
221 # use here.
Neal Norwitz03ffbcd2002-03-25 14:20:09 +0000222 # If there is a failure, _built_objects may not be there,
223 # so catch the AttributeError and move on.
224 try:
225 for filename in self._built_objects:
226 os.remove(filename)
227 except AttributeError:
228 self.announce('unable to remove files (ignored)')
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000229 else:
230 self.announce('*** WARNING: importing extension "%s" '
231 'failed: %s' % (ext.name, why))
Fred Drake9028d0a2001-12-06 22:59:54 +0000232
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000233 def get_platform (self):
Fredrik Lundhade711a2001-01-24 08:00:28 +0000234 # Get value of sys.platform
235 platform = sys.platform
236 if platform[:6] =='cygwin':
237 platform = 'cygwin'
Andrew M. Kuchling3c044942001-02-06 23:37:23 +0000238 elif platform[:4] =='beos':
239 platform = 'beos'
Jack Jansen244e7612001-12-05 15:54:29 +0000240 elif platform[:6] == 'darwin':
241 platform = 'darwin'
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000242 elif platform[:6] == 'atheos':
243 platform = 'atheos'
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000244
Fredrik Lundhade711a2001-01-24 08:00:28 +0000245 return platform
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000246
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000247 def detect_modules(self):
Fredrik Lundhade711a2001-01-24 08:00:28 +0000248 # Ensure that /usr/local is always used
Michael W. Hudson39230b32002-01-16 15:26:48 +0000249 add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib')
250 add_dir_to_list(self.compiler.include_dirs, '/usr/local/include')
251
Michael W. Hudson90b8e4d2002-08-02 13:55:50 +0000252 if os.path.normpath(sys.prefix) != '/usr':
253 add_dir_to_list(self.compiler.library_dirs,
254 sysconfig.get_config_var("LIBDIR"))
255 add_dir_to_list(self.compiler.include_dirs,
256 sysconfig.get_config_var("INCLUDEDIR"))
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000257
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000258 try:
259 have_unicode = unicode
260 except NameError:
261 have_unicode = 0
262
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000263 # lib_dirs and inc_dirs are used to search for files;
264 # if a file is found in one of those directories, it can
265 # be assumed that no additional -I,-L directives are needed.
266 lib_dirs = self.compiler.library_dirs + ['/lib', '/usr/lib']
Michael W. Hudson5b109102002-01-23 15:04:41 +0000267 inc_dirs = self.compiler.include_dirs + ['/usr/include']
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000268 exts = []
269
Fredrik Lundhade711a2001-01-24 08:00:28 +0000270 platform = self.get_platform()
Martin v. Löwis83012562002-02-14 01:25:37 +0000271 (srcdir,) = sysconfig.get_config_vars('srcdir')
Michael W. Hudson5b109102002-01-23 15:04:41 +0000272
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000273 # Check for AtheOS which has libraries in non-standard locations
274 if platform == 'atheos':
275 lib_dirs += ['/system/libs', '/atheos/autolnk/lib']
276 lib_dirs += os.getenv('LIBRARY_PATH', '').split(os.pathsep)
277 inc_dirs += ['/system/include', '/atheos/autolnk/include']
278 inc_dirs += os.getenv('C_INCLUDE_PATH', '').split(os.pathsep)
279
Fredrik Lundhade711a2001-01-24 08:00:28 +0000280 # Check for MacOS X, which doesn't need libm.a at all
281 math_libs = ['m']
Jack Jansen4439b7c2002-06-26 15:44:30 +0000282 if platform in ['darwin', 'beos', 'mac']:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000283 math_libs = []
Michael W. Hudson5b109102002-01-23 15:04:41 +0000284
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000285 # XXX Omitted modules: gl, pure, dl, SGI-specific modules
286
287 #
288 # The following modules are all pretty straightforward, and compile
289 # on pretty much any POSIXish platform.
290 #
Fredrik Lundhade711a2001-01-24 08:00:28 +0000291
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000292 # Some modules that are normally always on:
293 exts.append( Extension('regex', ['regexmodule.c', 'regexpr.c']) )
294 exts.append( Extension('pcre', ['pcremodule.c', 'pypcre.c']) )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000295
Fred Drake3a40f322001-10-12 21:00:48 +0000296 exts.append( Extension('_hotshot', ['_hotshot.c']) )
Fred Drake2de74712001-02-01 05:26:54 +0000297 exts.append( Extension('_weakref', ['_weakref.c']) )
Andrew M. Kuchlingd5c43062001-01-17 15:59:25 +0000298 exts.append( Extension('xreadlines', ['xreadlinesmodule.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000299
300 # array objects
301 exts.append( Extension('array', ['arraymodule.c']) )
302 # complex math library functions
Andrew M. Kuchling5ddb25f2001-01-23 22:21:11 +0000303 exts.append( Extension('cmath', ['cmathmodule.c'],
304 libraries=math_libs) )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000305
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000306 # math library functions, e.g. sin()
Andrew M. Kuchling5ddb25f2001-01-23 22:21:11 +0000307 exts.append( Extension('math', ['mathmodule.c'],
308 libraries=math_libs) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000309 # fast string operations implemented in C
310 exts.append( Extension('strop', ['stropmodule.c']) )
311 # time operations and variables
Andrew M. Kuchling5ddb25f2001-01-23 22:21:11 +0000312 exts.append( Extension('time', ['timemodule.c'],
313 libraries=math_libs) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000314 # operator.add() and similar goodies
315 exts.append( Extension('operator', ['operator.c']) )
Marc-André Lemburg261b8e22001-02-02 12:12:44 +0000316 # Python C API test module
Tim Petersd66595f2001-02-04 03:09:53 +0000317 exts.append( Extension('_testcapi', ['_testcapimodule.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000318 # static Unicode character database
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000319 if have_unicode:
320 exts.append( Extension('unicodedata', ['unicodedata.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000321 # access to ISO C locale support
Jason Tishlerd28216b2002-08-14 11:13:52 +0000322 if platform in ['cygwin']:
323 locale_libs = ['intl']
324 else:
325 locale_libs = []
326 exts.append( Extension('_locale', ['_localemodule.c'],
327 libraries=locale_libs ) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000328
329 # Modules with some UNIX dependencies -- on by default:
330 # (If you have a really backward UNIX, select and socket may not be
331 # supported...)
332
333 # fcntl(2) and ioctl(2)
334 exts.append( Extension('fcntl', ['fcntlmodule.c']) )
Jack Jansen73aa1ff2002-06-27 22:06:49 +0000335 if platform not in ['mac']:
336 # pwd(3)
337 exts.append( Extension('pwd', ['pwdmodule.c']) )
338 # grp(3)
339 exts.append( Extension('grp', ['grpmodule.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000340 # select(2); not on ancient System V
341 exts.append( Extension('select', ['selectmodule.c']) )
342
343 # The md5 module implements the RSA Data Security, Inc. MD5
Fred Drake38419c02001-12-06 22:24:47 +0000344 # Message-Digest Algorithm, described in RFC 1321. The
345 # necessary files md5c.c and md5.h are included here.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000346 exts.append( Extension('md5', ['md5module.c', 'md5c.c']) )
347
348 # The sha module implements the SHA checksum algorithm.
349 # (NIST's Secure Hash Algorithm.)
350 exts.append( Extension('sha', ['shamodule.c']) )
351
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000352 # Helper module for various ascii-encoders
353 exts.append( Extension('binascii', ['binascii.c']) )
354
355 # Fred Drake's interface to the Python parser
356 exts.append( Extension('parser', ['parsermodule.c']) )
357
Guido van Rossum2e1c09c2002-04-04 17:52:50 +0000358 # cStringIO and cPickle
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000359 exts.append( Extension('cStringIO', ['cStringIO.c']) )
360 exts.append( Extension('cPickle', ['cPickle.c']) )
361
362 # Memory-mapped files (also works on Win32).
Jack Jansen73aa1ff2002-06-27 22:06:49 +0000363 if platform not in ['atheos', 'mac']:
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000364 exts.append( Extension('mmap', ['mmapmodule.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000365
366 # Lance Ellinghaus's modules:
367 # enigma-inspired encryption
368 exts.append( Extension('rotor', ['rotormodule.c']) )
Jack Jansen73aa1ff2002-06-27 22:06:49 +0000369 if platform not in ['mac']:
370 # syslog daemon interface
371 exts.append( Extension('syslog', ['syslogmodule.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000372
373 # George Neville-Neil's timing module:
374 exts.append( Extension('timing', ['timingmodule.c']) )
375
376 #
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000377 # Here ends the simple stuff. From here on, modules need certain
378 # libraries, are platform-specific, or present other surprises.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000379 #
380
381 # Multimedia modules
382 # These don't work for 64-bit platforms!!!
383 # These represent audio samples or images as strings:
384
Fredrik Lundhade711a2001-01-24 08:00:28 +0000385 # Disabled on 64-bit platforms
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000386 if sys.maxint != 9223372036854775807L:
387 # Operations on audio samples
388 exts.append( Extension('audioop', ['audioop.c']) )
389 # Operations on images
390 exts.append( Extension('imageop', ['imageop.c']) )
391 # Read SGI RGB image files (but coded portably)
392 exts.append( Extension('rgbimg', ['rgbimgmodule.c']) )
393
394 # readline
Marc-André Lemburg2efc3232001-01-26 18:23:02 +0000395 if self.compiler.find_library_file(lib_dirs, 'readline'):
396 readline_libs = ['readline']
Andrew M. Kuchling5aa3c4a2001-08-16 20:30:18 +0000397 if self.compiler.find_library_file(lib_dirs,
398 'ncurses'):
399 readline_libs.append('ncurses')
400 elif self.compiler.find_library_file(lib_dirs +
Marc-André Lemburg2efc3232001-01-26 18:23:02 +0000401 ['/usr/lib/termcap'],
402 'termcap'):
403 readline_libs.append('termcap')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000404 exts.append( Extension('readline', ['readline.c'],
Marc-André Lemburg7c6fcda2001-01-26 18:03:24 +0000405 library_dirs=['/usr/lib/termcap'],
Marc-André Lemburg2efc3232001-01-26 18:23:02 +0000406 libraries=readline_libs) )
Jack Jansen73aa1ff2002-06-27 22:06:49 +0000407 if platform not in ['mac']:
408 # crypt module.
409
410 if self.compiler.find_library_file(lib_dirs, 'crypt'):
411 libs = ['crypt']
412 else:
413 libs = []
414 exts.append( Extension('crypt', ['cryptmodule.c'], libraries=libs) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000415
416 # socket(2)
Guido van Rossum47d3a7a2002-06-13 14:41:32 +0000417 exts.append( Extension('_socket', ['socketmodule.c'],
Jeremy Hylton340043e2002-06-13 17:38:11 +0000418 depends = ['socketmodule.h']) )
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000419 # Detect SSL support for the socket module (via _ssl)
Michael W. Hudsonc4c71802002-08-03 16:39:22 +0000420 ssl_incs = find_file('openssl/ssl.h', inc_dirs,
Andrew M. Kuchlinge7c87322001-01-19 16:58:21 +0000421 ['/usr/local/ssl/include',
422 '/usr/contrib/ssl/include/'
423 ]
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000424 )
425 ssl_libs = find_library_file(self.compiler, 'ssl',lib_dirs,
Andrew M. Kuchlinge7c87322001-01-19 16:58:21 +0000426 ['/usr/local/ssl/lib',
427 '/usr/contrib/ssl/lib/'
428 ] )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000429
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000430 if (ssl_incs is not None and
431 ssl_libs is not None):
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000432 exts.append( Extension('_ssl', ['_ssl.c'],
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000433 include_dirs = ssl_incs,
Fredrik Lundhade711a2001-01-24 08:00:28 +0000434 library_dirs = ssl_libs,
Guido van Rossum47d3a7a2002-06-13 14:41:32 +0000435 libraries = ['ssl', 'crypto'],
Jeremy Hylton340043e2002-06-13 17:38:11 +0000436 depends = ['socketmodule.h']), )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000437
438 # Modules that provide persistent dictionary-like semantics. You will
439 # probably want to arrange for at least one of them to be available on
440 # your machine, though none are defined by default because of library
441 # dependencies. The Python module anydbm.py provides an
442 # implementation independent wrapper for these; dumbdbm.py provides
443 # similar functionality (but slower of course) implemented in Python.
444
Martin v. Löwis05d4d562002-12-06 10:25:02 +0000445 # Sleepycat Berkeley DB interface.
Skip Montanaro57454e52002-06-14 20:30:31 +0000446 #
Martin v. Löwis05d4d562002-12-06 10:25:02 +0000447 # This requires the Sleepycat DB code, see
448 # http://www.sleepycat.com/ The earliest supported version of
449 # that library is 3.0, the latest supported version is 4.0
450 # (4.1 is specifically not supported, as that changes the
451 # semantics of transactional databases). A list of available
452 # releases can be found at
Skip Montanaro57454e52002-06-14 20:30:31 +0000453 #
Martin v. Löwis05d4d562002-12-06 10:25:02 +0000454 # http://www.sleepycat.com/update/index.html
Skip Montanaro57454e52002-06-14 20:30:31 +0000455
456 # when sorted in reverse order, keys for this dict must appear in the
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000457 # order you wish to search - e.g., search for db4 before db3
Skip Montanaro57454e52002-06-14 20:30:31 +0000458 db_try_this = {
Martin v. Löwis21645fc2002-11-19 08:30:08 +0000459 'db4': {'libs': ('db-4.0',),
460 'libdirs': ('/usr/local/BerkeleyDB.4.0/lib',
Skip Montanaroccfdde82002-08-15 01:34:38 +0000461 '/usr/local/lib',
Skip Montanaro57454e52002-06-14 20:30:31 +0000462 '/opt/sfw',
463 '/sw/lib',
Skip Montanaro57454e52002-06-14 20:30:31 +0000464 ),
Martin v. Löwis21645fc2002-11-19 08:30:08 +0000465 'incdirs': ('/usr/local/BerkeleyDB.4.0/include',
Martin v. Löwiscc40ced2002-11-09 19:53:04 +0000466 '/usr/local/include/db4',
467 '/opt/sfw/include/db4',
468 '/sw/include/db4',
469 '/usr/include/db4',
Martin v. Löwis05d4d562002-12-06 10:25:02 +0000470 )},
Skip Montanaro57454e52002-06-14 20:30:31 +0000471 'db3': {'libs': ('db-3.3', 'db-3.2', 'db-3.1', 'db-3.0'),
472 'libdirs': ('/usr/local/BerkeleyDB.3.3/lib',
473 '/usr/local/BerkeleyDB.3.2/lib',
474 '/usr/local/BerkeleyDB.3.1/lib',
475 '/usr/local/BerkeleyDB.3.0/lib',
Skip Montanaroccfdde82002-08-15 01:34:38 +0000476 '/usr/local/lib',
Martin v. Löwisa37d61f2002-12-07 14:41:17 +0000477 '/opt/sfw/lib',
Skip Montanaro57454e52002-06-14 20:30:31 +0000478 '/sw/lib',
Skip Montanaro57454e52002-06-14 20:30:31 +0000479 ),
480 'incdirs': ('/usr/local/BerkeleyDB.3.3/include',
481 '/usr/local/BerkeleyDB.3.2/include',
482 '/usr/local/BerkeleyDB.3.1/include',
483 '/usr/local/BerkeleyDB.3.0/include',
Skip Montanaroccfdde82002-08-15 01:34:38 +0000484 '/usr/local/include/db3',
Skip Montanaro57454e52002-06-14 20:30:31 +0000485 '/opt/sfw/include/db3',
486 '/sw/include/db3',
Skip Montanaroccfdde82002-08-15 01:34:38 +0000487 '/usr/include/db3',
Martin v. Löwis05d4d562002-12-06 10:25:02 +0000488 )},
Skip Montanaro57454e52002-06-14 20:30:31 +0000489 }
490
Skip Montanaro57454e52002-06-14 20:30:31 +0000491 db_search_order = db_try_this.keys()
492 db_search_order.sort()
493 db_search_order.reverse()
494
Skip Montanaro57454e52002-06-14 20:30:31 +0000495 class found(Exception): pass
496 try:
Martin v. Löwis05d4d562002-12-06 10:25:02 +0000497 # See whether there is a Sleepycat header in the standard
498 # search path.
499 std_dbinc = None
500 for d in inc_dirs:
501 f = os.path.join(d, "db.h")
502 if os.path.exists(f):
503 f = open(f).read()
504 m = re.search(r"#define\WDB_VERSION_MAJOR\W([1-9]+)", f)
505 if m:
506 std_dbinc = 'db' + m.group(1)
Skip Montanaro57454e52002-06-14 20:30:31 +0000507 for dbkey in db_search_order:
508 dbd = db_try_this[dbkey]
509 for dblib in dbd['libs']:
Martin v. Löwis05d4d562002-12-06 10:25:02 +0000510 # Prefer version-specific includes over standard
511 # include locations.
512 db_incs = find_file('db.h', [], dbd['incdirs'])
513 dblib_dir = find_library_file(self.compiler,
514 dblib,
515 lib_dirs,
516 list(dbd['libdirs']))
517 if (db_incs or dbkey == std_dbinc) and \
518 dblib_dir is not None:
519 dblibs = [dblib]
520 raise found
Skip Montanaro57454e52002-06-14 20:30:31 +0000521 except found:
Jack Jansend1b20452002-07-08 21:39:36 +0000522 dblibs = [dblib]
Barry Warsaw6fe3d702002-06-24 20:27:33 +0000523 # A default source build puts Berkeley DB in something like
524 # /usr/local/Berkeley.3.3 and the lib dir under that isn't
525 # normally on ld.so's search path, unless the sysadmin has hacked
526 # /etc/ld.so.conf. We add the directory to runtime_library_dirs
527 # so the proper -R/--rpath flags get passed to the linker. This
528 # is usually correct and most trouble free, but may cause problems
529 # in some unusual system configurations (e.g. the directory is on
530 # an NFS server that goes away).
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000531 exts.append(Extension('_bsddb', ['_bsddb.c'],
Martin v. Löwis05d4d562002-12-06 10:25:02 +0000532 library_dirs=dblib_dir,
533 runtime_library_dirs=dblib_dir,
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000534 include_dirs=db_incs,
535 libraries=dblibs))
Skip Montanaro57454e52002-06-14 20:30:31 +0000536 else:
537 db_incs = None
538 dblibs = []
539 dblib_dir = None
540
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000541 # The standard Unix dbm module:
Jack Jansend1b20452002-07-08 21:39:36 +0000542 if platform not in ['cygwin']:
Martin v. Löwisa37d61f2002-12-07 14:41:17 +0000543 if find_file("ndbm.h", inc_dirs, []) is not None:
544 # Some systems have -lndbm, others don't
545 if self.compiler.find_library_file(lib_dirs, 'ndbm'):
546 ndbm_libs = ['ndbm']
547 else:
548 ndbm_libs = []
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000549 exts.append( Extension('dbm', ['dbmmodule.c'],
Jack Jansend1b20452002-07-08 21:39:36 +0000550 define_macros=[('HAVE_NDBM_H',None)],
Martin v. Löwisa37d61f2002-12-07 14:41:17 +0000551 libraries = ndbm_libs ) )
Jack Jansend1b20452002-07-08 21:39:36 +0000552 elif (self.compiler.find_library_file(lib_dirs, 'gdbm')
553 and find_file("gdbm/ndbm.h", inc_dirs, []) is not None):
554 exts.append( Extension('dbm', ['dbmmodule.c'],
555 define_macros=[('HAVE_GDBM_NDBM_H',None)],
Skip Montanaro57454e52002-06-14 20:30:31 +0000556 libraries = ['gdbm'] ) )
557 elif db_incs is not None:
558 exts.append( Extension('dbm', ['dbmmodule.c'],
Martin v. Löwisa37d61f2002-12-07 14:41:17 +0000559 library_dirs=dblib_dir,
560 runtime_library_dirs=dblib_dir,
Skip Montanaro57454e52002-06-14 20:30:31 +0000561 include_dirs=db_incs,
Jack Jansend1b20452002-07-08 21:39:36 +0000562 define_macros=[('HAVE_BERKDB_H',None),
563 ('DB_DBM_HSEARCH',None)],
Skip Montanaro57454e52002-06-14 20:30:31 +0000564 libraries=dblibs))
Fredrik Lundhade711a2001-01-24 08:00:28 +0000565
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000566 # Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
567 if (self.compiler.find_library_file(lib_dirs, 'gdbm')):
568 exts.append( Extension('gdbm', ['gdbmmodule.c'],
569 libraries = ['gdbm'] ) )
570
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000571 # The mpz module interfaces to the GNU Multiple Precision library.
Fredrik Lundhade711a2001-01-24 08:00:28 +0000572 # You need to ftp the GNU MP library.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000573 # This was originally written and tested against GMP 1.2 and 1.3.2.
574 # It has been modified by Rob Hooft to work with 2.0.2 as well, but I
Guido van Rossum8efd6ce2001-12-17 17:24:43 +0000575 # haven't tested it recently, and it definitely doesn't work with
576 # GMP 4.0. For more complete modules, refer to
577 # http://gmpy.sourceforge.net and
578 # http://www.egenix.com/files/python/mxNumber.html
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000579
Greg Ward57fc2102001-10-03 19:59:30 +0000580 # A compatible MP library unencumbered by the GPL also exists. It was
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000581 # posted to comp.sources.misc in volume 40 and is widely available from
582 # FTP archive sites. One URL for it is:
583 # ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z
584
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000585 if (self.compiler.find_library_file(lib_dirs, 'gmp')):
586 exts.append( Extension('mpz', ['mpzmodule.c'],
587 libraries = ['gmp'] ) )
588
589
590 # Unix-only modules
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000591 if platform not in ['mac', 'win32']:
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000592 # Steen Lumholt's termios module
593 exts.append( Extension('termios', ['termios.c']) )
594 # Jeremy Hylton's rlimit interface
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000595 if platform not in ['atheos']:
596 exts.append( Extension('resource', ['resource.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000597
Andrew M. Kuchlingcf393f32001-02-21 02:38:24 +0000598 # Sun yellow pages. Some systems have the functions in libc.
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000599 if platform not in ['cygwin', 'atheos']:
Andrew M. Kuchling6efc6e72001-02-27 20:54:23 +0000600 if (self.compiler.find_library_file(lib_dirs, 'nsl')):
601 libs = ['nsl']
602 else:
603 libs = []
604 exts.append( Extension('nis', ['nismodule.c'],
605 libraries = libs) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000606
607 # Curses support, requring the System V version of curses, often
Fredrik Lundhade711a2001-01-24 08:00:28 +0000608 # provided by the ncurses library.
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000609 if platform == 'sunos4':
Andrew M. Kuchlingb69c7582001-02-28 19:49:57 +0000610 inc_dirs += ['/usr/5include']
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000611 lib_dirs += ['/usr/5lib']
612
613 if (self.compiler.find_library_file(lib_dirs, 'ncurses')):
614 curses_libs = ['ncurses']
615 exts.append( Extension('_curses', ['_cursesmodule.c'],
616 libraries = curses_libs) )
Fred Drake38419c02001-12-06 22:24:47 +0000617 elif (self.compiler.find_library_file(lib_dirs, 'curses')
618 and platform != 'darwin'):
Michael W. Hudson5b109102002-01-23 15:04:41 +0000619 # OSX has an old Berkeley curses, not good enough for
620 # the _curses module.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000621 if (self.compiler.find_library_file(lib_dirs, 'terminfo')):
622 curses_libs = ['curses', 'terminfo']
623 else:
624 curses_libs = ['curses', 'termcap']
Fredrik Lundhade711a2001-01-24 08:00:28 +0000625
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000626 exts.append( Extension('_curses', ['_cursesmodule.c'],
627 libraries = curses_libs) )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000628
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000629 # If the curses module is enabled, check for the panel module
Andrew M. Kuchlinge7ffbb22001-12-06 15:57:16 +0000630 if (module_enabled(exts, '_curses') and
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000631 self.compiler.find_library_file(lib_dirs, 'panel')):
632 exts.append( Extension('_curses_panel', ['_curses_panel.c'],
633 libraries = ['panel'] + curses_libs) )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000634
635
Barry Warsaw259b1e12002-08-13 20:09:26 +0000636 # Andrew Kuchling's zlib module. Note that some versions of zlib
637 # 1.1.3 have security problems. See CERT Advisory CA-2002-07:
638 # http://www.cert.org/advisories/CA-2002-07.html
639 #
640 # zlib 1.1.4 is fixed, but at least one vendor (RedHat) has decided to
641 # patch its zlib 1.1.3 package instead of upgrading to 1.1.4. For
642 # now, we still accept 1.1.3, because we think it's difficult to
643 # exploit this in Python, and we'd rather make it RedHat's problem
644 # than our problem <wink>.
645 #
646 # You can upgrade zlib to version 1.1.4 yourself by going to
647 # http://www.gzip.org/zlib/
Guido van Rossume6970912001-04-15 15:16:12 +0000648 zlib_inc = find_file('zlib.h', [], inc_dirs)
649 if zlib_inc is not None:
650 zlib_h = zlib_inc[0] + '/zlib.h'
651 version = '"0.0.0"'
Barry Warsaw259b1e12002-08-13 20:09:26 +0000652 version_req = '"1.1.3"'
Guido van Rossume6970912001-04-15 15:16:12 +0000653 fp = open(zlib_h)
654 while 1:
655 line = fp.readline()
656 if not line:
657 break
Guido van Rossum8cdc03d2002-08-06 17:28:30 +0000658 if line.startswith('#define ZLIB_VERSION'):
Guido van Rossume6970912001-04-15 15:16:12 +0000659 version = line.split()[2]
660 break
661 if version >= version_req:
662 if (self.compiler.find_library_file(lib_dirs, 'z')):
663 exts.append( Extension('zlib', ['zlibmodule.c'],
664 libraries = ['z']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000665
Gustavo Niemeyerf8ca8362002-11-05 16:50:05 +0000666 # Gustavo Niemeyer's bz2 module.
667 if (self.compiler.find_library_file(lib_dirs, 'bz2')):
668 exts.append( Extension('bz2', ['bz2module.c'],
669 libraries = ['bz2']) )
670
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000671 # Interface to the Expat XML parser
672 #
Fred Drakefc8341d2002-06-17 17:55:30 +0000673 # Expat was written by James Clark and is now maintained by a
674 # group of developers on SourceForge; see www.libexpat.org for
675 # more information. The pyexpat module was written by Paul
676 # Prescod after a prototype by Jack Jansen. Source of Expat
677 # 1.95.2 is included in Modules/expat/. Usage of a system
678 # shared libexpat.so/expat.dll is not advised.
679 #
680 # More information on Expat can be found at www.libexpat.org.
681 #
Martin v. Löwiscf453fe2002-02-11 23:27:45 +0000682 if sys.byteorder == "little":
683 xmlbo = "12"
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000684 else:
Martin v. Löwiscf453fe2002-02-11 23:27:45 +0000685 xmlbo = "21"
Martin v. Löwis83012562002-02-14 01:25:37 +0000686 expatinc = os.path.join(os.getcwd(), srcdir, 'Modules', 'expat')
Martin v. Löwiscf453fe2002-02-11 23:27:45 +0000687 exts.append(Extension('pyexpat',
688 sources = [
689 'pyexpat.c',
690 'expat/xmlparse.c',
691 'expat/xmlrole.c',
692 'expat/xmltok.c',
693 ],
694 define_macros = [
695 ('HAVE_EXPAT_H',None),
Martin v. Löwiscf453fe2002-02-11 23:27:45 +0000696 ('XML_NS', '1'),
697 ('XML_DTD', '1'),
698 ('XML_BYTE_ORDER', xmlbo),
699 ('XML_CONTEXT_BYTES','1024'),
700 ],
Martin v. Löwis83012562002-02-14 01:25:37 +0000701 include_dirs = [expatinc]
Martin v. Löwiscf453fe2002-02-11 23:27:45 +0000702 ))
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000703
Michael W. Hudson5b109102002-01-23 15:04:41 +0000704 # Dynamic loading module
Guido van Rossum770acd32002-09-12 14:41:20 +0000705 if sys.maxint == 0x7fffffff:
706 # This requires sizeof(int) == sizeof(long) == sizeof(char*)
707 dl_inc = find_file('dlfcn.h', [], inc_dirs)
708 if (dl_inc is not None) and (platform not in ['atheos']):
709 exts.append( Extension('dl', ['dlmodule.c']) )
Michael W. Hudson5b109102002-01-23 15:04:41 +0000710
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000711 # Platform-specific libraries
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000712 if platform == 'linux2':
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000713 # Linux-specific modules
714 exts.append( Extension('linuxaudiodev', ['linuxaudiodev.c']) )
715
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000716 if platform == 'sunos5':
Fredrik Lundhade711a2001-01-24 08:00:28 +0000717 # SunOS specific modules
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000718 exts.append( Extension('sunaudiodev', ['sunaudiodev.c']) )
Michael W. Hudson5b109102002-01-23 15:04:41 +0000719
Jack Jansen244e7612001-12-05 15:54:29 +0000720 if platform == 'darwin':
Just van Rossum05ced6a2002-11-24 23:15:57 +0000721 # Mac OS X specific modules.
Jack Jansen0b06be72002-06-21 14:48:38 +0000722 exts.append( Extension('_CF', ['cf/_CFmodule.c', 'cf/pycfbridge.c'],
Michael W. Hudson0c46c0c2002-03-07 09:58:56 +0000723 extra_link_args=['-framework', 'CoreFoundation']) )
Jack Jansend1b20452002-07-08 21:39:36 +0000724
Just van Rossum05ced6a2002-11-24 23:15:57 +0000725 exts.append( Extension('gestalt', ['gestaltmodule.c'],
Michael W. Hudson5b109102002-01-23 15:04:41 +0000726 extra_link_args=['-framework', 'Carbon']) )
Just van Rossum05ced6a2002-11-24 23:15:57 +0000727 exts.append( Extension('MacOS', ['macosmodule.c'],
Michael W. Hudson5b109102002-01-23 15:04:41 +0000728 extra_link_args=['-framework', 'Carbon']) )
Just van Rossum05ced6a2002-11-24 23:15:57 +0000729 exts.append( Extension('icglue', ['icgluemodule.c'],
Jack Jansen983258e2002-08-29 21:09:00 +0000730 extra_link_args=['-framework', 'Carbon']) )
Just van Rossum05ced6a2002-11-24 23:15:57 +0000731 exts.append( Extension('macfs',
732 ['macfsmodule.c',
733 '../Python/getapplbycreator.c'],
Jack Jansend0e59fb2002-11-22 15:53:32 +0000734 extra_link_args=['-framework', 'Carbon']) )
Just van Rossum05ced6a2002-11-24 23:15:57 +0000735 exts.append( Extension('_Res', ['res/_Resmodule.c'],
Michael W. Hudson5b109102002-01-23 15:04:41 +0000736 extra_link_args=['-framework', 'Carbon']) )
Just van Rossum05ced6a2002-11-24 23:15:57 +0000737 exts.append( Extension('_Snd', ['snd/_Sndmodule.c'],
Michael W. Hudson5b109102002-01-23 15:04:41 +0000738 extra_link_args=['-framework', 'Carbon']) )
Just van Rossum05ced6a2002-11-24 23:15:57 +0000739 exts.append( Extension('Nav', ['Nav.c'],
740 extra_link_args=['-framework', 'Carbon']) )
741 exts.append( Extension('_AE', ['ae/_AEmodule.c'],
742 extra_link_args=['-framework', 'Carbon']) )
743 exts.append( Extension('_AH', ['ah/_AHmodule.c'],
744 extra_link_args=['-framework', 'Carbon']) )
745 exts.append( Extension('_Alias', ['alias/_Aliasmodule.c'],
746 extra_link_args=['-framework', 'Carbon']) )
747 exts.append( Extension('_App', ['app/_Appmodule.c'],
748 extra_link_args=['-framework', 'Carbon']) )
749 exts.append( Extension('_CarbonEvt', ['carbonevt/_CarbonEvtmodule.c'],
750 extra_link_args=['-framework', 'Carbon']) )
751 exts.append( Extension('_CG', ['cg/_CGmodule.c'],
752 extra_link_args=['-framework', 'ApplicationServices',
753 '-framework', 'Carbon']) )
754 exts.append( Extension('_Cm', ['cm/_Cmmodule.c'],
755 extra_link_args=['-framework', 'Carbon']) )
756 exts.append( Extension('_Ctl', ['ctl/_Ctlmodule.c'],
757 extra_link_args=['-framework', 'Carbon']) )
758 exts.append( Extension('_Dlg', ['dlg/_Dlgmodule.c'],
759 extra_link_args=['-framework', 'Carbon']) )
760 exts.append( Extension('_Drag', ['drag/_Dragmodule.c'],
761 extra_link_args=['-framework', 'Carbon']) )
762 exts.append( Extension('_Evt', ['evt/_Evtmodule.c'],
763 extra_link_args=['-framework', 'Carbon']) )
764 exts.append( Extension('_File', ['file/_Filemodule.c'],
765 extra_link_args=['-framework', 'Carbon']) )
766 exts.append( Extension('_Folder', ['folder/_Foldermodule.c'],
767 extra_link_args=['-framework', 'Carbon']) )
768 exts.append( Extension('_Fm', ['fm/_Fmmodule.c'],
769 extra_link_args=['-framework', 'Carbon']) )
770 exts.append( Extension('_Help', ['help/_Helpmodule.c'],
771 extra_link_args=['-framework', 'Carbon']) )
772 exts.append( Extension('_Icn', ['icn/_Icnmodule.c'],
773 extra_link_args=['-framework', 'Carbon']) )
774 exts.append( Extension('_IBCarbon', ['ibcarbon/_IBCarbon.c'],
775 extra_link_args=['-framework', 'Carbon']) )
776 exts.append( Extension('_List', ['list/_Listmodule.c'],
777 extra_link_args=['-framework', 'Carbon']) )
778 exts.append( Extension('_Menu', ['menu/_Menumodule.c'],
779 extra_link_args=['-framework', 'Carbon']) )
780 exts.append( Extension('_Mlte', ['mlte/_Mltemodule.c'],
781 extra_link_args=['-framework', 'Carbon']) )
782 exts.append( Extension('_Qd', ['qd/_Qdmodule.c'],
783 extra_link_args=['-framework', 'Carbon']) )
784 exts.append( Extension('_Qdoffs', ['qdoffs/_Qdoffsmodule.c'],
785 extra_link_args=['-framework', 'Carbon']) )
786 exts.append( Extension('_Qt', ['qt/_Qtmodule.c'],
787 extra_link_args=['-framework', 'QuickTime',
788 '-framework', 'Carbon']) )
789 exts.append( Extension('_Scrap', ['scrap/_Scrapmodule.c'],
790 extra_link_args=['-framework', 'Carbon']) )
791 exts.append( Extension('_TE', ['te/_TEmodule.c'],
792 extra_link_args=['-framework', 'Carbon']) )
793 # As there is no standardized place (yet) to put
794 # user-installed Mac libraries on OSX, we search for "waste"
795 # in parent directories of the Python source tree. You
796 # should put a symlink to your Waste installation in the
797 # same folder as your python source tree. Or modify the
798 # next few lines:-)
799 waste_incs = find_file("WASTE.h", [],
800 ['../'*n + 'waste/C_C++ Headers' for n in (0,1,2,3,4)])
801 waste_libs = find_library_file(self.compiler, "WASTE", [],
802 ["../"*n + "waste/Static Libraries" for n in (0,1,2,3,4)])
803 if waste_incs != None and waste_libs != None:
804 (srcdir,) = sysconfig.get_config_vars('srcdir')
805 exts.append( Extension('waste',
806 ['waste/wastemodule.c'] + [
807 os.path.join(srcdir, d) for d in
808 'Mac/Wastemods/WEObjectHandlers.c',
809 'Mac/Wastemods/WETabHooks.c',
810 'Mac/Wastemods/WETabs.c'
811 ],
812 include_dirs = waste_incs + [os.path.join(srcdir, 'Mac/Wastemods')],
813 library_dirs = waste_libs,
814 libraries = ['WASTE'],
815 extra_link_args = ['-framework', 'Carbon'],
816 ) )
817 exts.append( Extension('_Win', ['win/_Winmodule.c'],
818 extra_link_args=['-framework', 'Carbon']) )
Michael W. Hudson5b109102002-01-23 15:04:41 +0000819
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000820 self.extensions.extend(exts)
821
822 # Call the method for detecting whether _tkinter can be compiled
823 self.detect_tkinter(inc_dirs, lib_dirs)
Fredrik Lundhade711a2001-01-24 08:00:28 +0000824
Jack Jansen0b06be72002-06-21 14:48:38 +0000825 def detect_tkinter_darwin(self, inc_dirs, lib_dirs):
826 # The _tkinter module, using frameworks. Since frameworks are quite
827 # different the UNIX search logic is not sharable.
828 from os.path import join, exists
829 framework_dirs = [
830 '/System/Library/Frameworks/',
831 '/Library/Frameworks',
832 join(os.getenv('HOME'), '/Library/Frameworks')
833 ]
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000834
Jack Jansen0b06be72002-06-21 14:48:38 +0000835 # Find the directory that contains the Tcl.framwork and Tk.framework
836 # bundles.
837 # XXX distutils should support -F!
838 for F in framework_dirs:
839 # both Tcl.framework and Tk.framework should be present
840 for fw in 'Tcl', 'Tk':
841 if not exists(join(F, fw + '.framework')):
842 break
843 else:
844 # ok, F is now directory with both frameworks. Continure
845 # building
846 break
847 else:
848 # Tk and Tcl frameworks not found. Normal "unix" tkinter search
849 # will now resume.
850 return 0
851
852 # For 8.4a2, we must add -I options that point inside the Tcl and Tk
853 # frameworks. In later release we should hopefully be able to pass
854 # the -F option to gcc, which specifies a framework lookup path.
855 #
856 include_dirs = [
857 join(F, fw + '.framework', H)
858 for fw in 'Tcl', 'Tk'
859 for H in 'Headers', 'Versions/Current/PrivateHeaders'
860 ]
861
862 # For 8.4a2, the X11 headers are not included. Rather than include a
863 # complicated search, this is a hard-coded path. It could bail out
864 # if X11 libs are not found...
865 include_dirs.append('/usr/X11R6/include')
866 frameworks = ['-framework', 'Tcl', '-framework', 'Tk']
867
868 ext = Extension('_tkinter', ['_tkinter.c', 'tkappinit.c'],
869 define_macros=[('WITH_APPINIT', 1)],
870 include_dirs = include_dirs,
871 libraries = [],
872 extra_compile_args = frameworks,
873 extra_link_args = frameworks,
874 )
875 self.extensions.append(ext)
876 return 1
877
878
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000879 def detect_tkinter(self, inc_dirs, lib_dirs):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000880 # The _tkinter module.
Michael W. Hudson5b109102002-01-23 15:04:41 +0000881
Jack Jansen0b06be72002-06-21 14:48:38 +0000882 # Rather than complicate the code below, detecting and building
883 # AquaTk is a separate method. Only one Tkinter will be built on
884 # Darwin - either AquaTk, if it is found, or X11 based Tk.
885 platform = self.get_platform()
886 if platform == 'darwin' and \
887 self.detect_tkinter_darwin(inc_dirs, lib_dirs):
888 return
889
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000890 # Assume we haven't found any of the libraries or include files
Martin v. Löwis3db5b8c2001-07-24 06:54:01 +0000891 # The versions with dots are used on Unix, and the versions without
892 # dots on Windows, for detection by cygwin.
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000893 tcllib = tklib = tcl_includes = tk_includes = None
Martin v. Löwis3db5b8c2001-07-24 06:54:01 +0000894 for version in ['8.4', '84', '8.3', '83', '8.2',
895 '82', '8.1', '81', '8.0', '80']:
Michael W. Hudson5b109102002-01-23 15:04:41 +0000896 tklib = self.compiler.find_library_file(lib_dirs,
897 'tk' + version )
898 tcllib = self.compiler.find_library_file(lib_dirs,
899 'tcl' + version )
900 if tklib and tcllib:
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000901 # Exit the loop when we've found the Tcl/Tk libraries
902 break
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000903
Fredrik Lundhade711a2001-01-24 08:00:28 +0000904 # Now check for the header files
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000905 if tklib and tcllib:
906 # Check for the include files on Debian, where
907 # they're put in /usr/include/{tcl,tk}X.Y
Andrew M. Kuchling9a3fd8c2001-02-06 22:15:27 +0000908 debian_tcl_include = [ '/usr/include/tcl' + version ]
Fred Drake38419c02001-12-06 22:24:47 +0000909 debian_tk_include = [ '/usr/include/tk' + version ] + \
910 debian_tcl_include
Andrew M. Kuchling9a3fd8c2001-02-06 22:15:27 +0000911 tcl_includes = find_file('tcl.h', inc_dirs, debian_tcl_include)
912 tk_includes = find_file('tk.h', inc_dirs, debian_tk_include)
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000913
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000914 if (tcllib is None or tklib is None and
915 tcl_includes is None or tk_includes is None):
916 # Something's missing, so give up
917 return
Fredrik Lundhade711a2001-01-24 08:00:28 +0000918
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000919 # OK... everything seems to be present for Tcl/Tk.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000920
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000921 include_dirs = [] ; libs = [] ; defs = [] ; added_lib_dirs = []
922 for dir in tcl_includes + tk_includes:
923 if dir not in include_dirs:
924 include_dirs.append(dir)
Fredrik Lundhade711a2001-01-24 08:00:28 +0000925
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000926 # Check for various platform-specific directories
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000927 if platform == 'sunos5':
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000928 include_dirs.append('/usr/openwin/include')
929 added_lib_dirs.append('/usr/openwin/lib')
930 elif os.path.exists('/usr/X11R6/include'):
931 include_dirs.append('/usr/X11R6/include')
932 added_lib_dirs.append('/usr/X11R6/lib')
933 elif os.path.exists('/usr/X11R5/include'):
934 include_dirs.append('/usr/X11R5/include')
935 added_lib_dirs.append('/usr/X11R5/lib')
936 else:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000937 # Assume default location for X11
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000938 include_dirs.append('/usr/X11/include')
939 added_lib_dirs.append('/usr/X11/lib')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000940
Andrew M. Kuchling89fb72d2001-09-18 20:32:13 +0000941 # If Cygwin, then verify that X is installed before proceeding
942 if platform == 'cygwin':
943 x11_inc = find_file('X11/Xlib.h', [], inc_dirs)
944 if x11_inc is None:
945 # X header files missing, so give up
946 return
947
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000948 # Check for BLT extension
Fred Drake38419c02001-12-06 22:24:47 +0000949 if self.compiler.find_library_file(lib_dirs + added_lib_dirs,
950 'BLT8.0'):
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000951 defs.append( ('WITH_BLT', 1) )
952 libs.append('BLT8.0')
Martin v. Löwis427a2902002-12-12 20:23:38 +0000953 elif self.compiler.find_library_file(lib_dirs + added_lib_dirs,
954 'BLT'):
955 defs.append( ('WITH_BLT', 1) )
956 libs.append('BLT')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000957
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000958 # Add the Tcl/Tk libraries
Fredrik Lundhade711a2001-01-24 08:00:28 +0000959 libs.append('tk'+version)
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000960 libs.append('tcl'+version)
Fredrik Lundhade711a2001-01-24 08:00:28 +0000961
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000962 if platform in ['aix3', 'aix4']:
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000963 libs.append('ld')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000964
Martin v. Löwis3db5b8c2001-07-24 06:54:01 +0000965 # Finally, link with the X11 libraries (not appropriate on cygwin)
966 if platform != "cygwin":
967 libs.append('X11')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000968
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000969 ext = Extension('_tkinter', ['_tkinter.c', 'tkappinit.c'],
970 define_macros=[('WITH_APPINIT', 1)] + defs,
971 include_dirs = include_dirs,
972 libraries = libs,
973 library_dirs = added_lib_dirs,
974 )
975 self.extensions.append(ext)
Fredrik Lundhade711a2001-01-24 08:00:28 +0000976
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000977 # XXX handle these, but how to detect?
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000978 # *** Uncomment and edit for PIL (TkImaging) extension only:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000979 # -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000980 # *** Uncomment and edit for TOGL extension only:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000981 # -DWITH_TOGL togl.c \
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000982 # *** Uncomment these for TOGL extension only:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000983 # -lGL -lGLU -lXext -lXmu \
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000984
Andrew M. Kuchlingf52d27e2001-05-21 20:29:27 +0000985class PyBuildInstall(install):
986 # Suppress the warning about installation into the lib_dynload
987 # directory, which is not in sys.path when running Python during
988 # installation:
989 def initialize_options (self):
990 install.initialize_options(self)
991 self.warn_dir=0
Michael W. Hudson5b109102002-01-23 15:04:41 +0000992
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000993def main():
Andrew M. Kuchling62686692001-05-21 20:48:09 +0000994 # turn off warnings when deprecated modules are imported
995 import warnings
996 warnings.filterwarnings("ignore",category=DeprecationWarning)
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000997 setup(name = 'Python standard library',
Neil Schemenauere7e2ece2001-01-17 21:58:00 +0000998 version = '%d.%d' % sys.version_info[:2],
Andrew M. Kuchlingf52d27e2001-05-21 20:29:27 +0000999 cmdclass = {'build_ext':PyBuildExt, 'install':PyBuildInstall},
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001000 # The struct module is defined here, because build_ext won't be
1001 # called unless there's at least one extension module defined.
Andrew M. Kuchlingaece4272001-02-28 20:56:49 +00001002 ext_modules=[Extension('struct', ['structmodule.c'])],
1003
1004 # Scripts to install
1005 scripts = ['Tools/scripts/pydoc']
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001006 )
Fredrik Lundhade711a2001-01-24 08:00:28 +00001007
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001008# --install-platlib
1009if __name__ == '__main__':
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001010 main()