blob: faf2c33386445467cc9743e8a08348fa598df06b [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
Brett Cannon84667c02004-12-07 03:25:18 +00006import sys, os, imp, re, optparse
Christian Heimes8608d912008-01-25 15:52:11 +00007from glob import glob
Gregory P. Smith0902cac2008-05-27 08:40:09 +00008from platform import machine as platform_machine
Michael W. Hudson529a5052002-12-17 16:47:17 +00009
10from distutils import log
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000011from distutils import sysconfig
Andrew M. Kuchling8d7f0862001-02-23 16:32:32 +000012from distutils import text_file
Marc-André Lemburg7c6fcda2001-01-26 18:03:24 +000013from distutils.errors import *
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000014from distutils.core import Extension, setup
15from distutils.command.build_ext import build_ext
Andrew M. Kuchlingf52d27e2001-05-21 20:29:27 +000016from distutils.command.install import install
Michael W. Hudson529a5052002-12-17 16:47:17 +000017from distutils.command.install_lib import install_lib
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000018
19# This global variable is used to hold the list of modules to be disabled.
20disabled_module_list = []
21
Michael W. Hudson39230b32002-01-16 15:26:48 +000022def add_dir_to_list(dirlist, dir):
23 """Add the directory 'dir' to the list 'dirlist' (at the front) if
24 1) 'dir' is not already in 'dirlist'
25 2) 'dir' actually exists, and is a directory."""
Jack Jansen4439b7c2002-06-26 15:44:30 +000026 if dir is not None and os.path.isdir(dir) and dir not in dirlist:
Michael W. Hudson39230b32002-01-16 15:26:48 +000027 dirlist.insert(0, dir)
28
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000029def find_file(filename, std_dirs, paths):
30 """Searches for the directory where a given file is located,
31 and returns a possibly-empty list of additional directories, or None
32 if the file couldn't be found at all.
Fredrik Lundhade711a2001-01-24 08:00:28 +000033
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000034 'filename' is the name of a file, such as readline.h or libcrypto.a.
35 'std_dirs' is the list of standard system directories; if the
36 file is found in one of them, no additional directives are needed.
37 'paths' is a list of additional locations to check; if the file is
38 found in one of them, the resulting list will contain the directory.
39 """
40
41 # Check the standard locations
42 for dir in std_dirs:
43 f = os.path.join(dir, filename)
44 if os.path.exists(f): return []
45
46 # Check the additional directories
47 for dir in paths:
48 f = os.path.join(dir, filename)
49 if os.path.exists(f):
50 return [dir]
51
52 # Not found anywhere
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000053 return None
54
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000055def find_library_file(compiler, libname, std_dirs, paths):
Andrew M. Kuchlinga246d9f2002-11-27 13:43:46 +000056 result = compiler.find_library_file(std_dirs + paths, libname)
57 if result is None:
58 return None
Fredrik Lundhade711a2001-01-24 08:00:28 +000059
Andrew M. Kuchlinga246d9f2002-11-27 13:43:46 +000060 # Check whether the found file is in one of the standard directories
61 dirname = os.path.dirname(result)
62 for p in std_dirs:
63 # Ensure path doesn't end with path separator
Skip Montanaro9f5178a2003-05-06 20:59:57 +000064 p = p.rstrip(os.sep)
Andrew M. Kuchlinga246d9f2002-11-27 13:43:46 +000065 if p == dirname:
66 return [ ]
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +000067
Andrew M. Kuchlinga246d9f2002-11-27 13:43:46 +000068 # Otherwise, it must have been in one of the additional directories,
69 # so we have to figure out which one.
70 for p in paths:
71 # Ensure path doesn't end with path separator
Skip Montanaro9f5178a2003-05-06 20:59:57 +000072 p = p.rstrip(os.sep)
Andrew M. Kuchlinga246d9f2002-11-27 13:43:46 +000073 if p == dirname:
74 return [p]
75 else:
76 assert False, "Internal error: Path not found in std_dirs or paths"
Tim Peters2c60f7a2003-01-29 03:49:43 +000077
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000078def module_enabled(extlist, modname):
79 """Returns whether the module 'modname' is present in the list
80 of extensions 'extlist'."""
81 extlist = [ext for ext in extlist if ext.name == modname]
82 return len(extlist)
Fredrik Lundhade711a2001-01-24 08:00:28 +000083
Jack Jansen144ebcc2001-08-05 22:31:19 +000084def find_module_file(module, dirlist):
85 """Find a module in a set of possible folders. If it is not found
86 return the unadorned filename"""
87 list = find_file(module, [], dirlist)
88 if not list:
89 return module
90 if len(list) > 1:
Guido van Rossum12471d62003-02-20 02:11:43 +000091 log.info("WARNING: multiple copies of %s found"%module)
Jack Jansen144ebcc2001-08-05 22:31:19 +000092 return os.path.join(list[0], module)
Michael W. Hudson5b109102002-01-23 15:04:41 +000093
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000094class PyBuildExt(build_ext):
Fredrik Lundhade711a2001-01-24 08:00:28 +000095
Skip Montanarod1287322007-03-06 15:41:38 +000096 def __init__(self, dist):
97 build_ext.__init__(self, dist)
98 self.failed = []
99
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000100 def build_extensions(self):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000101
102 # Detect which modules should be compiled
Skip Montanarod1287322007-03-06 15:41:38 +0000103 missing = self.detect_modules()
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000104
105 # Remove modules that are present on the disabled list
Christian Heimesb222bbc2008-01-18 09:51:43 +0000106 extensions = [ext for ext in self.extensions
107 if ext.name not in disabled_module_list]
108 # move ctypes to the end, it depends on other modules
109 ext_map = dict((ext.name, i) for i, ext in enumerate(extensions))
110 if "_ctypes" in ext_map:
111 ctypes = extensions.pop(ext_map["_ctypes"])
112 extensions.append(ctypes)
113 self.extensions = extensions
Fredrik Lundhade711a2001-01-24 08:00:28 +0000114
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000115 # Fix up the autodetected modules, prefixing all the source files
116 # with Modules/ and adding Python's include directory to the path.
117 (srcdir,) = sysconfig.get_config_vars('srcdir')
Guido van Rossume0fea6c2002-10-14 20:48:09 +0000118 if not srcdir:
119 # Maybe running on Windows but not using CYGWIN?
120 raise ValueError("No source directory; cannot proceed.")
Neil Schemenauer0189ddc2009-02-06 00:21:55 +0000121 srcdir = os.path.abspath(srcdir)
Neil Schemenauerc59c5f32009-02-05 16:32:29 +0000122 moddirlist = [os.path.join(srcdir, 'Modules')]
Michael W. Hudson5b109102002-01-23 15:04:41 +0000123
Jack Jansen144ebcc2001-08-05 22:31:19 +0000124 # Platform-dependent module source and include directories
Neil Schemenauer38870cb2009-02-05 22:14:04 +0000125 incdirlist = []
Jack Jansen144ebcc2001-08-05 22:31:19 +0000126 platform = self.get_platform()
Tim Peters66cb0182004-08-26 05:23:19 +0000127 if platform in ('darwin', 'mac') and ("--disable-toolbox-glue" not in
Brett Cannoncc8a4f62004-08-26 01:44:07 +0000128 sysconfig.get_config_var("CONFIG_ARGS")):
Jack Jansen144ebcc2001-08-05 22:31:19 +0000129 # Mac OS X also includes some mac-specific modules
Neil Schemenauerc59c5f32009-02-05 16:32:29 +0000130 macmoddir = os.path.join(srcdir, 'Mac/Modules')
Jack Jansen144ebcc2001-08-05 22:31:19 +0000131 moddirlist.append(macmoddir)
Neil Schemenauer38870cb2009-02-05 22:14:04 +0000132 incdirlist.append(os.path.join(srcdir, 'Mac/Include'))
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000133
Andrew M. Kuchling3da989c2001-02-28 22:49:26 +0000134 # Fix up the paths for scripts, too
135 self.distribution.scripts = [os.path.join(srcdir, filename)
136 for filename in self.distribution.scripts]
137
Christian Heimes8608d912008-01-25 15:52:11 +0000138 # Python header files
Neil Schemenauerc59c5f32009-02-05 16:32:29 +0000139 headers = [sysconfig.get_config_h_filename()]
140 headers += glob(os.path.join(sysconfig.get_python_inc(), "*.h"))
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000141 for ext in self.extensions[:]:
Jack Jansen144ebcc2001-08-05 22:31:19 +0000142 ext.sources = [ find_module_file(filename, moddirlist)
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000143 for filename in ext.sources ]
Jeremy Hylton340043e2002-06-13 17:38:11 +0000144 if ext.depends is not None:
Neil Schemenauerc59c5f32009-02-05 16:32:29 +0000145 ext.depends = [find_module_file(filename, moddirlist)
Jeremy Hylton340043e2002-06-13 17:38:11 +0000146 for filename in ext.depends]
Christian Heimes8608d912008-01-25 15:52:11 +0000147 else:
148 ext.depends = []
149 # re-compile extensions if a header file has been changed
150 ext.depends.extend(headers)
151
Neil Schemenauer38870cb2009-02-05 22:14:04 +0000152 # platform specific include directories
153 ext.include_dirs.extend(incdirlist)
154
Andrew M. Kuchlinge7c87322001-01-19 16:58:21 +0000155 # If a module has already been built statically,
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000156 # don't build it here
Andrew M. Kuchlinge7c87322001-01-19 16:58:21 +0000157 if ext.name in sys.builtin_module_names:
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000158 self.extensions.remove(ext)
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000159
Jack Jansen4439b7c2002-06-26 15:44:30 +0000160 if platform != 'mac':
Georg Brandle08fa292005-12-27 18:24:27 +0000161 # Parse Modules/Setup and Modules/Setup.local to figure out which
162 # modules are turned on in the file.
Jack Jansen4439b7c2002-06-26 15:44:30 +0000163 remove_modules = []
Georg Brandle08fa292005-12-27 18:24:27 +0000164 for filename in ('Modules/Setup', 'Modules/Setup.local'):
165 input = text_file.TextFile(filename, join_lines=1)
166 while 1:
167 line = input.readline()
168 if not line: break
169 line = line.split()
170 remove_modules.append(line[0])
171 input.close()
Tim Peters1b27f862005-12-30 18:42:42 +0000172
Jack Jansen4439b7c2002-06-26 15:44:30 +0000173 for ext in self.extensions[:]:
174 if ext.name in remove_modules:
175 self.extensions.remove(ext)
Michael W. Hudson5b109102002-01-23 15:04:41 +0000176
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000177 # When you run "make CC=altcc" or something similar, you really want
178 # those environment variables passed into the setup.py phase. Here's
179 # a small set of useful ones.
180 compiler = os.environ.get('CC')
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000181 args = {}
182 # unfortunately, distutils doesn't let us provide separate C and C++
183 # compilers
184 if compiler is not None:
Martin v. Löwisd7c795e2005-04-25 07:14:03 +0000185 (ccshared,cflags) = sysconfig.get_config_vars('CCSHARED','CFLAGS')
186 args['compiler_so'] = compiler + ' ' + ccshared + ' ' + cflags
Tarek Ziadée670e5a2009-07-06 12:50:46 +0000187 self.compiler_obj.set_executables(**args)
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000188
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000189 build_ext.build_extensions(self)
190
Skip Montanarod1287322007-03-06 15:41:38 +0000191 longest = max([len(e.name) for e in self.extensions])
192 if self.failed:
193 longest = max(longest, max([len(name) for name in self.failed]))
194
195 def print_three_column(lst):
Georg Brandle95cf1c2007-03-06 17:49:14 +0000196 lst.sort(key=str.lower)
Skip Montanarod1287322007-03-06 15:41:38 +0000197 # guarantee zip() doesn't drop anything
198 while len(lst) % 3:
199 lst.append("")
200 for e, f, g in zip(lst[::3], lst[1::3], lst[2::3]):
201 print "%-*s %-*s %-*s" % (longest, e, longest, f,
202 longest, g)
Skip Montanarod1287322007-03-06 15:41:38 +0000203
204 if missing:
205 print
Georg Brandl40f982f2008-12-28 11:58:49 +0000206 print ("Python build finished, but the necessary bits to build "
207 "these modules were not found:")
Skip Montanarod1287322007-03-06 15:41:38 +0000208 print_three_column(missing)
Jeffrey Yasskin87997562007-08-22 23:14:27 +0000209 print ("To find the necessary bits, look in setup.py in"
210 " detect_modules() for the module's name.")
211 print
Skip Montanarod1287322007-03-06 15:41:38 +0000212
213 if self.failed:
214 failed = self.failed[:]
215 print
216 print "Failed to build these modules:"
217 print_three_column(failed)
Jeffrey Yasskin87997562007-08-22 23:14:27 +0000218 print
Skip Montanarod1287322007-03-06 15:41:38 +0000219
Marc-André Lemburg7c6fcda2001-01-26 18:03:24 +0000220 def build_extension(self, ext):
221
Thomas Hellereba43c12006-04-07 19:04:09 +0000222 if ext.name == '_ctypes':
Thomas Heller795246c2006-04-07 19:27:56 +0000223 if not self.configure_ctypes(ext):
224 return
Thomas Hellereba43c12006-04-07 19:04:09 +0000225
Marc-André Lemburg7c6fcda2001-01-26 18:03:24 +0000226 try:
227 build_ext.build_extension(self, ext)
228 except (CCompilerError, DistutilsError), why:
229 self.announce('WARNING: building of extension "%s" failed: %s' %
230 (ext.name, sys.exc_info()[1]))
Skip Montanarod1287322007-03-06 15:41:38 +0000231 self.failed.append(ext.name)
Andrew M. Kuchling62686692001-05-21 20:48:09 +0000232 return
Jack Jansenf49c6f92001-11-01 14:44:15 +0000233 # Workaround for Mac OS X: The Carbon-based modules cannot be
234 # reliably imported into a command-line Python
235 if 'Carbon' in ext.extra_link_args:
Michael W. Hudson5b109102002-01-23 15:04:41 +0000236 self.announce(
237 'WARNING: skipping import check for Carbon-based "%s"' %
238 ext.name)
239 return
Ronald Oussoren5640ce22008-06-05 12:58:24 +0000240
241 if self.get_platform() == 'darwin' and (
242 sys.maxint > 2**32 and '-arch' in ext.extra_link_args):
243 # Don't bother doing an import check when an extension was
244 # build with an explicit '-arch' flag on OSX. That's currently
245 # only used to build 32-bit only extensions in a 4-way
246 # universal build and loading 32-bit code into a 64-bit
247 # process will fail.
248 self.announce(
249 'WARNING: skipping import check for "%s"' %
250 ext.name)
251 return
252
Jason Tishler24cf7762002-05-22 16:46:15 +0000253 # Workaround for Cygwin: Cygwin currently has fork issues when many
254 # modules have been imported
255 if self.get_platform() == 'cygwin':
256 self.announce('WARNING: skipping import check for Cygwin-based "%s"'
257 % ext.name)
258 return
Michael W. Hudsonaf142892002-01-23 15:07:46 +0000259 ext_filename = os.path.join(
260 self.build_lib,
261 self.get_ext_filename(self.get_ext_fullname(ext.name)))
Andrew M. Kuchling62686692001-05-21 20:48:09 +0000262 try:
Michael W. Hudsonaf142892002-01-23 15:07:46 +0000263 imp.load_dynamic(ext.name, ext_filename)
Neal Norwitz6e2d1c72003-02-28 17:39:42 +0000264 except ImportError, why:
Skip Montanarod1287322007-03-06 15:41:38 +0000265 self.failed.append(ext.name)
Neal Norwitz6e2d1c72003-02-28 17:39:42 +0000266 self.announce('*** WARNING: renaming "%s" since importing it'
267 ' failed: %s' % (ext.name, why), level=3)
268 assert not self.inplace
269 basename, tail = os.path.splitext(ext_filename)
270 newname = basename + "_failed" + tail
271 if os.path.exists(newname):
272 os.remove(newname)
273 os.rename(ext_filename, newname)
274
275 # XXX -- This relies on a Vile HACK in
276 # distutils.command.build_ext.build_extension(). The
277 # _built_objects attribute is stored there strictly for
278 # use here.
279 # If there is a failure, _built_objects may not be there,
280 # so catch the AttributeError and move on.
281 try:
282 for filename in self._built_objects:
283 os.remove(filename)
284 except AttributeError:
285 self.announce('unable to remove files (ignored)')
Neal Norwitz3f5fcc82003-02-28 17:21:39 +0000286 except:
Neal Norwitz3f5fcc82003-02-28 17:21:39 +0000287 exc_type, why, tb = sys.exc_info()
Neal Norwitz6e2d1c72003-02-28 17:39:42 +0000288 self.announce('*** WARNING: importing extension "%s" '
289 'failed with %s: %s' % (ext.name, exc_type, why),
290 level=3)
Skip Montanarod1287322007-03-06 15:41:38 +0000291 self.failed.append(ext.name)
Fred Drake9028d0a2001-12-06 22:59:54 +0000292
Neal Norwitz51dead72003-06-17 02:51:28 +0000293 def get_platform(self):
Fredrik Lundhade711a2001-01-24 08:00:28 +0000294 # Get value of sys.platform
Neal Norwitz51dead72003-06-17 02:51:28 +0000295 for platform in ['cygwin', 'beos', 'darwin', 'atheos', 'osf1']:
296 if sys.platform.startswith(platform):
297 return platform
298 return sys.platform
Andrew M. Kuchling34febf52001-01-24 03:31:07 +0000299
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000300 def detect_modules(self):
Fredrik Lundhade711a2001-01-24 08:00:28 +0000301 # Ensure that /usr/local is always used
Tarek Ziadée670e5a2009-07-06 12:50:46 +0000302 add_dir_to_list(self.compiler_obj.library_dirs, '/usr/local/lib')
303 add_dir_to_list(self.compiler_obj.include_dirs, '/usr/local/include')
Michael W. Hudson39230b32002-01-16 15:26:48 +0000304
Brett Cannon516592f2004-12-07 00:42:59 +0000305 # Add paths specified in the environment variables LDFLAGS and
Brett Cannon4810eb92004-12-31 08:11:21 +0000306 # CPPFLAGS for header and library files.
Brett Cannon5399c6d2004-12-18 20:48:09 +0000307 # We must get the values from the Makefile and not the environment
308 # directly since an inconsistently reproducible issue comes up where
309 # the environment variable is not set even though the value were passed
Brett Cannon4810eb92004-12-31 08:11:21 +0000310 # into configure and stored in the Makefile (issue found on OS X 10.3).
Brett Cannon516592f2004-12-07 00:42:59 +0000311 for env_var, arg_name, dir_list in (
Tarek Ziadée670e5a2009-07-06 12:50:46 +0000312 ('LDFLAGS', '-R', self.compiler_obj.runtime_library_dirs),
313 ('LDFLAGS', '-L', self.compiler_obj.library_dirs),
314 ('CPPFLAGS', '-I', self.compiler_obj.include_dirs)):
Brett Cannon5399c6d2004-12-18 20:48:09 +0000315 env_val = sysconfig.get_config_var(env_var)
Brett Cannon516592f2004-12-07 00:42:59 +0000316 if env_val:
Brett Cannon4810eb92004-12-31 08:11:21 +0000317 # To prevent optparse from raising an exception about any
Skip Montanaroa46ed912008-10-07 02:02:00 +0000318 # options in env_val that it doesn't know about we strip out
Brett Cannon4810eb92004-12-31 08:11:21 +0000319 # all double dashes and any dashes followed by a character
320 # that is not for the option we are dealing with.
321 #
322 # Please note that order of the regex is important! We must
323 # strip out double-dashes first so that we don't end up with
324 # substituting "--Long" to "-Long" and thus lead to "ong" being
325 # used for a library directory.
Georg Brandl915c87d2007-08-24 11:47:37 +0000326 env_val = re.sub(r'(^|\s+)-(-|(?!%s))' % arg_name[1],
327 ' ', env_val)
Brett Cannon84667c02004-12-07 03:25:18 +0000328 parser = optparse.OptionParser()
Brett Cannon4810eb92004-12-31 08:11:21 +0000329 # Make sure that allowing args interspersed with options is
330 # allowed
331 parser.allow_interspersed_args = True
332 parser.error = lambda msg: None
Brett Cannon84667c02004-12-07 03:25:18 +0000333 parser.add_option(arg_name, dest="dirs", action="append")
334 options = parser.parse_args(env_val.split())[0]
Brett Cannon44837712005-01-02 21:54:07 +0000335 if options.dirs:
Brett Cannon861e3962008-02-03 02:08:45 +0000336 for directory in reversed(options.dirs):
Brett Cannon44837712005-01-02 21:54:07 +0000337 add_dir_to_list(dir_list, directory)
Skip Montanarodecc6a42003-01-01 20:07:49 +0000338
Michael W. Hudson90b8e4d2002-08-02 13:55:50 +0000339 if os.path.normpath(sys.prefix) != '/usr':
Tarek Ziadée670e5a2009-07-06 12:50:46 +0000340 add_dir_to_list(self.compiler_obj.library_dirs,
Michael W. Hudson90b8e4d2002-08-02 13:55:50 +0000341 sysconfig.get_config_var("LIBDIR"))
Tarek Ziadée670e5a2009-07-06 12:50:46 +0000342 add_dir_to_list(self.compiler_obj.include_dirs,
Michael W. Hudson90b8e4d2002-08-02 13:55:50 +0000343 sysconfig.get_config_var("INCLUDEDIR"))
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000344
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000345 try:
346 have_unicode = unicode
347 except NameError:
348 have_unicode = 0
349
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000350 # lib_dirs and inc_dirs are used to search for files;
351 # if a file is found in one of those directories, it can
352 # be assumed that no additional -I,-L directives are needed.
Tarek Ziadée670e5a2009-07-06 12:50:46 +0000353 lib_dirs = self.compiler_obj.library_dirs + [
Martin v. Löwisfba73692004-11-13 11:13:35 +0000354 '/lib64', '/usr/lib64',
355 '/lib', '/usr/lib',
356 ]
Tarek Ziadée670e5a2009-07-06 12:50:46 +0000357 inc_dirs = self.compiler_obj.include_dirs + ['/usr/include']
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000358 exts = []
Skip Montanarod1287322007-03-06 15:41:38 +0000359 missing = []
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000360
Brett Cannon4454a1f2005-04-15 20:32:39 +0000361 config_h = sysconfig.get_config_h_filename()
362 config_h_vars = sysconfig.parse_config_h(open(config_h))
363
Fredrik Lundhade711a2001-01-24 08:00:28 +0000364 platform = self.get_platform()
Neil Schemenauerc59c5f32009-02-05 16:32:29 +0000365 srcdir = sysconfig.get_config_var('srcdir')
Michael W. Hudson5b109102002-01-23 15:04:41 +0000366
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000367 # Check for AtheOS which has libraries in non-standard locations
368 if platform == 'atheos':
369 lib_dirs += ['/system/libs', '/atheos/autolnk/lib']
370 lib_dirs += os.getenv('LIBRARY_PATH', '').split(os.pathsep)
371 inc_dirs += ['/system/include', '/atheos/autolnk/include']
372 inc_dirs += os.getenv('C_INCLUDE_PATH', '').split(os.pathsep)
373
Andrew M. Kuchling7883dc82003-10-24 18:26:26 +0000374 # OSF/1 and Unixware have some stuff in /usr/ccs/lib (like -ldb)
375 if platform in ['osf1', 'unixware7', 'openunix8']:
Skip Montanaro22e00c42003-05-06 20:43:34 +0000376 lib_dirs += ['/usr/ccs/lib']
377
Ronald Oussoren39be38c2006-05-26 11:38:39 +0000378 if platform == 'darwin':
379 # This should work on any unixy platform ;-)
380 # If the user has bothered specifying additional -I and -L flags
381 # in OPT and LDFLAGS we might as well use them here.
382 # NOTE: using shlex.split would technically be more correct, but
383 # also gives a bootstrap problem. Let's hope nobody uses directories
384 # with whitespace in the name to store libraries.
385 cflags, ldflags = sysconfig.get_config_vars(
386 'CFLAGS', 'LDFLAGS')
387 for item in cflags.split():
388 if item.startswith('-I'):
389 inc_dirs.append(item[2:])
390
391 for item in ldflags.split():
392 if item.startswith('-L'):
393 lib_dirs.append(item[2:])
394
Fredrik Lundhade711a2001-01-24 08:00:28 +0000395 # Check for MacOS X, which doesn't need libm.a at all
396 math_libs = ['m']
Jack Jansen4439b7c2002-06-26 15:44:30 +0000397 if platform in ['darwin', 'beos', 'mac']:
Fredrik Lundhade711a2001-01-24 08:00:28 +0000398 math_libs = []
Michael W. Hudson5b109102002-01-23 15:04:41 +0000399
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000400 # XXX Omitted modules: gl, pure, dl, SGI-specific modules
401
402 #
403 # The following modules are all pretty straightforward, and compile
404 # on pretty much any POSIXish platform.
405 #
Fredrik Lundhade711a2001-01-24 08:00:28 +0000406
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000407 # Some modules that are normally always on:
Fred Drake2de74712001-02-01 05:26:54 +0000408 exts.append( Extension('_weakref', ['_weakref.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000409
410 # array objects
411 exts.append( Extension('array', ['arraymodule.c']) )
412 # complex math library functions
Mark Dickinson12748b02009-12-21 15:22:00 +0000413 exts.append( Extension('cmath', ['cmathmodule.c', '_math.c'],
414 depends=['_math.h'],
Andrew M. Kuchling5ddb25f2001-01-23 22:21:11 +0000415 libraries=math_libs) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000416 # math library functions, e.g. sin()
Mark Dickinson9cae1782009-12-16 20:13:40 +0000417 exts.append( Extension('math', ['mathmodule.c', '_math.c'],
Mark Dickinson1c498282009-12-17 08:33:56 +0000418 depends=['_math.h'],
Andrew M. Kuchling5ddb25f2001-01-23 22:21:11 +0000419 libraries=math_libs) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000420 # fast string operations implemented in C
421 exts.append( Extension('strop', ['stropmodule.c']) )
422 # time operations and variables
Andrew M. Kuchling5ddb25f2001-01-23 22:21:11 +0000423 exts.append( Extension('time', ['timemodule.c'],
424 libraries=math_libs) )
Brett Cannon057e7202004-06-24 01:38:47 +0000425 exts.append( Extension('datetime', ['datetimemodule.c', 'timemodule.c'],
Guido van Rossuma29d5082002-12-16 20:31:57 +0000426 libraries=math_libs) )
Neal Norwitz0d2192b2008-03-23 06:13:25 +0000427 # fast iterator tools implemented in C
428 exts.append( Extension("itertools", ["itertoolsmodule.c"]) )
Eric Smitha73fbe72008-02-23 03:09:44 +0000429 # code that will be builtins in the future, but conflict with the
430 # current builtins
431 exts.append( Extension('future_builtins', ['future_builtins.c']) )
Raymond Hettinger40f62172002-12-29 23:03:38 +0000432 # random number generator implemented in C
Tim Peters2c60f7a2003-01-29 03:49:43 +0000433 exts.append( Extension("_random", ["_randommodule.c"]) )
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000434 # high-performance collections
Raymond Hettingereb979882007-02-28 18:37:52 +0000435 exts.append( Extension("_collections", ["_collectionsmodule.c"]) )
Raymond Hettinger0c410272004-01-05 10:13:35 +0000436 # bisect
437 exts.append( Extension("_bisect", ["_bisectmodule.c"]) )
Raymond Hettingerb3af1812003-11-08 10:24:38 +0000438 # heapq
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000439 exts.append( Extension("_heapq", ["_heapqmodule.c"]) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000440 # operator.add() and similar goodies
441 exts.append( Extension('operator', ['operator.c']) )
Antoine Pitrou19690592009-06-12 20:14:08 +0000442 # Python 3.1 _io library
443 exts.append( Extension("_io",
444 ["_io/bufferedio.c", "_io/bytesio.c", "_io/fileio.c",
445 "_io/iobase.c", "_io/_iomodule.c", "_io/stringio.c", "_io/textio.c"],
446 depends=["_io/_iomodule.h"], include_dirs=["Modules/_io"]))
Nick Coghlanc649ec52006-05-29 12:43:05 +0000447 # _functools
448 exts.append( Extension("_functools", ["_functoolsmodule.c"]) )
Brett Cannon4b964f92008-05-05 20:21:38 +0000449 # _json speedups
450 exts.append( Extension("_json", ["_json.c"]) )
Marc-André Lemburg261b8e22001-02-02 12:12:44 +0000451 # Python C API test module
Mark Dickinsond155bbf2009-02-10 16:17:16 +0000452 exts.append( Extension('_testcapi', ['_testcapimodule.c'],
453 depends=['testcapi_long.h']) )
Armin Rigoa871ef22006-02-08 12:53:56 +0000454 # profilers (_lsprof is for cProfile.py)
455 exts.append( Extension('_hotshot', ['_hotshot.c']) )
456 exts.append( Extension('_lsprof', ['_lsprof.c', 'rotatingtree.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000457 # static Unicode character database
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000458 if have_unicode:
459 exts.append( Extension('unicodedata', ['unicodedata.c']) )
Skip Montanarod1287322007-03-06 15:41:38 +0000460 else:
461 missing.append('unicodedata')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000462 # access to ISO C locale support
Martin v. Löwis19d17342003-06-14 21:03:05 +0000463 data = open('pyconfig.h').read()
464 m = re.search(r"#s*define\s+WITH_LIBINTL\s+1\s*", data)
465 if m is not None:
Jason Tishlerd28216b2002-08-14 11:13:52 +0000466 locale_libs = ['intl']
467 else:
468 locale_libs = []
Jack Jansen84b74472004-07-15 19:56:25 +0000469 if platform == 'darwin':
470 locale_extra_link_args = ['-framework', 'CoreFoundation']
471 else:
472 locale_extra_link_args = []
Tim Peterse6ddc8b2004-07-18 05:56:09 +0000473
Jack Jansen84b74472004-07-15 19:56:25 +0000474
Jason Tishlerd28216b2002-08-14 11:13:52 +0000475 exts.append( Extension('_locale', ['_localemodule.c'],
Jack Jansen84b74472004-07-15 19:56:25 +0000476 libraries=locale_libs,
477 extra_link_args=locale_extra_link_args) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000478
479 # Modules with some UNIX dependencies -- on by default:
480 # (If you have a really backward UNIX, select and socket may not be
481 # supported...)
482
483 # fcntl(2) and ioctl(2)
484 exts.append( Extension('fcntl', ['fcntlmodule.c']) )
Jack Jansen73aa1ff2002-06-27 22:06:49 +0000485 if platform not in ['mac']:
Brett Cannon46d96232005-02-16 00:07:19 +0000486 # pwd(3)
Tim Peters2c60f7a2003-01-29 03:49:43 +0000487 exts.append( Extension('pwd', ['pwdmodule.c']) )
488 # grp(3)
489 exts.append( Extension('grp', ['grpmodule.c']) )
Martin v. Löwisc3001752005-01-23 09:27:24 +0000490 # spwd, shadow passwords
Brett Cannon4454a1f2005-04-15 20:32:39 +0000491 if (config_h_vars.get('HAVE_GETSPNAM', False) or
492 config_h_vars.get('HAVE_GETSPENT', False)):
Brett Cannon46d96232005-02-16 00:07:19 +0000493 exts.append( Extension('spwd', ['spwdmodule.c']) )
Skip Montanarod1287322007-03-06 15:41:38 +0000494 else:
495 missing.append('spwd')
496 else:
497 missing.extend(['pwd', 'grp', 'spwd'])
498
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000499 # select(2); not on ancient System V
500 exts.append( Extension('select', ['selectmodule.c']) )
501
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000502 # Fred Drake's interface to the Python parser
503 exts.append( Extension('parser', ['parsermodule.c']) )
504
Guido van Rossum2e1c09c2002-04-04 17:52:50 +0000505 # cStringIO and cPickle
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000506 exts.append( Extension('cStringIO', ['cStringIO.c']) )
507 exts.append( Extension('cPickle', ['cPickle.c']) )
508
509 # Memory-mapped files (also works on Win32).
Jack Jansen73aa1ff2002-06-27 22:06:49 +0000510 if platform not in ['atheos', 'mac']:
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000511 exts.append( Extension('mmap', ['mmapmodule.c']) )
Skip Montanarod1287322007-03-06 15:41:38 +0000512 else:
513 missing.append('mmap')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000514
Andrew M. Kuchling57269d02004-08-31 13:37:25 +0000515 # Lance Ellinghaus's syslog module
Jack Jansen73aa1ff2002-06-27 22:06:49 +0000516 if platform not in ['mac']:
Tim Peters2c60f7a2003-01-29 03:49:43 +0000517 # syslog daemon interface
518 exts.append( Extension('syslog', ['syslogmodule.c']) )
Skip Montanarod1287322007-03-06 15:41:38 +0000519 else:
520 missing.append('syslog')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000521
522 # George Neville-Neil's timing module:
Neal Norwitz6143c542006-03-03 00:48:46 +0000523 # Deprecated in PEP 4 http://www.python.org/peps/pep-0004.html
524 # http://mail.python.org/pipermail/python-dev/2006-January/060023.html
525 #exts.append( Extension('timing', ['timingmodule.c']) )
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000526
527 #
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000528 # Here ends the simple stuff. From here on, modules need certain
529 # libraries, are platform-specific, or present other surprises.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000530 #
531
532 # Multimedia modules
533 # These don't work for 64-bit platforms!!!
534 # These represent audio samples or images as strings:
535
Neal Norwitz5e4a3b82004-07-19 16:55:07 +0000536 # Operations on audio samples
Tim Petersf9cbf212004-07-23 02:50:10 +0000537 # According to #993173, this one should actually work fine on
Martin v. Löwis8fbefe22004-07-19 16:42:20 +0000538 # 64-bit platforms.
539 exts.append( Extension('audioop', ['audioop.c']) )
540
Fredrik Lundhade711a2001-01-24 08:00:28 +0000541 # Disabled on 64-bit platforms
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000542 if sys.maxint != 9223372036854775807L:
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000543 # Operations on images
544 exts.append( Extension('imageop', ['imageop.c']) )
Skip Montanarod1287322007-03-06 15:41:38 +0000545 else:
Brett Cannondc48b742007-05-20 07:09:50 +0000546 missing.extend(['imageop'])
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000547
548 # readline
Tarek Ziadée670e5a2009-07-06 12:50:46 +0000549 do_readline = self.compiler_obj.find_library_file(lib_dirs, 'readline')
Ronald Oussoren9f20d9d2009-09-20 14:18:15 +0000550 if platform == 'darwin':
551 os_release = int(os.uname()[2].split('.')[0])
552 if os_release < 9:
553 # MacOSX 10.4 has a broken readline. Don't try to build
554 # the readline module unless the user has installed a fixed
555 # readline package
556 if find_file('readline/rlconf.h', inc_dirs, []) is None:
557 do_readline = False
Jack Jansen81ae2352006-02-23 15:02:23 +0000558 if do_readline:
Ronald Oussoren9f20d9d2009-09-20 14:18:15 +0000559 if platform == 'darwin' and os_release < 9:
Ronald Oussoren39be38c2006-05-26 11:38:39 +0000560 # In every directory on the search path search for a dynamic
561 # library and then a static library, instead of first looking
562 # for dynamic libraries on the entiry path.
563 # This way a staticly linked custom readline gets picked up
564 # before the (broken) dynamic library in /usr/lib.
565 readline_extra_link_args = ('-Wl,-search_paths_first',)
566 else:
567 readline_extra_link_args = ()
568
Marc-André Lemburg2efc3232001-01-26 18:23:02 +0000569 readline_libs = ['readline']
Tarek Ziadée670e5a2009-07-06 12:50:46 +0000570 if self.compiler_obj.find_library_file(lib_dirs,
571 'ncursesw'):
Martin v. Löwisa55e55e2006-02-11 15:55:14 +0000572 readline_libs.append('ncursesw')
Tarek Ziadée670e5a2009-07-06 12:50:46 +0000573 elif self.compiler_obj.find_library_file(lib_dirs,
574 'ncurses'):
Andrew M. Kuchling5aa3c4a2001-08-16 20:30:18 +0000575 readline_libs.append('ncurses')
Tarek Ziadée670e5a2009-07-06 12:50:46 +0000576 elif self.compiler_obj.find_library_file(lib_dirs, 'curses'):
Neal Norwitz0b27ff92003-03-31 15:53:49 +0000577 readline_libs.append('curses')
Tarek Ziadée670e5a2009-07-06 12:50:46 +0000578 elif self.compiler_obj.find_library_file(lib_dirs +
579 ['/usr/lib/termcap'],
580 'termcap'):
Marc-André Lemburg2efc3232001-01-26 18:23:02 +0000581 readline_libs.append('termcap')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000582 exts.append( Extension('readline', ['readline.c'],
Marc-André Lemburg7c6fcda2001-01-26 18:03:24 +0000583 library_dirs=['/usr/lib/termcap'],
Ronald Oussoren39be38c2006-05-26 11:38:39 +0000584 extra_link_args=readline_extra_link_args,
Marc-André Lemburg2efc3232001-01-26 18:23:02 +0000585 libraries=readline_libs) )
Skip Montanarod1287322007-03-06 15:41:38 +0000586 else:
587 missing.append('readline')
588
Jack Jansen73aa1ff2002-06-27 22:06:49 +0000589 if platform not in ['mac']:
Andrew M. Kuchling7883dc82003-10-24 18:26:26 +0000590 # crypt module.
Tim Peters2c60f7a2003-01-29 03:49:43 +0000591
Tarek Ziadée670e5a2009-07-06 12:50:46 +0000592 if self.compiler_obj.find_library_file(lib_dirs, 'crypt'):
Tim Peters2c60f7a2003-01-29 03:49:43 +0000593 libs = ['crypt']
594 else:
595 libs = []
596 exts.append( Extension('crypt', ['cryptmodule.c'], libraries=libs) )
Skip Montanarod1287322007-03-06 15:41:38 +0000597 else:
598 missing.append('crypt')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000599
Skip Montanaroba9e9782003-03-20 23:34:22 +0000600 # CSV files
601 exts.append( Extension('_csv', ['_csv.c']) )
602
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000603 # socket(2)
Guido van Rossum47d3a7a2002-06-13 14:41:32 +0000604 exts.append( Extension('_socket', ['socketmodule.c'],
Jeremy Hylton340043e2002-06-13 17:38:11 +0000605 depends = ['socketmodule.h']) )
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000606 # Detect SSL support for the socket module (via _ssl)
Gregory P. Smithade97332005-08-23 21:19:40 +0000607 search_for_ssl_incs_in = [
608 '/usr/local/ssl/include',
Andrew M. Kuchlinge7c87322001-01-19 16:58:21 +0000609 '/usr/contrib/ssl/include/'
610 ]
Gregory P. Smithade97332005-08-23 21:19:40 +0000611 ssl_incs = find_file('openssl/ssl.h', inc_dirs,
612 search_for_ssl_incs_in
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000613 )
Martin v. Löwisa950f7f2003-05-09 09:05:19 +0000614 if ssl_incs is not None:
615 krb5_h = find_file('krb5.h', inc_dirs,
616 ['/usr/kerberos/include'])
617 if krb5_h:
618 ssl_incs += krb5_h
Tarek Ziadée670e5a2009-07-06 12:50:46 +0000619 ssl_libs = find_library_file(self.compiler_obj, 'ssl',lib_dirs,
Andrew M. Kuchlinge7c87322001-01-19 16:58:21 +0000620 ['/usr/local/ssl/lib',
621 '/usr/contrib/ssl/lib/'
622 ] )
Fredrik Lundhade711a2001-01-24 08:00:28 +0000623
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000624 if (ssl_incs is not None and
625 ssl_libs is not None):
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000626 exts.append( Extension('_ssl', ['_ssl.c'],
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000627 include_dirs = ssl_incs,
Fredrik Lundhade711a2001-01-24 08:00:28 +0000628 library_dirs = ssl_libs,
Guido van Rossum47d3a7a2002-06-13 14:41:32 +0000629 libraries = ['ssl', 'crypto'],
Jeremy Hylton340043e2002-06-13 17:38:11 +0000630 depends = ['socketmodule.h']), )
Skip Montanarod1287322007-03-06 15:41:38 +0000631 else:
632 missing.append('_ssl')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000633
Gregory P. Smithade97332005-08-23 21:19:40 +0000634 # find out which version of OpenSSL we have
635 openssl_ver = 0
636 openssl_ver_re = re.compile(
637 '^\s*#\s*define\s+OPENSSL_VERSION_NUMBER\s+(0x[0-9a-fA-F]+)' )
638 for ssl_inc_dir in inc_dirs + search_for_ssl_incs_in:
639 name = os.path.join(ssl_inc_dir, 'openssl', 'opensslv.h')
640 if os.path.isfile(name):
641 try:
642 incfile = open(name, 'r')
643 for line in incfile:
644 m = openssl_ver_re.match(line)
645 if m:
646 openssl_ver = eval(m.group(1))
647 break
648 except IOError:
649 pass
650
651 # first version found is what we'll use (as the compiler should)
652 if openssl_ver:
653 break
654
655 #print 'openssl_ver = 0x%08x' % openssl_ver
656
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000657 if (ssl_incs is not None and
Gregory P. Smithade97332005-08-23 21:19:40 +0000658 ssl_libs is not None and
659 openssl_ver >= 0x00907000):
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000660 # The _hashlib module wraps optimized implementations
661 # of hash functions from the OpenSSL library.
662 exts.append( Extension('_hashlib', ['_hashopenssl.c'],
663 include_dirs = ssl_incs,
664 library_dirs = ssl_libs,
665 libraries = ['ssl', 'crypto']) )
Gregory P. Smith4eb60e52007-08-26 00:26:00 +0000666 # these aren't strictly missing since they are unneeded.
667 #missing.extend(['_sha', '_md5'])
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000668 else:
669 # The _sha module implements the SHA1 hash algorithm.
670 exts.append( Extension('_sha', ['shamodule.c']) )
671 # The _md5 module implements the RSA Data Security, Inc. MD5
672 # Message-Digest Algorithm, described in RFC 1321. The
Matthias Klose8e39ec72006-04-03 16:27:50 +0000673 # necessary files md5.c and md5.h are included here.
Gregory P. Smithd7923922006-06-05 23:38:06 +0000674 exts.append( Extension('_md5',
675 sources = ['md5module.c', 'md5.c'],
676 depends = ['md5.h']) )
Skip Montanarod1287322007-03-06 15:41:38 +0000677 missing.append('_hashlib')
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000678
Gregory P. Smithade97332005-08-23 21:19:40 +0000679 if (openssl_ver < 0x00908000):
680 # OpenSSL doesn't do these until 0.9.8 so we'll bring our own hash
681 exts.append( Extension('_sha256', ['sha256module.c']) )
682 exts.append( Extension('_sha512', ['sha512module.c']) )
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000683
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000684 # Modules that provide persistent dictionary-like semantics. You will
685 # probably want to arrange for at least one of them to be available on
686 # your machine, though none are defined by default because of library
687 # dependencies. The Python module anydbm.py provides an
688 # implementation independent wrapper for these; dumbdbm.py provides
689 # similar functionality (but slower of course) implemented in Python.
690
Gregory P. Smith1475cd82007-10-06 07:51:59 +0000691 # Sleepycat^WOracle Berkeley DB interface.
692 # http://www.oracle.com/database/berkeley-db/db/index.html
Skip Montanaro57454e52002-06-14 20:30:31 +0000693 #
Gregory P. Smith4eb60e52007-08-26 00:26:00 +0000694 # This requires the Sleepycat^WOracle DB code. The supported versions
Gregory P. Smithe7f4d842007-10-09 18:26:02 +0000695 # are set below. Visit the URL above to download
Gregory P. Smith3adc4aa2006-04-13 19:19:01 +0000696 # a release. Most open source OSes come with one or more
697 # versions of BerkeleyDB already installed.
Skip Montanaro57454e52002-06-14 20:30:31 +0000698
Gregory P. Smith8f1a4a62008-05-26 19:29:14 +0000699 max_db_ver = (4, 7)
Gregory P. Smith3adc4aa2006-04-13 19:19:01 +0000700 min_db_ver = (3, 3)
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000701 db_setup_debug = False # verbose debug prints from this script?
Skip Montanaro57454e52002-06-14 20:30:31 +0000702
Gregory P. Smith0902cac2008-05-27 08:40:09 +0000703 def allow_db_ver(db_ver):
704 """Returns a boolean if the given BerkeleyDB version is acceptable.
705
706 Args:
707 db_ver: A tuple of the version to verify.
708 """
709 if not (min_db_ver <= db_ver <= max_db_ver):
710 return False
711 # Use this function to filter out known bad configurations.
712 if (4, 6) == db_ver[:2]:
713 # BerkeleyDB 4.6.x is not stable on many architectures.
714 arch = platform_machine()
715 if arch not in ('i386', 'i486', 'i586', 'i686',
716 'x86_64', 'ia64'):
717 return False
718 return True
719
720 def gen_db_minor_ver_nums(major):
721 if major == 4:
722 for x in range(max_db_ver[1]+1):
723 if allow_db_ver((4, x)):
724 yield x
725 elif major == 3:
726 for x in (3,):
727 if allow_db_ver((3, x)):
728 yield x
729 else:
730 raise ValueError("unknown major BerkeleyDB version", major)
731
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000732 # construct a list of paths to look for the header file in on
733 # top of the normal inc_dirs.
734 db_inc_paths = [
735 '/usr/include/db4',
736 '/usr/local/include/db4',
737 '/opt/sfw/include/db4',
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000738 '/usr/include/db3',
739 '/usr/local/include/db3',
740 '/opt/sfw/include/db3',
Skip Montanaro00c5a012007-03-04 20:52:28 +0000741 # Fink defaults (http://fink.sourceforge.net/)
742 '/sw/include/db4',
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000743 '/sw/include/db3',
744 ]
745 # 4.x minor number specific paths
Gregory P. Smith0902cac2008-05-27 08:40:09 +0000746 for x in gen_db_minor_ver_nums(4):
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000747 db_inc_paths.append('/usr/include/db4%d' % x)
Neal Norwitz8f401712005-10-20 05:28:29 +0000748 db_inc_paths.append('/usr/include/db4.%d' % x)
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000749 db_inc_paths.append('/usr/local/BerkeleyDB.4.%d/include' % x)
750 db_inc_paths.append('/usr/local/include/db4%d' % x)
751 db_inc_paths.append('/pkg/db-4.%d/include' % x)
Gregory P. Smith29602d22006-01-24 09:46:48 +0000752 db_inc_paths.append('/opt/db-4.%d/include' % x)
Skip Montanaro00c5a012007-03-04 20:52:28 +0000753 # MacPorts default (http://www.macports.org/)
754 db_inc_paths.append('/opt/local/include/db4%d' % x)
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000755 # 3.x minor number specific paths
Gregory P. Smith0902cac2008-05-27 08:40:09 +0000756 for x in gen_db_minor_ver_nums(3):
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000757 db_inc_paths.append('/usr/include/db3%d' % x)
758 db_inc_paths.append('/usr/local/BerkeleyDB.3.%d/include' % x)
759 db_inc_paths.append('/usr/local/include/db3%d' % x)
760 db_inc_paths.append('/pkg/db-3.%d/include' % x)
Gregory P. Smith29602d22006-01-24 09:46:48 +0000761 db_inc_paths.append('/opt/db-3.%d/include' % x)
Tim Peters2c60f7a2003-01-29 03:49:43 +0000762
Ronald Oussoren9b8b6192006-06-27 12:53:52 +0000763 # Add some common subdirectories for Sleepycat DB to the list,
764 # based on the standard include directories. This way DB3/4 gets
765 # picked up when it is installed in a non-standard prefix and
766 # the user has added that prefix into inc_dirs.
767 std_variants = []
768 for dn in inc_dirs:
769 std_variants.append(os.path.join(dn, 'db3'))
770 std_variants.append(os.path.join(dn, 'db4'))
Gregory P. Smith0902cac2008-05-27 08:40:09 +0000771 for x in gen_db_minor_ver_nums(4):
Ronald Oussoren9b8b6192006-06-27 12:53:52 +0000772 std_variants.append(os.path.join(dn, "db4%d"%x))
773 std_variants.append(os.path.join(dn, "db4.%d"%x))
Gregory P. Smith0902cac2008-05-27 08:40:09 +0000774 for x in gen_db_minor_ver_nums(3):
Ronald Oussoren9b8b6192006-06-27 12:53:52 +0000775 std_variants.append(os.path.join(dn, "db3%d"%x))
776 std_variants.append(os.path.join(dn, "db3.%d"%x))
777
Tim Peters38ff36c2006-06-30 06:18:39 +0000778 db_inc_paths = std_variants + db_inc_paths
Skip Montanaro00c5a012007-03-04 20:52:28 +0000779 db_inc_paths = [p for p in db_inc_paths if os.path.exists(p)]
Ronald Oussoren9b8b6192006-06-27 12:53:52 +0000780
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000781 db_ver_inc_map = {}
782
783 class db_found(Exception): pass
Skip Montanaro57454e52002-06-14 20:30:31 +0000784 try:
Martin v. Löwis05d4d562002-12-06 10:25:02 +0000785 # See whether there is a Sleepycat header in the standard
786 # search path.
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000787 for d in inc_dirs + db_inc_paths:
Martin v. Löwis05d4d562002-12-06 10:25:02 +0000788 f = os.path.join(d, "db.h")
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000789 if db_setup_debug: print "db: looking for db.h in", f
Martin v. Löwis05d4d562002-12-06 10:25:02 +0000790 if os.path.exists(f):
791 f = open(f).read()
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000792 m = re.search(r"#define\WDB_VERSION_MAJOR\W(\d+)", f)
Martin v. Löwis05d4d562002-12-06 10:25:02 +0000793 if m:
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000794 db_major = int(m.group(1))
795 m = re.search(r"#define\WDB_VERSION_MINOR\W(\d+)", f)
796 db_minor = int(m.group(1))
797 db_ver = (db_major, db_minor)
798
Gregory P. Smith1475cd82007-10-06 07:51:59 +0000799 # Avoid 4.6 prior to 4.6.21 due to a BerkeleyDB bug
800 if db_ver == (4, 6):
801 m = re.search(r"#define\WDB_VERSION_PATCH\W(\d+)", f)
802 db_patch = int(m.group(1))
803 if db_patch < 21:
804 print "db.h:", db_ver, "patch", db_patch,
805 print "being ignored (4.6.x must be >= 4.6.21)"
806 continue
807
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000808 if ( (not db_ver_inc_map.has_key(db_ver)) and
Gregory P. Smith0902cac2008-05-27 08:40:09 +0000809 allow_db_ver(db_ver) ):
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000810 # save the include directory with the db.h version
Skip Montanaro00c5a012007-03-04 20:52:28 +0000811 # (first occurrence only)
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000812 db_ver_inc_map[db_ver] = d
Andrew M. Kuchling738446f42006-10-27 18:13:46 +0000813 if db_setup_debug:
814 print "db.h: found", db_ver, "in", d
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000815 else:
816 # we already found a header for this library version
817 if db_setup_debug: print "db.h: ignoring", d
818 else:
819 # ignore this header, it didn't contain a version number
Skip Montanaro00c5a012007-03-04 20:52:28 +0000820 if db_setup_debug:
821 print "db.h: no version number version in", d
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000822
823 db_found_vers = db_ver_inc_map.keys()
824 db_found_vers.sort()
825
826 while db_found_vers:
827 db_ver = db_found_vers.pop()
828 db_incdir = db_ver_inc_map[db_ver]
829
830 # check lib directories parallel to the location of the header
831 db_dirs_to_check = [
Skip Montanaro00c5a012007-03-04 20:52:28 +0000832 db_incdir.replace("include", 'lib64'),
833 db_incdir.replace("include", 'lib'),
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000834 ]
835 db_dirs_to_check = filter(os.path.isdir, db_dirs_to_check)
836
837 # Look for a version specific db-X.Y before an ambiguoius dbX
838 # XXX should we -ever- look for a dbX name? Do any
839 # systems really not name their library by version and
840 # symlink to more general names?
Andrew MacIntyre953f98d2005-03-09 22:21:08 +0000841 for dblib in (('db-%d.%d' % db_ver),
842 ('db%d%d' % db_ver),
843 ('db%d' % db_ver[0])):
Tarek Ziadée670e5a2009-07-06 12:50:46 +0000844 dblib_file = self.compiler_obj.find_library_file(
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000845 db_dirs_to_check + lib_dirs, dblib )
846 if dblib_file:
847 dblib_dir = [ os.path.abspath(os.path.dirname(dblib_file)) ]
848 raise db_found
849 else:
850 if db_setup_debug: print "db lib: ", dblib, "not found"
851
852 except db_found:
Brett Cannonef3dab22008-05-29 21:23:33 +0000853 if db_setup_debug:
854 print "bsddb using BerkeleyDB lib:", db_ver, dblib
855 print "bsddb lib dir:", dblib_dir, " inc dir:", db_incdir
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000856 db_incs = [db_incdir]
Jack Jansend1b20452002-07-08 21:39:36 +0000857 dblibs = [dblib]
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000858 # We add the runtime_library_dirs argument because the
859 # BerkeleyDB lib we're linking against often isn't in the
860 # system dynamic library search path. This is usually
861 # correct and most trouble free, but may cause problems in
862 # some unusual system configurations (e.g. the directory
863 # is on an NFS server that goes away).
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000864 exts.append(Extension('_bsddb', ['_bsddb.c'],
Gregory P. Smith39250532007-10-09 06:02:21 +0000865 depends = ['bsddb.h'],
Martin v. Löwis05d4d562002-12-06 10:25:02 +0000866 library_dirs=dblib_dir,
867 runtime_library_dirs=dblib_dir,
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000868 include_dirs=db_incs,
869 libraries=dblibs))
Skip Montanaro57454e52002-06-14 20:30:31 +0000870 else:
Gregory P. Smithe76c8c02004-12-13 12:01:24 +0000871 if db_setup_debug: print "db: no appropriate library found"
Skip Montanaro57454e52002-06-14 20:30:31 +0000872 db_incs = None
873 dblibs = []
874 dblib_dir = None
Skip Montanarod1287322007-03-06 15:41:38 +0000875 missing.append('_bsddb')
Skip Montanaro57454e52002-06-14 20:30:31 +0000876
Anthony Baxterc51ee692006-04-01 00:57:31 +0000877 # The sqlite interface
Andrew M. Kuchling738446f42006-10-27 18:13:46 +0000878 sqlite_setup_debug = False # verbose debug prints from this script?
Anthony Baxterc51ee692006-04-01 00:57:31 +0000879
Anthony Baxter3dc6bb32006-04-03 02:20:49 +0000880 # We hunt for #define SQLITE_VERSION "n.n.n"
881 # We need to find >= sqlite version 3.0.8
Anthony Baxterc51ee692006-04-01 00:57:31 +0000882 sqlite_incdir = sqlite_libdir = None
Anthony Baxter3dc6bb32006-04-03 02:20:49 +0000883 sqlite_inc_paths = [ '/usr/include',
Anthony Baxterc51ee692006-04-01 00:57:31 +0000884 '/usr/include/sqlite',
885 '/usr/include/sqlite3',
886 '/usr/local/include',
887 '/usr/local/include/sqlite',
888 '/usr/local/include/sqlite3',
889 ]
Anthony Baxter3dc6bb32006-04-03 02:20:49 +0000890 MIN_SQLITE_VERSION_NUMBER = (3, 0, 8)
891 MIN_SQLITE_VERSION = ".".join([str(x)
892 for x in MIN_SQLITE_VERSION_NUMBER])
Ronald Oussoren39be38c2006-05-26 11:38:39 +0000893
894 # Scan the default include directories before the SQLite specific
895 # ones. This allows one to override the copy of sqlite on OSX,
896 # where /usr/include contains an old version of sqlite.
897 for d in inc_dirs + sqlite_inc_paths:
Anthony Baxterc51ee692006-04-01 00:57:31 +0000898 f = os.path.join(d, "sqlite3.h")
899 if os.path.exists(f):
Anthony Baxter07f5b352006-04-01 08:36:27 +0000900 if sqlite_setup_debug: print "sqlite: found %s"%f
Anthony Baxter3dc6bb32006-04-03 02:20:49 +0000901 incf = open(f).read()
902 m = re.search(
903 r'\s*.*#\s*.*define\s.*SQLITE_VERSION\W*"(.*)"', incf)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000904 if m:
Anthony Baxter3dc6bb32006-04-03 02:20:49 +0000905 sqlite_version = m.group(1)
906 sqlite_version_tuple = tuple([int(x)
907 for x in sqlite_version.split(".")])
908 if sqlite_version_tuple >= MIN_SQLITE_VERSION_NUMBER:
Anthony Baxterc51ee692006-04-01 00:57:31 +0000909 # we win!
Andrew M. Kuchling738446f42006-10-27 18:13:46 +0000910 if sqlite_setup_debug:
911 print "%s/sqlite3.h: version %s"%(d, sqlite_version)
Anthony Baxterc51ee692006-04-01 00:57:31 +0000912 sqlite_incdir = d
913 break
914 else:
Anthony Baxter3dc6bb32006-04-03 02:20:49 +0000915 if sqlite_setup_debug:
Anthony Baxterc51ee692006-04-01 00:57:31 +0000916 print "%s: version %d is too old, need >= %s"%(d,
917 sqlite_version, MIN_SQLITE_VERSION)
Anthony Baxter3dc6bb32006-04-03 02:20:49 +0000918 elif sqlite_setup_debug:
919 print "sqlite: %s had no SQLITE_VERSION"%(f,)
920
Anthony Baxterc51ee692006-04-01 00:57:31 +0000921 if sqlite_incdir:
922 sqlite_dirs_to_check = [
923 os.path.join(sqlite_incdir, '..', 'lib64'),
924 os.path.join(sqlite_incdir, '..', 'lib'),
925 os.path.join(sqlite_incdir, '..', '..', 'lib64'),
926 os.path.join(sqlite_incdir, '..', '..', 'lib'),
927 ]
Tarek Ziadée670e5a2009-07-06 12:50:46 +0000928 sqlite_libfile = self.compiler_obj.find_library_file(
Anthony Baxterc51ee692006-04-01 00:57:31 +0000929 sqlite_dirs_to_check + lib_dirs, 'sqlite3')
Hirokazu Yamamoto1ae415c2008-10-03 17:34:49 +0000930 if sqlite_libfile:
931 sqlite_libdir = [os.path.abspath(os.path.dirname(sqlite_libfile))]
Anthony Baxterc51ee692006-04-01 00:57:31 +0000932
933 if sqlite_incdir and sqlite_libdir:
Gerhard Häring3e99c0a2006-04-23 15:24:26 +0000934 sqlite_srcs = ['_sqlite/cache.c',
Anthony Baxterc51ee692006-04-01 00:57:31 +0000935 '_sqlite/connection.c',
Anthony Baxterc51ee692006-04-01 00:57:31 +0000936 '_sqlite/cursor.c',
937 '_sqlite/microprotocols.c',
938 '_sqlite/module.c',
939 '_sqlite/prepare_protocol.c',
940 '_sqlite/row.c',
941 '_sqlite/statement.c',
942 '_sqlite/util.c', ]
943
Anthony Baxterc51ee692006-04-01 00:57:31 +0000944 sqlite_defines = []
945 if sys.platform != "win32":
Anthony Baxter8e7b4902006-04-05 18:25:33 +0000946 sqlite_defines.append(('MODULE_NAME', '"sqlite3"'))
Anthony Baxterc51ee692006-04-01 00:57:31 +0000947 else:
Anthony Baxter8e7b4902006-04-05 18:25:33 +0000948 sqlite_defines.append(('MODULE_NAME', '\\"sqlite3\\"'))
949
Ronald Oussoren39be38c2006-05-26 11:38:39 +0000950
951 if sys.platform == 'darwin':
952 # In every directory on the search path search for a dynamic
953 # library and then a static library, instead of first looking
954 # for dynamic libraries on the entiry path.
955 # This way a staticly linked custom sqlite gets picked up
956 # before the dynamic library in /usr/lib.
957 sqlite_extra_link_args = ('-Wl,-search_paths_first',)
958 else:
959 sqlite_extra_link_args = ()
960
Anthony Baxterc51ee692006-04-01 00:57:31 +0000961 exts.append(Extension('_sqlite3', sqlite_srcs,
962 define_macros=sqlite_defines,
Anthony Baxter3dc6bb32006-04-03 02:20:49 +0000963 include_dirs=["Modules/_sqlite",
Anthony Baxterc51ee692006-04-01 00:57:31 +0000964 sqlite_incdir],
965 library_dirs=sqlite_libdir,
966 runtime_library_dirs=sqlite_libdir,
Ronald Oussoren39be38c2006-05-26 11:38:39 +0000967 extra_link_args=sqlite_extra_link_args,
Anthony Baxterc51ee692006-04-01 00:57:31 +0000968 libraries=["sqlite3",]))
Skip Montanarod1287322007-03-06 15:41:38 +0000969 else:
970 missing.append('_sqlite3')
Skip Montanaro22e00c42003-05-06 20:43:34 +0000971
972 # Look for Berkeley db 1.85. Note that it is built as a different
973 # module name so it can be included even when later versions are
974 # available. A very restrictive search is performed to avoid
975 # accidentally building this module with a later version of the
976 # underlying db library. May BSD-ish Unixes incorporate db 1.85
977 # symbols into libc and place the include file in /usr/include.
Gregory P. Smith4eb60e52007-08-26 00:26:00 +0000978 #
979 # If the better bsddb library can be built (db_incs is defined)
980 # we do not build this one. Otherwise this build will pick up
981 # the more recent berkeleydb's db.h file first in the include path
982 # when attempting to compile and it will fail.
Skip Montanaro22e00c42003-05-06 20:43:34 +0000983 f = "/usr/include/db.h"
Gregory P. Smith4eb60e52007-08-26 00:26:00 +0000984 if os.path.exists(f) and not db_incs:
Skip Montanaro22e00c42003-05-06 20:43:34 +0000985 data = open(f).read()
986 m = re.search(r"#s*define\s+HASHVERSION\s+2\s*", data)
987 if m is not None:
988 # bingo - old version used hash file format version 2
989 ### XXX this should be fixed to not be platform-dependent
990 ### but I don't have direct access to an osf1 platform and
991 ### seemed to be muffing the search somehow
992 libraries = platform == "osf1" and ['db'] or None
993 if libraries is not None:
994 exts.append(Extension('bsddb185', ['bsddbmodule.c'],
995 libraries=libraries))
996 else:
997 exts.append(Extension('bsddb185', ['bsddbmodule.c']))
Skip Montanarod1287322007-03-06 15:41:38 +0000998 else:
999 missing.append('bsddb185')
1000 else:
1001 missing.append('bsddb185')
Skip Montanaro22e00c42003-05-06 20:43:34 +00001002
Benjamin Petersonedfe72f2010-01-01 15:21:13 +00001003 dbm_order = ['gdbm']
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001004 # The standard Unix dbm module:
Jack Jansend1b20452002-07-08 21:39:36 +00001005 if platform not in ['cygwin']:
Matthias Klose51c614e2009-04-29 19:52:49 +00001006 config_args = [arg.strip("'")
1007 for arg in sysconfig.get_config_var("CONFIG_ARGS").split()]
Benjamin Petersonedfe72f2010-01-01 15:21:13 +00001008 dbm_args = [arg for arg in config_args
Matthias Klose10cbe482009-04-29 17:18:19 +00001009 if arg.startswith('--with-dbmliborder=')]
1010 if dbm_args:
Benjamin Petersonedfe72f2010-01-01 15:21:13 +00001011 dbm_order = [arg.split('=')[-1] for arg in dbm_args][-1].split(":")
Matthias Klose10cbe482009-04-29 17:18:19 +00001012 else:
Matthias Klose51c614e2009-04-29 19:52:49 +00001013 dbm_order = "ndbm:gdbm:bdb".split(":")
Matthias Klose10cbe482009-04-29 17:18:19 +00001014 dbmext = None
1015 for cand in dbm_order:
1016 if cand == "ndbm":
1017 if find_file("ndbm.h", inc_dirs, []) is not None:
1018 # Some systems have -lndbm, others don't
Tarek Ziadée670e5a2009-07-06 12:50:46 +00001019 if self.compiler_obj.find_library_file(lib_dirs,
1020 'ndbm'):
Matthias Klose10cbe482009-04-29 17:18:19 +00001021 ndbm_libs = ['ndbm']
1022 else:
1023 ndbm_libs = []
1024 print "building dbm using ndbm"
1025 dbmext = Extension('dbm', ['dbmmodule.c'],
1026 define_macros=[
1027 ('HAVE_NDBM_H',None),
1028 ],
1029 libraries=ndbm_libs)
1030 break
1031
1032 elif cand == "gdbm":
Tarek Ziadée670e5a2009-07-06 12:50:46 +00001033 if self.compiler_obj.find_library_file(lib_dirs, 'gdbm'):
Matthias Klose10cbe482009-04-29 17:18:19 +00001034 gdbm_libs = ['gdbm']
Tarek Ziadée670e5a2009-07-06 12:50:46 +00001035 if self.compiler_obj.find_library_file(lib_dirs,
1036 'gdbm_compat'):
Matthias Klose10cbe482009-04-29 17:18:19 +00001037 gdbm_libs.append('gdbm_compat')
1038 if find_file("gdbm/ndbm.h", inc_dirs, []) is not None:
1039 print "building dbm using gdbm"
1040 dbmext = Extension(
1041 'dbm', ['dbmmodule.c'],
1042 define_macros=[
1043 ('HAVE_GDBM_NDBM_H', None),
1044 ],
1045 libraries = gdbm_libs)
1046 break
1047 if find_file("gdbm-ndbm.h", inc_dirs, []) is not None:
1048 print "building dbm using gdbm"
1049 dbmext = Extension(
1050 'dbm', ['dbmmodule.c'],
1051 define_macros=[
1052 ('HAVE_GDBM_DASH_NDBM_H', None),
1053 ],
1054 libraries = gdbm_libs)
1055 break
1056 elif cand == "bdb":
1057 if db_incs is not None:
1058 print "building dbm using bdb"
1059 dbmext = Extension('dbm', ['dbmmodule.c'],
1060 library_dirs=dblib_dir,
1061 runtime_library_dirs=dblib_dir,
1062 include_dirs=db_incs,
1063 define_macros=[
1064 ('HAVE_BERKDB_H', None),
1065 ('DB_DBM_HSEARCH', None),
1066 ],
1067 libraries=dblibs)
1068 break
1069 if dbmext is not None:
1070 exts.append(dbmext)
Skip Montanarod1287322007-03-06 15:41:38 +00001071 else:
1072 missing.append('dbm')
Fredrik Lundhade711a2001-01-24 08:00:28 +00001073
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001074 # Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
Benjamin Petersonedfe72f2010-01-01 15:21:13 +00001075 if ('gdbm' in dbm_order and
1076 self.compiler_obj.find_library_file(lib_dirs, 'gdbm')):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001077 exts.append( Extension('gdbm', ['gdbmmodule.c'],
1078 libraries = ['gdbm'] ) )
Skip Montanarod1287322007-03-06 15:41:38 +00001079 else:
1080 missing.append('gdbm')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001081
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001082 # Unix-only modules
Andrew M. Kuchling34febf52001-01-24 03:31:07 +00001083 if platform not in ['mac', 'win32']:
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001084 # Steen Lumholt's termios module
1085 exts.append( Extension('termios', ['termios.c']) )
1086 # Jeremy Hylton's rlimit interface
Tim Peters2c60f7a2003-01-29 03:49:43 +00001087 if platform not in ['atheos']:
Martin v. Löwisf90ae202002-06-11 06:22:31 +00001088 exts.append( Extension('resource', ['resource.c']) )
Skip Montanarod1287322007-03-06 15:41:38 +00001089 else:
1090 missing.append('resource')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001091
Andrew M. Kuchlingcf393f32001-02-21 02:38:24 +00001092 # Sun yellow pages. Some systems have the functions in libc.
Benjamin Petersoneb74da82009-12-30 03:02:34 +00001093 if (platform not in ['cygwin', 'atheos', 'qnx6'] and
1094 find_file('rpcsvc/yp_prot.h', inc_dirs, []) is not None):
Tarek Ziadée670e5a2009-07-06 12:50:46 +00001095 if (self.compiler_obj.find_library_file(lib_dirs, 'nsl')):
Andrew M. Kuchling6efc6e72001-02-27 20:54:23 +00001096 libs = ['nsl']
1097 else:
1098 libs = []
1099 exts.append( Extension('nis', ['nismodule.c'],
1100 libraries = libs) )
Skip Montanarod1287322007-03-06 15:41:38 +00001101 else:
1102 missing.append('nis')
1103 else:
1104 missing.extend(['nis', 'resource', 'termios'])
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001105
Skip Montanaro72092942004-02-07 12:50:19 +00001106 # Curses support, requiring the System V version of curses, often
Fredrik Lundhade711a2001-01-24 08:00:28 +00001107 # provided by the ncurses library.
Andrew M. Kuchling86070422006-08-06 22:07:04 +00001108 panel_library = 'panel'
Tarek Ziadée670e5a2009-07-06 12:50:46 +00001109 if (self.compiler_obj.find_library_file(lib_dirs, 'ncursesw')):
Martin v. Löwisa55e55e2006-02-11 15:55:14 +00001110 curses_libs = ['ncursesw']
Andrew M. Kuchling86070422006-08-06 22:07:04 +00001111 # Bug 1464056: If _curses.so links with ncursesw,
1112 # _curses_panel.so must link with panelw.
1113 panel_library = 'panelw'
Martin v. Löwisa55e55e2006-02-11 15:55:14 +00001114 exts.append( Extension('_curses', ['_cursesmodule.c'],
1115 libraries = curses_libs) )
Tarek Ziadée670e5a2009-07-06 12:50:46 +00001116 elif (self.compiler_obj.find_library_file(lib_dirs, 'ncurses')):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001117 curses_libs = ['ncurses']
1118 exts.append( Extension('_curses', ['_cursesmodule.c'],
1119 libraries = curses_libs) )
Tarek Ziadée670e5a2009-07-06 12:50:46 +00001120 elif (self.compiler_obj.find_library_file(lib_dirs, 'curses')
Fred Drake38419c02001-12-06 22:24:47 +00001121 and platform != 'darwin'):
Michael W. Hudson5b109102002-01-23 15:04:41 +00001122 # OSX has an old Berkeley curses, not good enough for
1123 # the _curses module.
Tarek Ziadée670e5a2009-07-06 12:50:46 +00001124 if (self.compiler_obj.find_library_file(lib_dirs, 'terminfo')):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001125 curses_libs = ['curses', 'terminfo']
Tarek Ziadée670e5a2009-07-06 12:50:46 +00001126 elif (self.compiler_obj.find_library_file(lib_dirs, 'termcap')):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001127 curses_libs = ['curses', 'termcap']
Neal Norwitz0b27ff92003-03-31 15:53:49 +00001128 else:
1129 curses_libs = ['curses']
Fredrik Lundhade711a2001-01-24 08:00:28 +00001130
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001131 exts.append( Extension('_curses', ['_cursesmodule.c'],
1132 libraries = curses_libs) )
Skip Montanarod1287322007-03-06 15:41:38 +00001133 else:
1134 missing.append('_curses')
Fredrik Lundhade711a2001-01-24 08:00:28 +00001135
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001136 # If the curses module is enabled, check for the panel module
Andrew M. Kuchlinge7ffbb22001-12-06 15:57:16 +00001137 if (module_enabled(exts, '_curses') and
Tarek Ziadée670e5a2009-07-06 12:50:46 +00001138 self.compiler_obj.find_library_file(lib_dirs, panel_library)):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001139 exts.append( Extension('_curses_panel', ['_curses_panel.c'],
Andrew M. Kuchling86070422006-08-06 22:07:04 +00001140 libraries = [panel_library] + curses_libs) )
Skip Montanarod1287322007-03-06 15:41:38 +00001141 else:
1142 missing.append('_curses_panel')
Fredrik Lundhade711a2001-01-24 08:00:28 +00001143
Barry Warsaw259b1e12002-08-13 20:09:26 +00001144 # Andrew Kuchling's zlib module. Note that some versions of zlib
1145 # 1.1.3 have security problems. See CERT Advisory CA-2002-07:
1146 # http://www.cert.org/advisories/CA-2002-07.html
1147 #
1148 # zlib 1.1.4 is fixed, but at least one vendor (RedHat) has decided to
1149 # patch its zlib 1.1.3 package instead of upgrading to 1.1.4. For
1150 # now, we still accept 1.1.3, because we think it's difficult to
1151 # exploit this in Python, and we'd rather make it RedHat's problem
1152 # than our problem <wink>.
1153 #
1154 # You can upgrade zlib to version 1.1.4 yourself by going to
1155 # http://www.gzip.org/zlib/
Guido van Rossume6970912001-04-15 15:16:12 +00001156 zlib_inc = find_file('zlib.h', [], inc_dirs)
Gregory P. Smith440ca772008-03-24 00:08:01 +00001157 have_zlib = False
Guido van Rossume6970912001-04-15 15:16:12 +00001158 if zlib_inc is not None:
1159 zlib_h = zlib_inc[0] + '/zlib.h'
1160 version = '"0.0.0"'
Barry Warsaw259b1e12002-08-13 20:09:26 +00001161 version_req = '"1.1.3"'
Guido van Rossume6970912001-04-15 15:16:12 +00001162 fp = open(zlib_h)
1163 while 1:
1164 line = fp.readline()
1165 if not line:
1166 break
Guido van Rossum8cdc03d2002-08-06 17:28:30 +00001167 if line.startswith('#define ZLIB_VERSION'):
Guido van Rossume6970912001-04-15 15:16:12 +00001168 version = line.split()[2]
1169 break
1170 if version >= version_req:
Tarek Ziadée670e5a2009-07-06 12:50:46 +00001171 if (self.compiler_obj.find_library_file(lib_dirs, 'z')):
Ronald Oussoren9b8b6192006-06-27 12:53:52 +00001172 if sys.platform == "darwin":
1173 zlib_extra_link_args = ('-Wl,-search_paths_first',)
1174 else:
1175 zlib_extra_link_args = ()
Guido van Rossume6970912001-04-15 15:16:12 +00001176 exts.append( Extension('zlib', ['zlibmodule.c'],
Ronald Oussoren9b8b6192006-06-27 12:53:52 +00001177 libraries = ['z'],
1178 extra_link_args = zlib_extra_link_args))
Gregory P. Smith440ca772008-03-24 00:08:01 +00001179 have_zlib = True
Skip Montanarod1287322007-03-06 15:41:38 +00001180 else:
1181 missing.append('zlib')
1182 else:
1183 missing.append('zlib')
1184 else:
1185 missing.append('zlib')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001186
Gregory P. Smith440ca772008-03-24 00:08:01 +00001187 # Helper module for various ascii-encoders. Uses zlib for an optimized
1188 # crc32 if we have it. Otherwise binascii uses its own.
1189 if have_zlib:
1190 extra_compile_args = ['-DUSE_ZLIB_CRC32']
1191 libraries = ['z']
1192 extra_link_args = zlib_extra_link_args
1193 else:
1194 extra_compile_args = []
1195 libraries = []
1196 extra_link_args = []
1197 exts.append( Extension('binascii', ['binascii.c'],
1198 extra_compile_args = extra_compile_args,
1199 libraries = libraries,
1200 extra_link_args = extra_link_args) )
1201
Gustavo Niemeyerf8ca8362002-11-05 16:50:05 +00001202 # Gustavo Niemeyer's bz2 module.
Tarek Ziadée670e5a2009-07-06 12:50:46 +00001203 if (self.compiler_obj.find_library_file(lib_dirs, 'bz2')):
Ronald Oussoren9b8b6192006-06-27 12:53:52 +00001204 if sys.platform == "darwin":
1205 bz2_extra_link_args = ('-Wl,-search_paths_first',)
1206 else:
1207 bz2_extra_link_args = ()
Gustavo Niemeyerf8ca8362002-11-05 16:50:05 +00001208 exts.append( Extension('bz2', ['bz2module.c'],
Ronald Oussoren9b8b6192006-06-27 12:53:52 +00001209 libraries = ['bz2'],
1210 extra_link_args = bz2_extra_link_args) )
Skip Montanarod1287322007-03-06 15:41:38 +00001211 else:
1212 missing.append('bz2')
Gustavo Niemeyerf8ca8362002-11-05 16:50:05 +00001213
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001214 # Interface to the Expat XML parser
1215 #
Benjamin Peterson2fd2e862009-12-31 16:28:24 +00001216 # Expat was written by James Clark and is now maintained by a group of
1217 # developers on SourceForge; see www.libexpat.org for more information.
1218 # The pyexpat module was written by Paul Prescod after a prototype by
1219 # Jack Jansen. The Expat source is included in Modules/expat/. Usage
1220 # of a system shared libexpat.so is possible with --with-system-expat
1221 # cofigure option.
Fred Drakefc8341d2002-06-17 17:55:30 +00001222 #
1223 # More information on Expat can be found at www.libexpat.org.
1224 #
Benjamin Peterson2c196742009-12-31 03:17:18 +00001225 if '--with-system-expat' in sysconfig.get_config_var("CONFIG_ARGS"):
1226 expat_inc = []
1227 define_macros = []
1228 expat_lib = ['expat']
1229 expat_sources = []
1230 else:
1231 expat_inc = [os.path.join(os.getcwd(), srcdir, 'Modules', 'expat')]
1232 define_macros = [
1233 ('HAVE_EXPAT_CONFIG_H', '1'),
1234 ]
1235 expat_lib = []
1236 expat_sources = ['expat/xmlparse.c',
1237 'expat/xmlrole.c',
1238 'expat/xmltok.c']
Ronald Oussoren988117f2006-04-29 11:31:35 +00001239
Fred Drake2d59a492003-10-21 15:41:15 +00001240 exts.append(Extension('pyexpat',
1241 define_macros = define_macros,
Benjamin Peterson2c196742009-12-31 03:17:18 +00001242 include_dirs = expat_inc,
1243 libraries = expat_lib,
1244 sources = ['pyexpat.c'] + expat_sources
Fred Drake2d59a492003-10-21 15:41:15 +00001245 ))
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001246
Fredrik Lundh4c86ec62005-12-14 18:46:16 +00001247 # Fredrik Lundh's cElementTree module. Note that this also
1248 # uses expat (via the CAPI hook in pyexpat).
1249
Hye-Shik Chang6c403592006-03-27 08:43:11 +00001250 if os.path.isfile(os.path.join(srcdir, 'Modules', '_elementtree.c')):
Fredrik Lundh4c86ec62005-12-14 18:46:16 +00001251 define_macros.append(('USE_PYEXPAT_CAPI', None))
1252 exts.append(Extension('_elementtree',
1253 define_macros = define_macros,
Benjamin Peterson2c196742009-12-31 03:17:18 +00001254 include_dirs = expat_inc,
1255 libraries = expat_lib,
Fredrik Lundh4c86ec62005-12-14 18:46:16 +00001256 sources = ['_elementtree.c'],
1257 ))
Skip Montanarod1287322007-03-06 15:41:38 +00001258 else:
1259 missing.append('_elementtree')
Fredrik Lundh4c86ec62005-12-14 18:46:16 +00001260
Hye-Shik Chang3e2a3062004-01-17 14:29:29 +00001261 # Hye-Shik Chang's CJKCodecs modules.
Martin v. Löwise2713be2005-03-08 15:03:08 +00001262 if have_unicode:
1263 exts.append(Extension('_multibytecodec',
1264 ['cjkcodecs/multibytecodec.c']))
1265 for loc in ('kr', 'jp', 'cn', 'tw', 'hk', 'iso2022'):
Skip Montanarod1287322007-03-06 15:41:38 +00001266 exts.append(Extension('_codecs_%s' % loc,
Martin v. Löwise2713be2005-03-08 15:03:08 +00001267 ['cjkcodecs/_codecs_%s.c' % loc]))
Skip Montanarod1287322007-03-06 15:41:38 +00001268 else:
1269 missing.append('_multibytecodec')
1270 for loc in ('kr', 'jp', 'cn', 'tw', 'hk', 'iso2022'):
1271 missing.append('_codecs_%s' % loc)
Hye-Shik Chang3e2a3062004-01-17 14:29:29 +00001272
Michael W. Hudson5b109102002-01-23 15:04:41 +00001273 # Dynamic loading module
Guido van Rossum770acd32002-09-12 14:41:20 +00001274 if sys.maxint == 0x7fffffff:
1275 # This requires sizeof(int) == sizeof(long) == sizeof(char*)
1276 dl_inc = find_file('dlfcn.h', [], inc_dirs)
Anthony Baxter82201742006-04-09 15:07:40 +00001277 if (dl_inc is not None) and (platform not in ['atheos']):
Guido van Rossum770acd32002-09-12 14:41:20 +00001278 exts.append( Extension('dl', ['dlmodule.c']) )
Skip Montanarod1287322007-03-06 15:41:38 +00001279 else:
1280 missing.append('dl')
1281 else:
1282 missing.append('dl')
Michael W. Hudson5b109102002-01-23 15:04:41 +00001283
Thomas Hellercf567c12006-03-08 19:51:58 +00001284 # Thomas Heller's _ctypes module
Martin v. Löwis9176fc12006-04-11 11:12:43 +00001285 self.detect_ctypes(inc_dirs, lib_dirs)
Thomas Hellercf567c12006-03-08 19:51:58 +00001286
Benjamin Peterson190d56e2008-06-11 02:40:25 +00001287 # Richard Oudkerk's multiprocessing module
1288 if platform == 'win32': # Windows
1289 macros = dict()
1290 libraries = ['ws2_32']
1291
1292 elif platform == 'darwin': # Mac OSX
Jesse Noller355b1262009-04-02 00:03:28 +00001293 macros = dict()
Benjamin Peterson190d56e2008-06-11 02:40:25 +00001294 libraries = []
1295
1296 elif platform == 'cygwin': # Cygwin
Jesse Noller355b1262009-04-02 00:03:28 +00001297 macros = dict()
Benjamin Peterson190d56e2008-06-11 02:40:25 +00001298 libraries = []
Hye-Shik Chang99c48a82008-06-28 01:04:31 +00001299
Martin v. Löwisbb86d832008-11-04 20:40:09 +00001300 elif platform in ('freebsd4', 'freebsd5', 'freebsd6', 'freebsd7', 'freebsd8'):
Hye-Shik Chang99c48a82008-06-28 01:04:31 +00001301 # FreeBSD's P1003.1b semaphore support is very experimental
1302 # and has many known problems. (as of June 2008)
Jesse Noller355b1262009-04-02 00:03:28 +00001303 macros = dict()
Hye-Shik Chang99c48a82008-06-28 01:04:31 +00001304 libraries = []
1305
Jesse Noller37040cd2008-09-30 00:15:45 +00001306 elif platform.startswith('openbsd'):
Jesse Noller355b1262009-04-02 00:03:28 +00001307 macros = dict()
Jesse Noller37040cd2008-09-30 00:15:45 +00001308 libraries = []
1309
Jesse Noller40a61642009-03-31 18:12:35 +00001310 elif platform.startswith('netbsd'):
Jesse Noller355b1262009-04-02 00:03:28 +00001311 macros = dict()
Jesse Noller40a61642009-03-31 18:12:35 +00001312 libraries = []
1313
Benjamin Peterson190d56e2008-06-11 02:40:25 +00001314 else: # Linux and other unices
Jesse Noller355b1262009-04-02 00:03:28 +00001315 macros = dict()
Benjamin Peterson190d56e2008-06-11 02:40:25 +00001316 libraries = ['rt']
1317
1318 if platform == 'win32':
1319 multiprocessing_srcs = [ '_multiprocessing/multiprocessing.c',
1320 '_multiprocessing/semaphore.c',
1321 '_multiprocessing/pipe_connection.c',
1322 '_multiprocessing/socket_connection.c',
1323 '_multiprocessing/win32_functions.c'
1324 ]
1325
1326 else:
1327 multiprocessing_srcs = [ '_multiprocessing/multiprocessing.c',
1328 '_multiprocessing/socket_connection.c'
1329 ]
Mark Dickinsonc4920e82009-11-20 19:30:22 +00001330 if (sysconfig.get_config_var('HAVE_SEM_OPEN') and not
Mark Dickinson5afa6d42009-11-28 10:44:20 +00001331 sysconfig.get_config_var('POSIX_SEMAPHORES_NOT_ENABLED')):
Benjamin Peterson190d56e2008-06-11 02:40:25 +00001332 multiprocessing_srcs.append('_multiprocessing/semaphore.c')
1333
Jesse Nollerf6da8d12009-01-23 14:04:41 +00001334 if sysconfig.get_config_var('WITH_THREAD'):
1335 exts.append ( Extension('_multiprocessing', multiprocessing_srcs,
1336 define_macros=macros.items(),
1337 include_dirs=["Modules/_multiprocessing"]))
1338 else:
1339 missing.append('_multiprocessing')
1340
Benjamin Peterson190d56e2008-06-11 02:40:25 +00001341 # End multiprocessing
1342
1343
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001344 # Platform-specific libraries
Andrew M. Kuchling34febf52001-01-24 03:31:07 +00001345 if platform == 'linux2':
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001346 # Linux-specific modules
1347 exts.append( Extension('linuxaudiodev', ['linuxaudiodev.c']) )
Skip Montanarod1287322007-03-06 15:41:38 +00001348 else:
1349 missing.append('linuxaudiodev')
Greg Ward0a6355e2003-01-08 01:37:41 +00001350
Hye-Shik Chang4e422812005-07-17 02:36:59 +00001351 if platform in ('linux2', 'freebsd4', 'freebsd5', 'freebsd6',
Hye-Shik Changea684742007-10-28 12:38:09 +00001352 'freebsd7', 'freebsd8'):
Guido van Rossum0c016a92003-02-13 16:12:21 +00001353 exts.append( Extension('ossaudiodev', ['ossaudiodev.c']) )
Skip Montanarod1287322007-03-06 15:41:38 +00001354 else:
1355 missing.append('ossaudiodev')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001356
Andrew M. Kuchling34febf52001-01-24 03:31:07 +00001357 if platform == 'sunos5':
Fredrik Lundhade711a2001-01-24 08:00:28 +00001358 # SunOS specific modules
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001359 exts.append( Extension('sunaudiodev', ['sunaudiodev.c']) )
Skip Montanarod1287322007-03-06 15:41:38 +00001360 else:
1361 missing.append('sunaudiodev')
Michael W. Hudson5b109102002-01-23 15:04:41 +00001362
Ronald Oussorena5b642c2009-10-08 08:04:15 +00001363 if platform == 'darwin':
1364 # _scproxy
1365 exts.append(Extension("_scproxy", [os.path.join(srcdir, "Mac/Modules/_scproxy.c")],
1366 extra_link_args= [
1367 '-framework', 'SystemConfiguration',
1368 '-framework', 'CoreFoundation'
1369 ]))
1370
1371
Tim Peters66cb0182004-08-26 05:23:19 +00001372 if platform == 'darwin' and ("--disable-toolbox-glue" not in
Ronald Oussoren090f8152006-03-30 20:18:33 +00001373 sysconfig.get_config_var("CONFIG_ARGS")):
1374
1375 if os.uname()[2] > '8.':
1376 # We're on Mac OS X 10.4 or later, the compiler should
1377 # support '-Wno-deprecated-declarations'. This will
1378 # surpress deprecation warnings for the Carbon extensions,
1379 # these extensions wrap the Carbon APIs and even those
1380 # parts that are deprecated.
1381 carbon_extra_compile_args = ['-Wno-deprecated-declarations']
1382 else:
1383 carbon_extra_compile_args = []
1384
Just van Rossum05ced6a2002-11-24 23:15:57 +00001385 # Mac OS X specific modules.
Neal Norwitz3e1ec3a2006-04-03 04:52:05 +00001386 def macSrcExists(name1, name2=''):
1387 if not name1:
1388 return None
1389 names = (name1,)
1390 if name2:
1391 names = (name1, name2)
1392 path = os.path.join(srcdir, 'Mac', 'Modules', *names)
1393 return os.path.exists(path)
1394
1395 def addMacExtension(name, kwds, extra_srcs=[]):
1396 dirname = ''
1397 if name[0] == '_':
1398 dirname = name[1:].lower()
1399 cname = name + '.c'
1400 cmodulename = name + 'module.c'
1401 # Check for NNN.c, NNNmodule.c, _nnn/NNN.c, _nnn/NNNmodule.c
1402 if macSrcExists(cname):
1403 srcs = [cname]
1404 elif macSrcExists(cmodulename):
1405 srcs = [cmodulename]
1406 elif macSrcExists(dirname, cname):
1407 # XXX(nnorwitz): If all the names ended with module, we
1408 # wouldn't need this condition. ibcarbon is the only one.
1409 srcs = [os.path.join(dirname, cname)]
1410 elif macSrcExists(dirname, cmodulename):
1411 srcs = [os.path.join(dirname, cmodulename)]
1412 else:
1413 raise RuntimeError("%s not found" % name)
1414
1415 # Here's the whole point: add the extension with sources
1416 exts.append(Extension(name, srcs + extra_srcs, **kwds))
1417
1418 # Core Foundation
1419 core_kwds = {'extra_compile_args': carbon_extra_compile_args,
1420 'extra_link_args': ['-framework', 'CoreFoundation'],
1421 }
1422 addMacExtension('_CF', core_kwds, ['cf/pycfbridge.c'])
1423 addMacExtension('autoGIL', core_kwds)
1424
Ronald Oussoren51f06332009-09-20 10:31:22 +00001425
1426
Neal Norwitz3e1ec3a2006-04-03 04:52:05 +00001427 # Carbon
1428 carbon_kwds = {'extra_compile_args': carbon_extra_compile_args,
1429 'extra_link_args': ['-framework', 'Carbon'],
1430 }
Anthony Baxtera2a26b92006-04-05 17:30:38 +00001431 CARBON_EXTS = ['ColorPicker', 'gestalt', 'MacOS', 'Nav',
1432 'OSATerminology', 'icglue',
Neal Norwitz3e1ec3a2006-04-03 04:52:05 +00001433 # All these are in subdirs
Anthony Baxtera2a26b92006-04-05 17:30:38 +00001434 '_AE', '_AH', '_App', '_CarbonEvt', '_Cm', '_Ctl',
Neal Norwitz3e1ec3a2006-04-03 04:52:05 +00001435 '_Dlg', '_Drag', '_Evt', '_File', '_Folder', '_Fm',
Anthony Baxtera2a26b92006-04-05 17:30:38 +00001436 '_Help', '_Icn', '_IBCarbon', '_List',
1437 '_Menu', '_Mlte', '_OSA', '_Res', '_Qd', '_Qdoffs',
Ronald Oussoren5640ce22008-06-05 12:58:24 +00001438 '_Scrap', '_Snd', '_TE',
Anthony Baxtera2a26b92006-04-05 17:30:38 +00001439 ]
Neal Norwitz3e1ec3a2006-04-03 04:52:05 +00001440 for name in CARBON_EXTS:
1441 addMacExtension(name, carbon_kwds)
1442
Ronald Oussoren5640ce22008-06-05 12:58:24 +00001443 # Workaround for a bug in the version of gcc shipped with Xcode 3.
1444 # The _Win extension should build just like the other Carbon extensions, but
1445 # this actually results in a hard crash of the linker.
1446 #
1447 if '-arch ppc64' in cflags and '-arch ppc' in cflags:
1448 win_kwds = {'extra_compile_args': carbon_extra_compile_args + ['-arch', 'i386', '-arch', 'ppc'],
1449 'extra_link_args': ['-framework', 'Carbon', '-arch', 'i386', '-arch', 'ppc'],
1450 }
1451 addMacExtension('_Win', win_kwds)
1452 else:
1453 addMacExtension('_Win', carbon_kwds)
1454
1455
Neal Norwitz3e1ec3a2006-04-03 04:52:05 +00001456 # Application Services & QuickTime
1457 app_kwds = {'extra_compile_args': carbon_extra_compile_args,
1458 'extra_link_args': ['-framework','ApplicationServices'],
1459 }
1460 addMacExtension('_Launch', app_kwds)
1461 addMacExtension('_CG', app_kwds)
1462
Just van Rossum05ced6a2002-11-24 23:15:57 +00001463 exts.append( Extension('_Qt', ['qt/_Qtmodule.c'],
Ronald Oussoren090f8152006-03-30 20:18:33 +00001464 extra_compile_args=carbon_extra_compile_args,
1465 extra_link_args=['-framework', 'QuickTime',
Just van Rossum05ced6a2002-11-24 23:15:57 +00001466 '-framework', 'Carbon']) )
Neal Norwitz3e1ec3a2006-04-03 04:52:05 +00001467
Michael W. Hudson5b109102002-01-23 15:04:41 +00001468
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001469 self.extensions.extend(exts)
1470
1471 # Call the method for detecting whether _tkinter can be compiled
1472 self.detect_tkinter(inc_dirs, lib_dirs)
Fredrik Lundhade711a2001-01-24 08:00:28 +00001473
Skip Montanarod1287322007-03-06 15:41:38 +00001474 if '_tkinter' not in [e.name for e in self.extensions]:
1475 missing.append('_tkinter')
1476
1477 return missing
1478
Jack Jansen0b06be72002-06-21 14:48:38 +00001479 def detect_tkinter_darwin(self, inc_dirs, lib_dirs):
1480 # The _tkinter module, using frameworks. Since frameworks are quite
1481 # different the UNIX search logic is not sharable.
1482 from os.path import join, exists
1483 framework_dirs = [
Tim Peters2c60f7a2003-01-29 03:49:43 +00001484 '/Library/Frameworks',
Ronald Oussorencea1ddb2009-03-04 21:30:12 +00001485 '/System/Library/Frameworks/',
Jack Jansen0b06be72002-06-21 14:48:38 +00001486 join(os.getenv('HOME'), '/Library/Frameworks')
1487 ]
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001488
Skip Montanaro0174ddd2005-12-30 05:01:26 +00001489 # Find the directory that contains the Tcl.framework and Tk.framework
Jack Jansen0b06be72002-06-21 14:48:38 +00001490 # bundles.
1491 # XXX distutils should support -F!
1492 for F in framework_dirs:
Tim Peters2c60f7a2003-01-29 03:49:43 +00001493 # both Tcl.framework and Tk.framework should be present
Jack Jansen0b06be72002-06-21 14:48:38 +00001494 for fw in 'Tcl', 'Tk':
Tim Peters2c60f7a2003-01-29 03:49:43 +00001495 if not exists(join(F, fw + '.framework')):
Jack Jansen0b06be72002-06-21 14:48:38 +00001496 break
1497 else:
1498 # ok, F is now directory with both frameworks. Continure
1499 # building
1500 break
1501 else:
1502 # Tk and Tcl frameworks not found. Normal "unix" tkinter search
1503 # will now resume.
1504 return 0
Tim Peters2c60f7a2003-01-29 03:49:43 +00001505
Jack Jansen0b06be72002-06-21 14:48:38 +00001506 # For 8.4a2, we must add -I options that point inside the Tcl and Tk
1507 # frameworks. In later release we should hopefully be able to pass
Tim Peters2c60f7a2003-01-29 03:49:43 +00001508 # the -F option to gcc, which specifies a framework lookup path.
Jack Jansen0b06be72002-06-21 14:48:38 +00001509 #
1510 include_dirs = [
Tim Peters2c60f7a2003-01-29 03:49:43 +00001511 join(F, fw + '.framework', H)
Jack Jansen0b06be72002-06-21 14:48:38 +00001512 for fw in 'Tcl', 'Tk'
1513 for H in 'Headers', 'Versions/Current/PrivateHeaders'
1514 ]
1515
Tim Peters2c60f7a2003-01-29 03:49:43 +00001516 # For 8.4a2, the X11 headers are not included. Rather than include a
Jack Jansen0b06be72002-06-21 14:48:38 +00001517 # complicated search, this is a hard-coded path. It could bail out
1518 # if X11 libs are not found...
1519 include_dirs.append('/usr/X11R6/include')
1520 frameworks = ['-framework', 'Tcl', '-framework', 'Tk']
1521
Ronald Oussoren5640ce22008-06-05 12:58:24 +00001522 # All existing framework builds of Tcl/Tk don't support 64-bit
1523 # architectures.
1524 cflags = sysconfig.get_config_vars('CFLAGS')[0]
1525 archs = re.findall('-arch\s+(\w+)', cflags)
Ronald Oussoren91a11a42009-09-15 18:33:33 +00001526 fp = os.popen("file %s/Tk.framework/Tk | grep 'for architecture'"%(F,))
1527 detected_archs = []
1528 for ln in fp:
1529 a = ln.split()[-1]
1530 if a in archs:
1531 detected_archs.append(ln.split()[-1])
1532 fp.close()
Ronald Oussoren5640ce22008-06-05 12:58:24 +00001533
Ronald Oussoren91a11a42009-09-15 18:33:33 +00001534 for a in detected_archs:
1535 frameworks.append('-arch')
1536 frameworks.append(a)
Ronald Oussoren5640ce22008-06-05 12:58:24 +00001537
Jack Jansen0b06be72002-06-21 14:48:38 +00001538 ext = Extension('_tkinter', ['_tkinter.c', 'tkappinit.c'],
1539 define_macros=[('WITH_APPINIT', 1)],
1540 include_dirs = include_dirs,
1541 libraries = [],
Ronald Oussoren5640ce22008-06-05 12:58:24 +00001542 extra_compile_args = frameworks[2:],
Jack Jansen0b06be72002-06-21 14:48:38 +00001543 extra_link_args = frameworks,
1544 )
1545 self.extensions.append(ext)
1546 return 1
1547
Tim Peters2c60f7a2003-01-29 03:49:43 +00001548
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001549 def detect_tkinter(self, inc_dirs, lib_dirs):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001550 # The _tkinter module.
Michael W. Hudson5b109102002-01-23 15:04:41 +00001551
Jack Jansen0b06be72002-06-21 14:48:38 +00001552 # Rather than complicate the code below, detecting and building
1553 # AquaTk is a separate method. Only one Tkinter will be built on
1554 # Darwin - either AquaTk, if it is found, or X11 based Tk.
1555 platform = self.get_platform()
Skip Montanaro0174ddd2005-12-30 05:01:26 +00001556 if (platform == 'darwin' and
1557 self.detect_tkinter_darwin(inc_dirs, lib_dirs)):
Tim Peters2c60f7a2003-01-29 03:49:43 +00001558 return
Jack Jansen0b06be72002-06-21 14:48:38 +00001559
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001560 # Assume we haven't found any of the libraries or include files
Martin v. Löwis3db5b8c2001-07-24 06:54:01 +00001561 # The versions with dots are used on Unix, and the versions without
1562 # dots on Windows, for detection by cygwin.
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001563 tcllib = tklib = tcl_includes = tk_includes = None
Guilherme Polofb118352009-08-16 14:34:26 +00001564 for version in ['8.6', '86', '8.5', '85', '8.4', '84', '8.3', '83',
1565 '8.2', '82', '8.1', '81', '8.0', '80']:
Tarek Ziadée670e5a2009-07-06 12:50:46 +00001566 tklib = self.compiler_obj.find_library_file(lib_dirs,
1567 'tk' + version)
1568 tcllib = self.compiler_obj.find_library_file(lib_dirs,
1569 'tcl' + version)
Michael W. Hudson5b109102002-01-23 15:04:41 +00001570 if tklib and tcllib:
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001571 # Exit the loop when we've found the Tcl/Tk libraries
1572 break
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001573
Fredrik Lundhade711a2001-01-24 08:00:28 +00001574 # Now check for the header files
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001575 if tklib and tcllib:
Andrew M. Kuchling3c0aa7e2004-03-21 18:57:35 +00001576 # Check for the include files on Debian and {Free,Open}BSD, where
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001577 # they're put in /usr/include/{tcl,tk}X.Y
Andrew M. Kuchling3c0aa7e2004-03-21 18:57:35 +00001578 dotversion = version
1579 if '.' not in dotversion and "bsd" in sys.platform.lower():
1580 # OpenBSD and FreeBSD use Tcl/Tk library names like libtcl83.a,
1581 # but the include subdirs are named like .../include/tcl8.3.
1582 dotversion = dotversion[:-1] + '.' + dotversion[-1]
1583 tcl_include_sub = []
1584 tk_include_sub = []
1585 for dir in inc_dirs:
1586 tcl_include_sub += [dir + os.sep + "tcl" + dotversion]
1587 tk_include_sub += [dir + os.sep + "tk" + dotversion]
1588 tk_include_sub += tcl_include_sub
1589 tcl_includes = find_file('tcl.h', inc_dirs, tcl_include_sub)
1590 tk_includes = find_file('tk.h', inc_dirs, tk_include_sub)
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001591
Martin v. Löwise86a59a2003-05-03 08:45:51 +00001592 if (tcllib is None or tklib is None or
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001593 tcl_includes is None or tk_includes is None):
Andrew M. Kuchling3c0aa7e2004-03-21 18:57:35 +00001594 self.announce("INFO: Can't locate Tcl/Tk libs and/or headers", 2)
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001595 return
Fredrik Lundhade711a2001-01-24 08:00:28 +00001596
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001597 # OK... everything seems to be present for Tcl/Tk.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001598
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001599 include_dirs = [] ; libs = [] ; defs = [] ; added_lib_dirs = []
1600 for dir in tcl_includes + tk_includes:
1601 if dir not in include_dirs:
1602 include_dirs.append(dir)
Fredrik Lundhade711a2001-01-24 08:00:28 +00001603
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001604 # Check for various platform-specific directories
Andrew M. Kuchling34febf52001-01-24 03:31:07 +00001605 if platform == 'sunos5':
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001606 include_dirs.append('/usr/openwin/include')
1607 added_lib_dirs.append('/usr/openwin/lib')
1608 elif os.path.exists('/usr/X11R6/include'):
1609 include_dirs.append('/usr/X11R6/include')
Martin v. Löwisfba73692004-11-13 11:13:35 +00001610 added_lib_dirs.append('/usr/X11R6/lib64')
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001611 added_lib_dirs.append('/usr/X11R6/lib')
1612 elif os.path.exists('/usr/X11R5/include'):
1613 include_dirs.append('/usr/X11R5/include')
1614 added_lib_dirs.append('/usr/X11R5/lib')
1615 else:
Fredrik Lundhade711a2001-01-24 08:00:28 +00001616 # Assume default location for X11
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001617 include_dirs.append('/usr/X11/include')
1618 added_lib_dirs.append('/usr/X11/lib')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001619
Jason Tishler9181c942003-02-05 15:16:17 +00001620 # If Cygwin, then verify that X is installed before proceeding
1621 if platform == 'cygwin':
1622 x11_inc = find_file('X11/Xlib.h', [], include_dirs)
1623 if x11_inc is None:
1624 return
1625
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001626 # Check for BLT extension
Tarek Ziadée670e5a2009-07-06 12:50:46 +00001627 if self.compiler_obj.find_library_file(lib_dirs + added_lib_dirs,
1628 'BLT8.0'):
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001629 defs.append( ('WITH_BLT', 1) )
1630 libs.append('BLT8.0')
Tarek Ziadée670e5a2009-07-06 12:50:46 +00001631 elif self.compiler_obj.find_library_file(lib_dirs + added_lib_dirs,
1632 'BLT'):
Martin v. Löwis427a2902002-12-12 20:23:38 +00001633 defs.append( ('WITH_BLT', 1) )
1634 libs.append('BLT')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001635
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001636 # Add the Tcl/Tk libraries
Jason Tishlercccac1a2003-02-05 15:06:46 +00001637 libs.append('tk'+ version)
1638 libs.append('tcl'+ version)
Fredrik Lundhade711a2001-01-24 08:00:28 +00001639
Andrew M. Kuchling34febf52001-01-24 03:31:07 +00001640 if platform in ['aix3', 'aix4']:
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001641 libs.append('ld')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001642
Martin v. Löwis3db5b8c2001-07-24 06:54:01 +00001643 # Finally, link with the X11 libraries (not appropriate on cygwin)
1644 if platform != "cygwin":
1645 libs.append('X11')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001646
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001647 ext = Extension('_tkinter', ['_tkinter.c', 'tkappinit.c'],
1648 define_macros=[('WITH_APPINIT', 1)] + defs,
1649 include_dirs = include_dirs,
1650 libraries = libs,
1651 library_dirs = added_lib_dirs,
1652 )
1653 self.extensions.append(ext)
Fredrik Lundhade711a2001-01-24 08:00:28 +00001654
Guido van Rossum6c7438e2003-02-11 20:05:50 +00001655## # Uncomment these lines if you want to play with xxmodule.c
1656## ext = Extension('xx', ['xxmodule.c'])
1657## self.extensions.append(ext)
1658
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001659 # XXX handle these, but how to detect?
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001660 # *** Uncomment and edit for PIL (TkImaging) extension only:
Fredrik Lundhade711a2001-01-24 08:00:28 +00001661 # -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001662 # *** Uncomment and edit for TOGL extension only:
Fredrik Lundhade711a2001-01-24 08:00:28 +00001663 # -DWITH_TOGL togl.c \
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001664 # *** Uncomment these for TOGL extension only:
Fredrik Lundhade711a2001-01-24 08:00:28 +00001665 # -lGL -lGLU -lXext -lXmu \
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001666
Thomas Heller8bdf81d2008-03-04 20:09:11 +00001667 def configure_ctypes_darwin(self, ext):
1668 # Darwin (OS X) uses preconfigured files, in
1669 # the Modules/_ctypes/libffi_osx directory.
Neil Schemenauerc59c5f32009-02-05 16:32:29 +00001670 srcdir = sysconfig.get_config_var('srcdir')
Thomas Heller8bdf81d2008-03-04 20:09:11 +00001671 ffi_srcdir = os.path.abspath(os.path.join(srcdir, 'Modules',
1672 '_ctypes', 'libffi_osx'))
1673 sources = [os.path.join(ffi_srcdir, p)
1674 for p in ['ffi.c',
Ronald Oussoren5640ce22008-06-05 12:58:24 +00001675 'x86/darwin64.S',
Thomas Heller8bdf81d2008-03-04 20:09:11 +00001676 'x86/x86-darwin.S',
1677 'x86/x86-ffi_darwin.c',
1678 'x86/x86-ffi64.c',
1679 'powerpc/ppc-darwin.S',
1680 'powerpc/ppc-darwin_closure.S',
1681 'powerpc/ppc-ffi_darwin.c',
1682 'powerpc/ppc64-darwin_closure.S',
1683 ]]
1684
1685 # Add .S (preprocessed assembly) to C compiler source extensions.
Tarek Ziadée670e5a2009-07-06 12:50:46 +00001686 self.compiler_obj.src_extensions.append('.S')
Thomas Heller8bdf81d2008-03-04 20:09:11 +00001687
1688 include_dirs = [os.path.join(ffi_srcdir, 'include'),
1689 os.path.join(ffi_srcdir, 'powerpc')]
1690 ext.include_dirs.extend(include_dirs)
1691 ext.sources.extend(sources)
1692 return True
1693
Thomas Hellereba43c12006-04-07 19:04:09 +00001694 def configure_ctypes(self, ext):
Martin v. Löwis9176fc12006-04-11 11:12:43 +00001695 if not self.use_system_libffi:
Thomas Heller8bdf81d2008-03-04 20:09:11 +00001696 if sys.platform == 'darwin':
1697 return self.configure_ctypes_darwin(ext)
1698
Neil Schemenauerc59c5f32009-02-05 16:32:29 +00001699 srcdir = sysconfig.get_config_var('srcdir')
Martin v. Löwis9176fc12006-04-11 11:12:43 +00001700 ffi_builddir = os.path.join(self.build_temp, 'libffi')
1701 ffi_srcdir = os.path.abspath(os.path.join(srcdir, 'Modules',
1702 '_ctypes', 'libffi'))
1703 ffi_configfile = os.path.join(ffi_builddir, 'fficonfig.py')
Thomas Hellercf567c12006-03-08 19:51:58 +00001704
Thomas Heller5e218b42006-04-27 15:50:42 +00001705 from distutils.dep_util import newer_group
1706
1707 config_sources = [os.path.join(ffi_srcdir, fname)
Martin v. Löwisf1a4aa32007-02-14 11:30:56 +00001708 for fname in os.listdir(ffi_srcdir)
1709 if os.path.isfile(os.path.join(ffi_srcdir, fname))]
Thomas Heller5e218b42006-04-27 15:50:42 +00001710 if self.force or newer_group(config_sources,
1711 ffi_configfile):
Martin v. Löwis9176fc12006-04-11 11:12:43 +00001712 from distutils.dir_util import mkpath
1713 mkpath(ffi_builddir)
1714 config_args = []
Thomas Hellercf567c12006-03-08 19:51:58 +00001715
Martin v. Löwis9176fc12006-04-11 11:12:43 +00001716 # Pass empty CFLAGS because we'll just append the resulting
1717 # CFLAGS to Python's; -g or -O2 is to be avoided.
1718 cmd = "cd %s && env CFLAGS='' '%s/configure' %s" \
1719 % (ffi_builddir, ffi_srcdir, " ".join(config_args))
Thomas Hellercf567c12006-03-08 19:51:58 +00001720
Martin v. Löwis9176fc12006-04-11 11:12:43 +00001721 res = os.system(cmd)
1722 if res or not os.path.exists(ffi_configfile):
1723 print "Failed to configure _ctypes module"
1724 return False
Thomas Hellercf567c12006-03-08 19:51:58 +00001725
Martin v. Löwis9176fc12006-04-11 11:12:43 +00001726 fficonfig = {}
1727 execfile(ffi_configfile, globals(), fficonfig)
1728 ffi_srcdir = os.path.join(fficonfig['ffi_srcdir'], 'src')
Thomas Hellercf567c12006-03-08 19:51:58 +00001729
Martin v. Löwis9176fc12006-04-11 11:12:43 +00001730 # Add .S (preprocessed assembly) to C compiler source extensions.
Tarek Ziadée670e5a2009-07-06 12:50:46 +00001731 self.compiler_obj.src_extensions.append('.S')
Thomas Hellercf567c12006-03-08 19:51:58 +00001732
Martin v. Löwis9176fc12006-04-11 11:12:43 +00001733 include_dirs = [os.path.join(ffi_builddir, 'include'),
1734 ffi_builddir, ffi_srcdir]
1735 extra_compile_args = fficonfig['ffi_cflags'].split()
Thomas Hellereba43c12006-04-07 19:04:09 +00001736
Martin v. Löwis9176fc12006-04-11 11:12:43 +00001737 ext.sources.extend(fficonfig['ffi_sources'])
1738 ext.include_dirs.extend(include_dirs)
1739 ext.extra_compile_args.extend(extra_compile_args)
Thomas Heller795246c2006-04-07 19:27:56 +00001740 return True
Thomas Hellereba43c12006-04-07 19:04:09 +00001741
Martin v. Löwis9176fc12006-04-11 11:12:43 +00001742 def detect_ctypes(self, inc_dirs, lib_dirs):
1743 self.use_system_libffi = False
Thomas Hellereba43c12006-04-07 19:04:09 +00001744 include_dirs = []
1745 extra_compile_args = []
Thomas Heller17984892006-08-04 18:57:34 +00001746 extra_link_args = []
Thomas Hellercf567c12006-03-08 19:51:58 +00001747 sources = ['_ctypes/_ctypes.c',
1748 '_ctypes/callbacks.c',
1749 '_ctypes/callproc.c',
1750 '_ctypes/stgdict.c',
1751 '_ctypes/cfield.c',
Thomas Hellereba43c12006-04-07 19:04:09 +00001752 '_ctypes/malloc_closure.c']
Thomas Hellercf567c12006-03-08 19:51:58 +00001753 depends = ['_ctypes/ctypes.h']
1754
1755 if sys.platform == 'darwin':
1756 sources.append('_ctypes/darwin/dlfcn_simple.c')
Thomas Heller8bdf81d2008-03-04 20:09:11 +00001757 extra_compile_args.append('-DMACOSX')
Thomas Hellercf567c12006-03-08 19:51:58 +00001758 include_dirs.append('_ctypes/darwin')
1759# XXX Is this still needed?
1760## extra_link_args.extend(['-read_only_relocs', 'warning'])
1761
Thomas Heller17984892006-08-04 18:57:34 +00001762 elif sys.platform == 'sunos5':
Martin v. Löwis73f12a32006-08-09 23:42:18 +00001763 # XXX This shouldn't be necessary; it appears that some
1764 # of the assembler code is non-PIC (i.e. it has relocations
1765 # when it shouldn't. The proper fix would be to rewrite
1766 # the assembler code to be PIC.
1767 # This only works with GCC; the Sun compiler likely refuses
1768 # this option. If you want to compile ctypes with the Sun
1769 # compiler, please research a proper solution, instead of
1770 # finding some -z option for the Sun compiler.
Thomas Heller17984892006-08-04 18:57:34 +00001771 extra_link_args.append('-mimpure-text')
1772
Thomas Hellerde2d78a2008-06-02 18:41:30 +00001773 elif sys.platform.startswith('hp-ux'):
Thomas Heller03b75dd2008-05-20 19:53:47 +00001774 extra_link_args.append('-fPIC')
1775
Thomas Hellercf567c12006-03-08 19:51:58 +00001776 ext = Extension('_ctypes',
1777 include_dirs=include_dirs,
1778 extra_compile_args=extra_compile_args,
Thomas Heller17984892006-08-04 18:57:34 +00001779 extra_link_args=extra_link_args,
Martin v. Löwis9176fc12006-04-11 11:12:43 +00001780 libraries=[],
Thomas Hellercf567c12006-03-08 19:51:58 +00001781 sources=sources,
1782 depends=depends)
1783 ext_test = Extension('_ctypes_test',
1784 sources=['_ctypes/_ctypes_test.c'])
1785 self.extensions.extend([ext, ext_test])
1786
Martin v. Löwis9176fc12006-04-11 11:12:43 +00001787 if not '--with-system-ffi' in sysconfig.get_config_var("CONFIG_ARGS"):
1788 return
1789
Thomas Heller8bdf81d2008-03-04 20:09:11 +00001790 if sys.platform == 'darwin':
1791 # OS X 10.5 comes with libffi.dylib; the include files are
1792 # in /usr/include/ffi
1793 inc_dirs.append('/usr/include/ffi')
1794
Benjamin Peterson1c335e62010-01-01 15:16:29 +00001795 ffi_inc = [sysconfig.get_config_var("LIBFFI_INCLUDEDIR")]
1796 if not ffi_inc:
1797 ffi_inc = find_file('ffi.h', [], inc_dirs)
Martin v. Löwis9176fc12006-04-11 11:12:43 +00001798 if ffi_inc is not None:
1799 ffi_h = ffi_inc[0] + '/ffi.h'
1800 fp = open(ffi_h)
1801 while 1:
1802 line = fp.readline()
1803 if not line:
1804 ffi_inc = None
1805 break
1806 if line.startswith('#define LIBFFI_H'):
1807 break
1808 ffi_lib = None
1809 if ffi_inc is not None:
1810 for lib_name in ('ffi_convenience', 'ffi_pic', 'ffi'):
Tarek Ziadée670e5a2009-07-06 12:50:46 +00001811 if (self.compiler_obj.find_library_file(lib_dirs, lib_name)):
Martin v. Löwis9176fc12006-04-11 11:12:43 +00001812 ffi_lib = lib_name
1813 break
1814
1815 if ffi_inc and ffi_lib:
1816 ext.include_dirs.extend(ffi_inc)
1817 ext.libraries.append(ffi_lib)
1818 self.use_system_libffi = True
1819
1820
Andrew M. Kuchlingf52d27e2001-05-21 20:29:27 +00001821class PyBuildInstall(install):
1822 # Suppress the warning about installation into the lib_dynload
1823 # directory, which is not in sys.path when running Python during
1824 # installation:
1825 def initialize_options (self):
1826 install.initialize_options(self)
1827 self.warn_dir=0
Michael W. Hudson5b109102002-01-23 15:04:41 +00001828
Michael W. Hudson529a5052002-12-17 16:47:17 +00001829class PyBuildInstallLib(install_lib):
1830 # Do exactly what install_lib does but make sure correct access modes get
1831 # set on installed directories and files. All installed files with get
1832 # mode 644 unless they are a shared library in which case they will get
1833 # mode 755. All installed directories will get mode 755.
1834
1835 so_ext = sysconfig.get_config_var("SO")
1836
1837 def install(self):
1838 outfiles = install_lib.install(self)
1839 self.set_file_modes(outfiles, 0644, 0755)
1840 self.set_dir_modes(self.install_dir, 0755)
1841 return outfiles
1842
1843 def set_file_modes(self, files, defaultMode, sharedLibMode):
1844 if not self.is_chmod_supported(): return
1845 if not files: return
1846
1847 for filename in files:
1848 if os.path.islink(filename): continue
1849 mode = defaultMode
1850 if filename.endswith(self.so_ext): mode = sharedLibMode
1851 log.info("changing mode of %s to %o", filename, mode)
1852 if not self.dry_run: os.chmod(filename, mode)
1853
1854 def set_dir_modes(self, dirname, mode):
1855 if not self.is_chmod_supported(): return
1856 os.path.walk(dirname, self.set_dir_modes_visitor, mode)
1857
1858 def set_dir_modes_visitor(self, mode, dirname, names):
1859 if os.path.islink(dirname): return
1860 log.info("changing mode of %s to %o", dirname, mode)
1861 if not self.dry_run: os.chmod(dirname, mode)
1862
1863 def is_chmod_supported(self):
1864 return hasattr(os, 'chmod')
1865
Guido van Rossum14ee89c2003-02-20 02:52:04 +00001866SUMMARY = """
1867Python is an interpreted, interactive, object-oriented programming
1868language. It is often compared to Tcl, Perl, Scheme or Java.
1869
1870Python combines remarkable power with very clear syntax. It has
1871modules, classes, exceptions, very high level dynamic data types, and
1872dynamic typing. There are interfaces to many system calls and
1873libraries, as well as to various windowing systems (X11, Motif, Tk,
1874Mac, MFC). New built-in modules are easily written in C or C++. Python
1875is also usable as an extension language for applications that need a
1876programmable interface.
1877
1878The Python implementation is portable: it runs on many brands of UNIX,
1879on Windows, DOS, OS/2, Mac, Amiga... If your favorite system isn't
1880listed here, it may still be supported, if there's a C compiler for
1881it. Ask around on comp.lang.python -- or just try compiling Python
1882yourself.
1883"""
1884
1885CLASSIFIERS = """
Guido van Rossum14ee89c2003-02-20 02:52:04 +00001886Development Status :: 6 - Mature
1887License :: OSI Approved :: Python Software Foundation License
1888Natural Language :: English
1889Programming Language :: C
1890Programming Language :: Python
1891Topic :: Software Development
1892"""
1893
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001894def main():
Andrew M. Kuchling62686692001-05-21 20:48:09 +00001895 # turn off warnings when deprecated modules are imported
1896 import warnings
1897 warnings.filterwarnings("ignore",category=DeprecationWarning)
Guido van Rossum14ee89c2003-02-20 02:52:04 +00001898 setup(# PyPI Metadata (PEP 301)
1899 name = "Python",
1900 version = sys.version.split()[0],
1901 url = "http://www.python.org/%s" % sys.version[:3],
1902 maintainer = "Guido van Rossum and the Python community",
1903 maintainer_email = "python-dev@python.org",
1904 description = "A high-level object-oriented programming language",
1905 long_description = SUMMARY.strip(),
1906 license = "PSF license",
1907 classifiers = filter(None, CLASSIFIERS.split("\n")),
1908 platforms = ["Many"],
1909
1910 # Build info
Michael W. Hudson529a5052002-12-17 16:47:17 +00001911 cmdclass = {'build_ext':PyBuildExt, 'install':PyBuildInstall,
1912 'install_lib':PyBuildInstallLib},
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001913 # The struct module is defined here, because build_ext won't be
1914 # called unless there's at least one extension module defined.
Bob Ippolito7ccc95a2006-05-23 19:11:34 +00001915 ext_modules=[Extension('_struct', ['_struct.c'])],
Andrew M. Kuchlingaece4272001-02-28 20:56:49 +00001916
1917 # Scripts to install
Skip Montanaro852f7992004-06-26 22:29:42 +00001918 scripts = ['Tools/scripts/pydoc', 'Tools/scripts/idle',
Martin v. Löwiscdbc9772008-03-24 12:57:53 +00001919 'Tools/scripts/2to3',
Skip Montanaro852f7992004-06-26 22:29:42 +00001920 'Lib/smtpd.py']
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001921 )
Fredrik Lundhade711a2001-01-24 08:00:28 +00001922
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001923# --install-platlib
1924if __name__ == '__main__':
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001925 main()