blob: 1240ed989f348108b90e4f3bec540f8c44a2c4f5 [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
Michael W. Hudsonaf142892002-01-23 15:07:46 +00006import sys, os, getopt, imp
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']) )
316 # access to the builtin codecs and codec registry
317 exts.append( Extension('_codecs', ['_codecsmodule.c']) )
Marc-André Lemburg261b8e22001-02-02 12:12:44 +0000318 # Python C API test module
Tim Petersd66595f2001-02-04 03:09:53 +0000319 exts.append( Extension('_testcapi', ['_testcapimodule.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000320 # static Unicode character database
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000321 if have_unicode:
322 exts.append( Extension('unicodedata', ['unicodedata.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000323 # access to ISO C locale support
Jason Tishlerd28216b2002-08-14 11:13:52 +0000324 if platform in ['cygwin']:
325 locale_libs = ['intl']
326 else:
327 locale_libs = []
328 exts.append( Extension('_locale', ['_localemodule.c'],
329 libraries=locale_libs ) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000330
331 # Modules with some UNIX dependencies -- on by default:
332 # (If you have a really backward UNIX, select and socket may not be
333 # supported...)
334
335 # fcntl(2) and ioctl(2)
336 exts.append( Extension('fcntl', ['fcntlmodule.c']) )
Jack Jansen73aa1ff2002-06-27 22:06:49 +0000337 if platform not in ['mac']:
338 # pwd(3)
339 exts.append( Extension('pwd', ['pwdmodule.c']) )
340 # grp(3)
341 exts.append( Extension('grp', ['grpmodule.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000342 # select(2); not on ancient System V
343 exts.append( Extension('select', ['selectmodule.c']) )
344
345 # The md5 module implements the RSA Data Security, Inc. MD5
Fred Drake38419c02001-12-06 22:24:47 +0000346 # Message-Digest Algorithm, described in RFC 1321. The
347 # necessary files md5c.c and md5.h are included here.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000348 exts.append( Extension('md5', ['md5module.c', 'md5c.c']) )
349
350 # The sha module implements the SHA checksum algorithm.
351 # (NIST's Secure Hash Algorithm.)
352 exts.append( Extension('sha', ['shamodule.c']) )
353
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000354 # Helper module for various ascii-encoders
355 exts.append( Extension('binascii', ['binascii.c']) )
356
357 # Fred Drake's interface to the Python parser
358 exts.append( Extension('parser', ['parsermodule.c']) )
359
Guido van Rossum2e1c09c2002-04-04 17:52:50 +0000360 # cStringIO and cPickle
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000361 exts.append( Extension('cStringIO', ['cStringIO.c']) )
362 exts.append( Extension('cPickle', ['cPickle.c']) )
363
364 # Memory-mapped files (also works on Win32).
Jack Jansen73aa1ff2002-06-27 22:06:49 +0000365 if platform not in ['atheos', 'mac']:
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000366 exts.append( Extension('mmap', ['mmapmodule.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000367
368 # Lance Ellinghaus's modules:
369 # enigma-inspired encryption
370 exts.append( Extension('rotor', ['rotormodule.c']) )
Jack Jansen73aa1ff2002-06-27 22:06:49 +0000371 if platform not in ['mac']:
372 # syslog daemon interface
373 exts.append( Extension('syslog', ['syslogmodule.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000374
375 # George Neville-Neil's timing module:
376 exts.append( Extension('timing', ['timingmodule.c']) )
377
378 #
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000379 # Here ends the simple stuff. From here on, modules need certain
380 # libraries, are platform-specific, or present other surprises.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000381 #
382
383 # Multimedia modules
384 # These don't work for 64-bit platforms!!!
385 # These represent audio samples or images as strings:
386
Fredrik Lundhade711a2001-01-24 08:00:28 +0000387 # Disabled on 64-bit platforms
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000388 if sys.maxint != 9223372036854775807L:
389 # Operations on audio samples
390 exts.append( Extension('audioop', ['audioop.c']) )
391 # Operations on images
392 exts.append( Extension('imageop', ['imageop.c']) )
393 # Read SGI RGB image files (but coded portably)
394 exts.append( Extension('rgbimg', ['rgbimgmodule.c']) )
395
396 # readline
Marc-André Lemburg2efc3232001-01-26 18:23:02 +0000397 if self.compiler.find_library_file(lib_dirs, 'readline'):
398 readline_libs = ['readline']
Andrew M. Kuchling5aa3c4a2001-08-16 20:30:18 +0000399 if self.compiler.find_library_file(lib_dirs,
400 'ncurses'):
401 readline_libs.append('ncurses')
402 elif self.compiler.find_library_file(lib_dirs +
Marc-André Lemburg2efc3232001-01-26 18:23:02 +0000403 ['/usr/lib/termcap'],
404 'termcap'):
405 readline_libs.append('termcap')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000406 exts.append( Extension('readline', ['readline.c'],
Marc-André Lemburg7c6fcda2001-01-26 18:03:24 +0000407 library_dirs=['/usr/lib/termcap'],
Marc-André Lemburg2efc3232001-01-26 18:23:02 +0000408 libraries=readline_libs) )
Jack Jansen73aa1ff2002-06-27 22:06:49 +0000409 if platform not in ['mac']:
410 # crypt module.
411
412 if self.compiler.find_library_file(lib_dirs, 'crypt'):
413 libs = ['crypt']
414 else:
415 libs = []
416 exts.append( Extension('crypt', ['cryptmodule.c'], libraries=libs) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000417
418 # socket(2)
Guido van Rossum47d3a7a2002-06-13 14:41:32 +0000419 exts.append( Extension('_socket', ['socketmodule.c'],
Jeremy Hylton340043e2002-06-13 17:38:11 +0000420 depends = ['socketmodule.h']) )
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000421 # Detect SSL support for the socket module (via _ssl)
Michael W. Hudsonc4c71802002-08-03 16:39:22 +0000422 ssl_incs = find_file('openssl/ssl.h', inc_dirs,
Andrew M. Kuchlinge7c87322001-01-19 16:58:21 +0000423 ['/usr/local/ssl/include',
424 '/usr/contrib/ssl/include/'
425 ]
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000426 )
427 ssl_libs = find_library_file(self.compiler, 'ssl',lib_dirs,
Andrew M. Kuchlinge7c87322001-01-19 16:58:21 +0000428 ['/usr/local/ssl/lib',
429 '/usr/contrib/ssl/lib/'
430 ] )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000431
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000432 if (ssl_incs is not None and
433 ssl_libs is not None):
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000434 exts.append( Extension('_ssl', ['_ssl.c'],
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000435 include_dirs = ssl_incs,
Fredrik Lundhade711a2001-01-24 08:00:28 +0000436 library_dirs = ssl_libs,
Guido van Rossum47d3a7a2002-06-13 14:41:32 +0000437 libraries = ['ssl', 'crypto'],
Jeremy Hylton340043e2002-06-13 17:38:11 +0000438 depends = ['socketmodule.h']), )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000439
440 # Modules that provide persistent dictionary-like semantics. You will
441 # probably want to arrange for at least one of them to be available on
442 # your machine, though none are defined by default because of library
443 # dependencies. The Python module anydbm.py provides an
444 # implementation independent wrapper for these; dumbdbm.py provides
445 # similar functionality (but slower of course) implemented in Python.
446
Skip Montanaro57454e52002-06-14 20:30:31 +0000447 # Berkeley DB interface.
448 #
449 # This requires the Berkeley DB code, see
450 # ftp://ftp.cs.berkeley.edu/pub/4bsd/db.1.85.tar.gz
451 #
452 # (See http://pybsddb.sourceforge.net/ for an interface to
453 # Berkeley DB 3.x.)
454
455 # when sorted in reverse order, keys for this dict must appear in the
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000456 # order you wish to search - e.g., search for db4 before db3
Skip Montanaro57454e52002-06-14 20:30:31 +0000457 db_try_this = {
Martin v. Löwis21645fc2002-11-19 08:30:08 +0000458 'db4': {'libs': ('db-4.0',),
459 'libdirs': ('/usr/local/BerkeleyDB.4.0/lib',
Skip Montanaroccfdde82002-08-15 01:34:38 +0000460 '/usr/local/lib',
Skip Montanaro57454e52002-06-14 20:30:31 +0000461 '/usr/lib',
462 '/opt/sfw',
463 '/sw/lib',
464 '/lib',
465 ),
Martin v. Löwis21645fc2002-11-19 08:30:08 +0000466 'incdirs': ('/usr/local/BerkeleyDB.4.0/include',
Martin v. Löwiscc40ced2002-11-09 19:53:04 +0000467 '/usr/local/include/db4',
468 '/opt/sfw/include/db4',
469 '/sw/include/db4',
470 '/usr/include/db4',
Skip Montanaro57454e52002-06-14 20:30:31 +0000471 ),
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000472 'incs': ('db.h',)},
Skip Montanaro57454e52002-06-14 20:30:31 +0000473 'db3': {'libs': ('db-3.3', 'db-3.2', 'db-3.1', 'db-3.0'),
474 'libdirs': ('/usr/local/BerkeleyDB.3.3/lib',
475 '/usr/local/BerkeleyDB.3.2/lib',
476 '/usr/local/BerkeleyDB.3.1/lib',
477 '/usr/local/BerkeleyDB.3.0/lib',
Skip Montanaroccfdde82002-08-15 01:34:38 +0000478 '/usr/local/lib',
Skip Montanaro57454e52002-06-14 20:30:31 +0000479 '/opt/sfw',
480 '/sw/lib',
Skip Montanaroccfdde82002-08-15 01:34:38 +0000481 '/usr/lib',
Skip Montanaro57454e52002-06-14 20:30:31 +0000482 '/lib',
483 ),
484 'incdirs': ('/usr/local/BerkeleyDB.3.3/include',
485 '/usr/local/BerkeleyDB.3.2/include',
486 '/usr/local/BerkeleyDB.3.1/include',
487 '/usr/local/BerkeleyDB.3.0/include',
Skip Montanaroccfdde82002-08-15 01:34:38 +0000488 '/usr/local/include/db3',
Skip Montanaro57454e52002-06-14 20:30:31 +0000489 '/opt/sfw/include/db3',
490 '/sw/include/db3',
Skip Montanaroccfdde82002-08-15 01:34:38 +0000491 '/usr/include/db3',
Skip Montanaro57454e52002-06-14 20:30:31 +0000492 ),
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000493 'incs': ('db.h',)},
Skip Montanaro57454e52002-06-14 20:30:31 +0000494 }
495
Skip Montanaro57454e52002-06-14 20:30:31 +0000496 db_search_order = db_try_this.keys()
497 db_search_order.sort()
498 db_search_order.reverse()
499
500 find_lib_file = self.compiler.find_library_file
501 class found(Exception): pass
502 try:
503 for dbkey in db_search_order:
504 dbd = db_try_this[dbkey]
505 for dblib in dbd['libs']:
506 for dbinc in dbd['incs']:
507 db_incs = find_file(dbinc, [], dbd['incdirs'])
508 dblib_dir = find_lib_file(dbd['libdirs'], dblib)
509 if db_incs and dblib_dir:
510 dblib_dir = os.path.dirname(dblib_dir)
511 dblibs = [dblib]
512 raise found
513 except found:
Jack Jansend1b20452002-07-08 21:39:36 +0000514 dblibs = [dblib]
Barry Warsaw6fe3d702002-06-24 20:27:33 +0000515 # A default source build puts Berkeley DB in something like
516 # /usr/local/Berkeley.3.3 and the lib dir under that isn't
517 # normally on ld.so's search path, unless the sysadmin has hacked
518 # /etc/ld.so.conf. We add the directory to runtime_library_dirs
519 # so the proper -R/--rpath flags get passed to the linker. This
520 # is usually correct and most trouble free, but may cause problems
521 # in some unusual system configurations (e.g. the directory is on
522 # an NFS server that goes away).
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000523 exts.append(Extension('_bsddb', ['_bsddb.c'],
524 library_dirs=[dblib_dir],
525 runtime_library_dirs=[dblib_dir],
526 include_dirs=db_incs,
527 libraries=dblibs))
Skip Montanaro57454e52002-06-14 20:30:31 +0000528 else:
529 db_incs = None
530 dblibs = []
531 dblib_dir = None
532
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000533 # The standard Unix dbm module:
Jack Jansend1b20452002-07-08 21:39:36 +0000534 if platform not in ['cygwin']:
535 if (self.compiler.find_library_file(lib_dirs, 'ndbm')
536 and find_file("ndbm.h", inc_dirs, []) is not None):
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000537 exts.append( Extension('dbm', ['dbmmodule.c'],
Jack Jansend1b20452002-07-08 21:39:36 +0000538 define_macros=[('HAVE_NDBM_H',None)],
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000539 libraries = ['ndbm'] ) )
Jack Jansend1b20452002-07-08 21:39:36 +0000540 elif (platform in ['darwin']
541 and find_file("ndbm.h", inc_dirs, []) is not None):
542 # Darwin has ndbm in libc
Neil Schemenauerc3ffef62001-10-21 22:14:44 +0000543 exts.append( Extension('dbm', ['dbmmodule.c'],
Jack Jansend1b20452002-07-08 21:39:36 +0000544 define_macros=[('HAVE_NDBM_H',None)]) )
545 elif (self.compiler.find_library_file(lib_dirs, 'gdbm')
546 and find_file("gdbm/ndbm.h", inc_dirs, []) is not None):
547 exts.append( Extension('dbm', ['dbmmodule.c'],
548 define_macros=[('HAVE_GDBM_NDBM_H',None)],
Skip Montanaro57454e52002-06-14 20:30:31 +0000549 libraries = ['gdbm'] ) )
550 elif db_incs is not None:
551 exts.append( Extension('dbm', ['dbmmodule.c'],
Jack Jansend1b20452002-07-08 21:39:36 +0000552 library_dirs=[dblib_dir],
Skip Montanaro57454e52002-06-14 20:30:31 +0000553 include_dirs=db_incs,
Jack Jansend1b20452002-07-08 21:39:36 +0000554 define_macros=[('HAVE_BERKDB_H',None),
555 ('DB_DBM_HSEARCH',None)],
Skip Montanaro57454e52002-06-14 20:30:31 +0000556 libraries=dblibs))
Fredrik Lundhade711a2001-01-24 08:00:28 +0000557
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000558 # Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
559 if (self.compiler.find_library_file(lib_dirs, 'gdbm')):
560 exts.append( Extension('gdbm', ['gdbmmodule.c'],
561 libraries = ['gdbm'] ) )
562
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000563 # The mpz module interfaces to the GNU Multiple Precision library.
Fredrik Lundhade711a2001-01-24 08:00:28 +0000564 # You need to ftp the GNU MP library.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000565 # This was originally written and tested against GMP 1.2 and 1.3.2.
566 # 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 +0000567 # haven't tested it recently, and it definitely doesn't work with
568 # GMP 4.0. For more complete modules, refer to
569 # http://gmpy.sourceforge.net and
570 # http://www.egenix.com/files/python/mxNumber.html
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000571
Greg Ward57fc2102001-10-03 19:59:30 +0000572 # A compatible MP library unencumbered by the GPL also exists. It was
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000573 # posted to comp.sources.misc in volume 40 and is widely available from
574 # FTP archive sites. One URL for it is:
575 # ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z
576
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000577 if (self.compiler.find_library_file(lib_dirs, 'gmp')):
578 exts.append( Extension('mpz', ['mpzmodule.c'],
579 libraries = ['gmp'] ) )
580
581
582 # Unix-only modules
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000583 if platform not in ['mac', 'win32']:
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000584 # Steen Lumholt's termios module
585 exts.append( Extension('termios', ['termios.c']) )
586 # Jeremy Hylton's rlimit interface
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000587 if platform not in ['atheos']:
588 exts.append( Extension('resource', ['resource.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000589
Andrew M. Kuchlingcf393f32001-02-21 02:38:24 +0000590 # Sun yellow pages. Some systems have the functions in libc.
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000591 if platform not in ['cygwin', 'atheos']:
Andrew M. Kuchling6efc6e72001-02-27 20:54:23 +0000592 if (self.compiler.find_library_file(lib_dirs, 'nsl')):
593 libs = ['nsl']
594 else:
595 libs = []
596 exts.append( Extension('nis', ['nismodule.c'],
597 libraries = libs) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000598
599 # Curses support, requring the System V version of curses, often
Fredrik Lundhade711a2001-01-24 08:00:28 +0000600 # provided by the ncurses library.
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000601 if platform == 'sunos4':
Andrew M. Kuchlingb69c7582001-02-28 19:49:57 +0000602 inc_dirs += ['/usr/5include']
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000603 lib_dirs += ['/usr/5lib']
604
605 if (self.compiler.find_library_file(lib_dirs, 'ncurses')):
606 curses_libs = ['ncurses']
607 exts.append( Extension('_curses', ['_cursesmodule.c'],
608 libraries = curses_libs) )
Fred Drake38419c02001-12-06 22:24:47 +0000609 elif (self.compiler.find_library_file(lib_dirs, 'curses')
610 and platform != 'darwin'):
Michael W. Hudson5b109102002-01-23 15:04:41 +0000611 # OSX has an old Berkeley curses, not good enough for
612 # the _curses module.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000613 if (self.compiler.find_library_file(lib_dirs, 'terminfo')):
614 curses_libs = ['curses', 'terminfo']
615 else:
616 curses_libs = ['curses', 'termcap']
Fredrik Lundhade711a2001-01-24 08:00:28 +0000617
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000618 exts.append( Extension('_curses', ['_cursesmodule.c'],
619 libraries = curses_libs) )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000620
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000621 # If the curses module is enabled, check for the panel module
Andrew M. Kuchlinge7ffbb22001-12-06 15:57:16 +0000622 if (module_enabled(exts, '_curses') and
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000623 self.compiler.find_library_file(lib_dirs, 'panel')):
624 exts.append( Extension('_curses_panel', ['_curses_panel.c'],
625 libraries = ['panel'] + curses_libs) )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000626
627
Barry Warsaw259b1e12002-08-13 20:09:26 +0000628 # Andrew Kuchling's zlib module. Note that some versions of zlib
629 # 1.1.3 have security problems. See CERT Advisory CA-2002-07:
630 # http://www.cert.org/advisories/CA-2002-07.html
631 #
632 # zlib 1.1.4 is fixed, but at least one vendor (RedHat) has decided to
633 # patch its zlib 1.1.3 package instead of upgrading to 1.1.4. For
634 # now, we still accept 1.1.3, because we think it's difficult to
635 # exploit this in Python, and we'd rather make it RedHat's problem
636 # than our problem <wink>.
637 #
638 # You can upgrade zlib to version 1.1.4 yourself by going to
639 # http://www.gzip.org/zlib/
Guido van Rossume6970912001-04-15 15:16:12 +0000640 zlib_inc = find_file('zlib.h', [], inc_dirs)
641 if zlib_inc is not None:
642 zlib_h = zlib_inc[0] + '/zlib.h'
643 version = '"0.0.0"'
Barry Warsaw259b1e12002-08-13 20:09:26 +0000644 version_req = '"1.1.3"'
Guido van Rossume6970912001-04-15 15:16:12 +0000645 fp = open(zlib_h)
646 while 1:
647 line = fp.readline()
648 if not line:
649 break
Guido van Rossum8cdc03d2002-08-06 17:28:30 +0000650 if line.startswith('#define ZLIB_VERSION'):
Guido van Rossume6970912001-04-15 15:16:12 +0000651 version = line.split()[2]
652 break
653 if version >= version_req:
654 if (self.compiler.find_library_file(lib_dirs, 'z')):
655 exts.append( Extension('zlib', ['zlibmodule.c'],
656 libraries = ['z']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000657
Gustavo Niemeyerf8ca8362002-11-05 16:50:05 +0000658 # Gustavo Niemeyer's bz2 module.
659 if (self.compiler.find_library_file(lib_dirs, 'bz2')):
660 exts.append( Extension('bz2', ['bz2module.c'],
661 libraries = ['bz2']) )
662
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000663 # Interface to the Expat XML parser
664 #
Fred Drakefc8341d2002-06-17 17:55:30 +0000665 # Expat was written by James Clark and is now maintained by a
666 # group of developers on SourceForge; see www.libexpat.org for
667 # more information. The pyexpat module was written by Paul
668 # Prescod after a prototype by Jack Jansen. Source of Expat
669 # 1.95.2 is included in Modules/expat/. Usage of a system
670 # shared libexpat.so/expat.dll is not advised.
671 #
672 # More information on Expat can be found at www.libexpat.org.
673 #
Martin v. Löwiscf453fe2002-02-11 23:27:45 +0000674 if sys.byteorder == "little":
675 xmlbo = "12"
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000676 else:
Martin v. Löwiscf453fe2002-02-11 23:27:45 +0000677 xmlbo = "21"
Martin v. Löwis83012562002-02-14 01:25:37 +0000678 expatinc = os.path.join(os.getcwd(), srcdir, 'Modules', 'expat')
Martin v. Löwiscf453fe2002-02-11 23:27:45 +0000679 exts.append(Extension('pyexpat',
680 sources = [
681 'pyexpat.c',
682 'expat/xmlparse.c',
683 'expat/xmlrole.c',
684 'expat/xmltok.c',
685 ],
686 define_macros = [
687 ('HAVE_EXPAT_H',None),
Martin v. Löwiscf453fe2002-02-11 23:27:45 +0000688 ('XML_NS', '1'),
689 ('XML_DTD', '1'),
690 ('XML_BYTE_ORDER', xmlbo),
691 ('XML_CONTEXT_BYTES','1024'),
692 ],
Martin v. Löwis83012562002-02-14 01:25:37 +0000693 include_dirs = [expatinc]
Martin v. Löwiscf453fe2002-02-11 23:27:45 +0000694 ))
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000695
Michael W. Hudson5b109102002-01-23 15:04:41 +0000696 # Dynamic loading module
Guido van Rossum770acd32002-09-12 14:41:20 +0000697 if sys.maxint == 0x7fffffff:
698 # This requires sizeof(int) == sizeof(long) == sizeof(char*)
699 dl_inc = find_file('dlfcn.h', [], inc_dirs)
700 if (dl_inc is not None) and (platform not in ['atheos']):
701 exts.append( Extension('dl', ['dlmodule.c']) )
Michael W. Hudson5b109102002-01-23 15:04:41 +0000702
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000703 # Platform-specific libraries
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000704 if platform == 'linux2':
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000705 # Linux-specific modules
706 exts.append( Extension('linuxaudiodev', ['linuxaudiodev.c']) )
707
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000708 if platform == 'sunos5':
Fredrik Lundhade711a2001-01-24 08:00:28 +0000709 # SunOS specific modules
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000710 exts.append( Extension('sunaudiodev', ['sunaudiodev.c']) )
Michael W. Hudson5b109102002-01-23 15:04:41 +0000711
Jack Jansen244e7612001-12-05 15:54:29 +0000712 if platform == 'darwin':
Just van Rossum05ced6a2002-11-24 23:15:57 +0000713 # Mac OS X specific modules.
Jack Jansen0b06be72002-06-21 14:48:38 +0000714 exts.append( Extension('_CF', ['cf/_CFmodule.c', 'cf/pycfbridge.c'],
Michael W. Hudson0c46c0c2002-03-07 09:58:56 +0000715 extra_link_args=['-framework', 'CoreFoundation']) )
Jack Jansend1b20452002-07-08 21:39:36 +0000716
Just van Rossum05ced6a2002-11-24 23:15:57 +0000717 exts.append( Extension('gestalt', ['gestaltmodule.c'],
Michael W. Hudson5b109102002-01-23 15:04:41 +0000718 extra_link_args=['-framework', 'Carbon']) )
Just van Rossum05ced6a2002-11-24 23:15:57 +0000719 exts.append( Extension('MacOS', ['macosmodule.c'],
Michael W. Hudson5b109102002-01-23 15:04:41 +0000720 extra_link_args=['-framework', 'Carbon']) )
Just van Rossum05ced6a2002-11-24 23:15:57 +0000721 exts.append( Extension('icglue', ['icgluemodule.c'],
Jack Jansen983258e2002-08-29 21:09:00 +0000722 extra_link_args=['-framework', 'Carbon']) )
Just van Rossum05ced6a2002-11-24 23:15:57 +0000723 exts.append( Extension('macfs',
724 ['macfsmodule.c',
725 '../Python/getapplbycreator.c'],
Jack Jansend0e59fb2002-11-22 15:53:32 +0000726 extra_link_args=['-framework', 'Carbon']) )
Just van Rossum05ced6a2002-11-24 23:15:57 +0000727 exts.append( Extension('_Res', ['res/_Resmodule.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('_Snd', ['snd/_Sndmodule.c'],
Michael W. Hudson5b109102002-01-23 15:04:41 +0000730 extra_link_args=['-framework', 'Carbon']) )
Just van Rossum05ced6a2002-11-24 23:15:57 +0000731 exts.append( Extension('Nav', ['Nav.c'],
732 extra_link_args=['-framework', 'Carbon']) )
733 exts.append( Extension('_AE', ['ae/_AEmodule.c'],
734 extra_link_args=['-framework', 'Carbon']) )
735 exts.append( Extension('_AH', ['ah/_AHmodule.c'],
736 extra_link_args=['-framework', 'Carbon']) )
737 exts.append( Extension('_Alias', ['alias/_Aliasmodule.c'],
738 extra_link_args=['-framework', 'Carbon']) )
739 exts.append( Extension('_App', ['app/_Appmodule.c'],
740 extra_link_args=['-framework', 'Carbon']) )
741 exts.append( Extension('_CarbonEvt', ['carbonevt/_CarbonEvtmodule.c'],
742 extra_link_args=['-framework', 'Carbon']) )
743 exts.append( Extension('_CG', ['cg/_CGmodule.c'],
744 extra_link_args=['-framework', 'ApplicationServices',
745 '-framework', 'Carbon']) )
746 exts.append( Extension('_Cm', ['cm/_Cmmodule.c'],
747 extra_link_args=['-framework', 'Carbon']) )
748 exts.append( Extension('_Ctl', ['ctl/_Ctlmodule.c'],
749 extra_link_args=['-framework', 'Carbon']) )
750 exts.append( Extension('_Dlg', ['dlg/_Dlgmodule.c'],
751 extra_link_args=['-framework', 'Carbon']) )
752 exts.append( Extension('_Drag', ['drag/_Dragmodule.c'],
753 extra_link_args=['-framework', 'Carbon']) )
754 exts.append( Extension('_Evt', ['evt/_Evtmodule.c'],
755 extra_link_args=['-framework', 'Carbon']) )
756 exts.append( Extension('_File', ['file/_Filemodule.c'],
757 extra_link_args=['-framework', 'Carbon']) )
758 exts.append( Extension('_Folder', ['folder/_Foldermodule.c'],
759 extra_link_args=['-framework', 'Carbon']) )
760 exts.append( Extension('_Fm', ['fm/_Fmmodule.c'],
761 extra_link_args=['-framework', 'Carbon']) )
762 exts.append( Extension('_Help', ['help/_Helpmodule.c'],
763 extra_link_args=['-framework', 'Carbon']) )
764 exts.append( Extension('_Icn', ['icn/_Icnmodule.c'],
765 extra_link_args=['-framework', 'Carbon']) )
766 exts.append( Extension('_IBCarbon', ['ibcarbon/_IBCarbon.c'],
767 extra_link_args=['-framework', 'Carbon']) )
768 exts.append( Extension('_List', ['list/_Listmodule.c'],
769 extra_link_args=['-framework', 'Carbon']) )
770 exts.append( Extension('_Menu', ['menu/_Menumodule.c'],
771 extra_link_args=['-framework', 'Carbon']) )
772 exts.append( Extension('_Mlte', ['mlte/_Mltemodule.c'],
773 extra_link_args=['-framework', 'Carbon']) )
774 exts.append( Extension('_Qd', ['qd/_Qdmodule.c'],
775 extra_link_args=['-framework', 'Carbon']) )
776 exts.append( Extension('_Qdoffs', ['qdoffs/_Qdoffsmodule.c'],
777 extra_link_args=['-framework', 'Carbon']) )
778 exts.append( Extension('_Qt', ['qt/_Qtmodule.c'],
779 extra_link_args=['-framework', 'QuickTime',
780 '-framework', 'Carbon']) )
781 exts.append( Extension('_Scrap', ['scrap/_Scrapmodule.c'],
782 extra_link_args=['-framework', 'Carbon']) )
783 exts.append( Extension('_TE', ['te/_TEmodule.c'],
784 extra_link_args=['-framework', 'Carbon']) )
785 # As there is no standardized place (yet) to put
786 # user-installed Mac libraries on OSX, we search for "waste"
787 # in parent directories of the Python source tree. You
788 # should put a symlink to your Waste installation in the
789 # same folder as your python source tree. Or modify the
790 # next few lines:-)
791 waste_incs = find_file("WASTE.h", [],
792 ['../'*n + 'waste/C_C++ Headers' for n in (0,1,2,3,4)])
793 waste_libs = find_library_file(self.compiler, "WASTE", [],
794 ["../"*n + "waste/Static Libraries" for n in (0,1,2,3,4)])
795 if waste_incs != None and waste_libs != None:
796 (srcdir,) = sysconfig.get_config_vars('srcdir')
797 exts.append( Extension('waste',
798 ['waste/wastemodule.c'] + [
799 os.path.join(srcdir, d) for d in
800 'Mac/Wastemods/WEObjectHandlers.c',
801 'Mac/Wastemods/WETabHooks.c',
802 'Mac/Wastemods/WETabs.c'
803 ],
804 include_dirs = waste_incs + [os.path.join(srcdir, 'Mac/Wastemods')],
805 library_dirs = waste_libs,
806 libraries = ['WASTE'],
807 extra_link_args = ['-framework', 'Carbon'],
808 ) )
809 exts.append( Extension('_Win', ['win/_Winmodule.c'],
810 extra_link_args=['-framework', 'Carbon']) )
Michael W. Hudson5b109102002-01-23 15:04:41 +0000811
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000812 self.extensions.extend(exts)
813
814 # Call the method for detecting whether _tkinter can be compiled
815 self.detect_tkinter(inc_dirs, lib_dirs)
Fredrik Lundhade711a2001-01-24 08:00:28 +0000816
Jack Jansen0b06be72002-06-21 14:48:38 +0000817 def detect_tkinter_darwin(self, inc_dirs, lib_dirs):
818 # The _tkinter module, using frameworks. Since frameworks are quite
819 # different the UNIX search logic is not sharable.
820 from os.path import join, exists
821 framework_dirs = [
822 '/System/Library/Frameworks/',
823 '/Library/Frameworks',
824 join(os.getenv('HOME'), '/Library/Frameworks')
825 ]
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000826
Jack Jansen0b06be72002-06-21 14:48:38 +0000827 # Find the directory that contains the Tcl.framwork and Tk.framework
828 # bundles.
829 # XXX distutils should support -F!
830 for F in framework_dirs:
831 # both Tcl.framework and Tk.framework should be present
832 for fw in 'Tcl', 'Tk':
833 if not exists(join(F, fw + '.framework')):
834 break
835 else:
836 # ok, F is now directory with both frameworks. Continure
837 # building
838 break
839 else:
840 # Tk and Tcl frameworks not found. Normal "unix" tkinter search
841 # will now resume.
842 return 0
843
844 # For 8.4a2, we must add -I options that point inside the Tcl and Tk
845 # frameworks. In later release we should hopefully be able to pass
846 # the -F option to gcc, which specifies a framework lookup path.
847 #
848 include_dirs = [
849 join(F, fw + '.framework', H)
850 for fw in 'Tcl', 'Tk'
851 for H in 'Headers', 'Versions/Current/PrivateHeaders'
852 ]
853
854 # For 8.4a2, the X11 headers are not included. Rather than include a
855 # complicated search, this is a hard-coded path. It could bail out
856 # if X11 libs are not found...
857 include_dirs.append('/usr/X11R6/include')
858 frameworks = ['-framework', 'Tcl', '-framework', 'Tk']
859
860 ext = Extension('_tkinter', ['_tkinter.c', 'tkappinit.c'],
861 define_macros=[('WITH_APPINIT', 1)],
862 include_dirs = include_dirs,
863 libraries = [],
864 extra_compile_args = frameworks,
865 extra_link_args = frameworks,
866 )
867 self.extensions.append(ext)
868 return 1
869
870
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000871 def detect_tkinter(self, inc_dirs, lib_dirs):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000872 # The _tkinter module.
Michael W. Hudson5b109102002-01-23 15:04:41 +0000873
Jack Jansen0b06be72002-06-21 14:48:38 +0000874 # Rather than complicate the code below, detecting and building
875 # AquaTk is a separate method. Only one Tkinter will be built on
876 # Darwin - either AquaTk, if it is found, or X11 based Tk.
877 platform = self.get_platform()
878 if platform == 'darwin' and \
879 self.detect_tkinter_darwin(inc_dirs, lib_dirs):
880 return
881
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000882 # Assume we haven't found any of the libraries or include files
Martin v. Löwis3db5b8c2001-07-24 06:54:01 +0000883 # The versions with dots are used on Unix, and the versions without
884 # dots on Windows, for detection by cygwin.
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000885 tcllib = tklib = tcl_includes = tk_includes = None
Martin v. Löwis3db5b8c2001-07-24 06:54:01 +0000886 for version in ['8.4', '84', '8.3', '83', '8.2',
887 '82', '8.1', '81', '8.0', '80']:
Michael W. Hudson5b109102002-01-23 15:04:41 +0000888 tklib = self.compiler.find_library_file(lib_dirs,
889 'tk' + version )
890 tcllib = self.compiler.find_library_file(lib_dirs,
891 'tcl' + version )
892 if tklib and tcllib:
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000893 # Exit the loop when we've found the Tcl/Tk libraries
894 break
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000895
Fredrik Lundhade711a2001-01-24 08:00:28 +0000896 # Now check for the header files
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000897 if tklib and tcllib:
898 # Check for the include files on Debian, where
899 # they're put in /usr/include/{tcl,tk}X.Y
Andrew M. Kuchling9a3fd8c2001-02-06 22:15:27 +0000900 debian_tcl_include = [ '/usr/include/tcl' + version ]
Fred Drake38419c02001-12-06 22:24:47 +0000901 debian_tk_include = [ '/usr/include/tk' + version ] + \
902 debian_tcl_include
Andrew M. Kuchling9a3fd8c2001-02-06 22:15:27 +0000903 tcl_includes = find_file('tcl.h', inc_dirs, debian_tcl_include)
904 tk_includes = find_file('tk.h', inc_dirs, debian_tk_include)
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000905
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000906 if (tcllib is None or tklib is None and
907 tcl_includes is None or tk_includes is None):
908 # Something's missing, so give up
909 return
Fredrik Lundhade711a2001-01-24 08:00:28 +0000910
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000911 # OK... everything seems to be present for Tcl/Tk.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000912
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000913 include_dirs = [] ; libs = [] ; defs = [] ; added_lib_dirs = []
914 for dir in tcl_includes + tk_includes:
915 if dir not in include_dirs:
916 include_dirs.append(dir)
Fredrik Lundhade711a2001-01-24 08:00:28 +0000917
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000918 # Check for various platform-specific directories
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000919 if platform == 'sunos5':
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000920 include_dirs.append('/usr/openwin/include')
921 added_lib_dirs.append('/usr/openwin/lib')
922 elif os.path.exists('/usr/X11R6/include'):
923 include_dirs.append('/usr/X11R6/include')
924 added_lib_dirs.append('/usr/X11R6/lib')
925 elif os.path.exists('/usr/X11R5/include'):
926 include_dirs.append('/usr/X11R5/include')
927 added_lib_dirs.append('/usr/X11R5/lib')
928 else:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000929 # Assume default location for X11
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000930 include_dirs.append('/usr/X11/include')
931 added_lib_dirs.append('/usr/X11/lib')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000932
Andrew M. Kuchling89fb72d2001-09-18 20:32:13 +0000933 # If Cygwin, then verify that X is installed before proceeding
934 if platform == 'cygwin':
935 x11_inc = find_file('X11/Xlib.h', [], inc_dirs)
936 if x11_inc is None:
937 # X header files missing, so give up
938 return
939
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000940 # Check for BLT extension
Fred Drake38419c02001-12-06 22:24:47 +0000941 if self.compiler.find_library_file(lib_dirs + added_lib_dirs,
942 'BLT8.0'):
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000943 defs.append( ('WITH_BLT', 1) )
944 libs.append('BLT8.0')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000945
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000946 # Add the Tcl/Tk libraries
Fredrik Lundhade711a2001-01-24 08:00:28 +0000947 libs.append('tk'+version)
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000948 libs.append('tcl'+version)
Fredrik Lundhade711a2001-01-24 08:00:28 +0000949
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000950 if platform in ['aix3', 'aix4']:
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000951 libs.append('ld')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000952
Martin v. Löwis3db5b8c2001-07-24 06:54:01 +0000953 # Finally, link with the X11 libraries (not appropriate on cygwin)
954 if platform != "cygwin":
955 libs.append('X11')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000956
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000957 ext = Extension('_tkinter', ['_tkinter.c', 'tkappinit.c'],
958 define_macros=[('WITH_APPINIT', 1)] + defs,
959 include_dirs = include_dirs,
960 libraries = libs,
961 library_dirs = added_lib_dirs,
962 )
963 self.extensions.append(ext)
Fredrik Lundhade711a2001-01-24 08:00:28 +0000964
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000965 # XXX handle these, but how to detect?
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000966 # *** Uncomment and edit for PIL (TkImaging) extension only:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000967 # -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000968 # *** Uncomment and edit for TOGL extension only:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000969 # -DWITH_TOGL togl.c \
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000970 # *** Uncomment these for TOGL extension only:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000971 # -lGL -lGLU -lXext -lXmu \
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000972
Andrew M. Kuchlingf52d27e2001-05-21 20:29:27 +0000973class PyBuildInstall(install):
974 # Suppress the warning about installation into the lib_dynload
975 # directory, which is not in sys.path when running Python during
976 # installation:
977 def initialize_options (self):
978 install.initialize_options(self)
979 self.warn_dir=0
Michael W. Hudson5b109102002-01-23 15:04:41 +0000980
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000981def main():
Andrew M. Kuchling62686692001-05-21 20:48:09 +0000982 # turn off warnings when deprecated modules are imported
983 import warnings
984 warnings.filterwarnings("ignore",category=DeprecationWarning)
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000985 setup(name = 'Python standard library',
Neil Schemenauere7e2ece2001-01-17 21:58:00 +0000986 version = '%d.%d' % sys.version_info[:2],
Andrew M. Kuchlingf52d27e2001-05-21 20:29:27 +0000987 cmdclass = {'build_ext':PyBuildExt, 'install':PyBuildInstall},
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000988 # The struct module is defined here, because build_ext won't be
989 # called unless there's at least one extension module defined.
Andrew M. Kuchlingaece4272001-02-28 20:56:49 +0000990 ext_modules=[Extension('struct', ['structmodule.c'])],
991
992 # Scripts to install
993 scripts = ['Tools/scripts/pydoc']
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000994 )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000995
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000996# --install-platlib
997if __name__ == '__main__':
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000998 main()