| 
									
										
										
										
											2001-01-26 21:56:58 +00:00
										 |  |  | # Autodetecting setup.py script for building the Python extensions | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-26 21:56:58 +00:00
										 |  |  | __version__ = "$Revision$" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-06 10:25:02 +00:00
										 |  |  | import sys, os, getopt, imp, re | 
					
						
							| 
									
										
										
										
											2002-12-17 16:47:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | from distutils import log | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | from distutils import sysconfig | 
					
						
							| 
									
										
										
										
											2001-02-23 16:32:32 +00:00
										 |  |  | from distutils import text_file | 
					
						
							| 
									
										
										
										
											2001-01-26 18:03:24 +00:00
										 |  |  | from distutils.errors import * | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | from distutils.core import Extension, setup | 
					
						
							|  |  |  | from distutils.command.build_ext import build_ext | 
					
						
							| 
									
										
										
										
											2001-05-21 20:29:27 +00:00
										 |  |  | from distutils.command.install import install | 
					
						
							| 
									
										
										
										
											2002-12-17 16:47:17 +00:00
										 |  |  | from distutils.command.install_lib import install_lib | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # This global variable is used to hold the list of modules to be disabled. | 
					
						
							|  |  |  | disabled_module_list = [] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-16 15:26:48 +00:00
										 |  |  | def add_dir_to_list(dirlist, dir): | 
					
						
							|  |  |  |     """Add the directory 'dir' to the list 'dirlist' (at the front) if
 | 
					
						
							|  |  |  |     1) 'dir' is not already in 'dirlist' | 
					
						
							|  |  |  |     2) 'dir' actually exists, and is a directory."""
 | 
					
						
							| 
									
										
										
										
											2002-06-26 15:44:30 +00:00
										 |  |  |     if dir is not None and os.path.isdir(dir) and dir not in dirlist: | 
					
						
							| 
									
										
										
										
											2002-01-16 15:26:48 +00:00
										 |  |  |         dirlist.insert(0, dir) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  | def find_file(filename, std_dirs, paths): | 
					
						
							|  |  |  |     """Searches for the directory where a given file is located,
 | 
					
						
							|  |  |  |     and returns a possibly-empty list of additional directories, or None | 
					
						
							|  |  |  |     if the file couldn't be found at all. | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |     'filename' is the name of a file, such as readline.h or libcrypto.a. | 
					
						
							|  |  |  |     'std_dirs' is the list of standard system directories; if the | 
					
						
							|  |  |  |         file is found in one of them, no additional directives are needed. | 
					
						
							|  |  |  |     'paths' is a list of additional locations to check; if the file is | 
					
						
							|  |  |  |         found in one of them, the resulting list will contain the directory. | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Check the standard locations | 
					
						
							|  |  |  |     for dir in std_dirs: | 
					
						
							|  |  |  |         f = os.path.join(dir, filename) | 
					
						
							|  |  |  |         if os.path.exists(f): return [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Check the additional directories | 
					
						
							|  |  |  |     for dir in paths: | 
					
						
							|  |  |  |         f = os.path.join(dir, filename) | 
					
						
							|  |  |  |         if os.path.exists(f): | 
					
						
							|  |  |  |             return [dir] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Not found anywhere | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |     return None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  | def find_library_file(compiler, libname, std_dirs, paths): | 
					
						
							| 
									
										
										
										
											2002-11-27 13:43:46 +00:00
										 |  |  |     result = compiler.find_library_file(std_dirs + paths, libname) | 
					
						
							|  |  |  |     if result is None: | 
					
						
							|  |  |  |         return None | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-27 13:43:46 +00:00
										 |  |  |     # Check whether the found file is in one of the standard directories | 
					
						
							|  |  |  |     dirname = os.path.dirname(result) | 
					
						
							|  |  |  |     for p in std_dirs: | 
					
						
							|  |  |  |         # Ensure path doesn't end with path separator | 
					
						
							|  |  |  |         if p.endswith(os.sep): | 
					
						
							|  |  |  |             p = p.strip(os.sep) | 
					
						
							|  |  |  |         if p == dirname: | 
					
						
							|  |  |  |             return [ ] | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-27 13:43:46 +00:00
										 |  |  |     # Otherwise, it must have been in one of the additional directories, | 
					
						
							|  |  |  |     # so we have to figure out which one. | 
					
						
							|  |  |  |     for p in paths: | 
					
						
							|  |  |  |         # Ensure path doesn't end with path separator | 
					
						
							|  |  |  |         if p.endswith(os.sep): | 
					
						
							|  |  |  |             p = p.strip(os.sep) | 
					
						
							|  |  |  |         if p == dirname: | 
					
						
							|  |  |  |             return [p] | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         assert False, "Internal error: Path not found in std_dirs or paths" | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | def module_enabled(extlist, modname): | 
					
						
							|  |  |  |     """Returns whether the module 'modname' is present in the list
 | 
					
						
							|  |  |  |     of extensions 'extlist'."""
 | 
					
						
							|  |  |  |     extlist = [ext for ext in extlist if ext.name == modname] | 
					
						
							|  |  |  |     return len(extlist) | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-05 22:31:19 +00:00
										 |  |  | def find_module_file(module, dirlist): | 
					
						
							|  |  |  |     """Find a module in a set of possible folders. If it is not found
 | 
					
						
							|  |  |  |     return the unadorned filename"""
 | 
					
						
							|  |  |  |     list = find_file(module, [], dirlist) | 
					
						
							|  |  |  |     if not list: | 
					
						
							|  |  |  |         return module | 
					
						
							|  |  |  |     if len(list) > 1: | 
					
						
							|  |  |  |         self.announce("WARNING: multiple copies of %s found"%module) | 
					
						
							|  |  |  |     return os.path.join(list[0], module) | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | class PyBuildExt(build_ext): | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |     def build_extensions(self): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Detect which modules should be compiled | 
					
						
							|  |  |  |         self.detect_modules() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Remove modules that are present on the disabled list | 
					
						
							|  |  |  |         self.extensions = [ext for ext in self.extensions | 
					
						
							|  |  |  |                            if ext.name not in disabled_module_list] | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # Fix up the autodetected modules, prefixing all the source files | 
					
						
							|  |  |  |         # with Modules/ and adding Python's include directory to the path. | 
					
						
							|  |  |  |         (srcdir,) = sysconfig.get_config_vars('srcdir') | 
					
						
							| 
									
										
										
										
											2002-10-14 20:48:09 +00:00
										 |  |  |         if not srcdir: | 
					
						
							|  |  |  |             # Maybe running on Windows but not using CYGWIN? | 
					
						
							|  |  |  |             raise ValueError("No source directory; cannot proceed.") | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-24 17:18:21 +00:00
										 |  |  |         # Figure out the location of the source code for extension modules | 
					
						
							|  |  |  |         moddir = os.path.join(os.getcwd(), srcdir, 'Modules') | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         moddir = os.path.normpath(moddir) | 
					
						
							|  |  |  |         srcdir, tail = os.path.split(moddir) | 
					
						
							|  |  |  |         srcdir = os.path.normpath(srcdir) | 
					
						
							|  |  |  |         moddir = os.path.normpath(moddir) | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-05 22:31:19 +00:00
										 |  |  |         moddirlist = [moddir] | 
					
						
							|  |  |  |         incdirlist = ['./Include'] | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-05 22:31:19 +00:00
										 |  |  |         # Platform-dependent module source and include directories | 
					
						
							|  |  |  |         platform = self.get_platform() | 
					
						
							| 
									
										
										
										
											2002-06-26 15:44:30 +00:00
										 |  |  |         if platform in ('darwin', 'mac'): | 
					
						
							| 
									
										
										
										
											2001-08-05 22:31:19 +00:00
										 |  |  |             # Mac OS X also includes some mac-specific modules | 
					
						
							|  |  |  |             macmoddir = os.path.join(os.getcwd(), srcdir, 'Mac/Modules') | 
					
						
							|  |  |  |             moddirlist.append(macmoddir) | 
					
						
							|  |  |  |             incdirlist.append('./Mac/Include') | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 17:38:11 +00:00
										 |  |  |         alldirlist = moddirlist + incdirlist | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-28 22:49:26 +00:00
										 |  |  |         # Fix up the paths for scripts, too | 
					
						
							|  |  |  |         self.distribution.scripts = [os.path.join(srcdir, filename) | 
					
						
							|  |  |  |                                      for filename in self.distribution.scripts] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |         for ext in self.extensions[:]: | 
					
						
							| 
									
										
										
										
											2001-08-05 22:31:19 +00:00
										 |  |  |             ext.sources = [ find_module_file(filename, moddirlist) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |                             for filename in ext.sources ] | 
					
						
							| 
									
										
										
										
											2002-06-13 17:38:11 +00:00
										 |  |  |             if ext.depends is not None: | 
					
						
							|  |  |  |                 ext.depends = [find_module_file(filename, alldirlist) | 
					
						
							|  |  |  |                                for filename in ext.depends] | 
					
						
							| 
									
										
										
										
											2001-08-05 22:31:19 +00:00
										 |  |  |             ext.include_dirs.append( '.' ) # to get config.h | 
					
						
							|  |  |  |             for incdir in incdirlist: | 
					
						
							|  |  |  |                 ext.include_dirs.append( os.path.join(srcdir, incdir) ) | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-19 16:58:21 +00:00
										 |  |  |             # If a module has already been built statically, | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |             # don't build it here | 
					
						
							| 
									
										
										
										
											2001-01-19 16:58:21 +00:00
										 |  |  |             if ext.name in sys.builtin_module_names: | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |                 self.extensions.remove(ext) | 
					
						
							| 
									
										
										
										
											2001-01-18 20:39:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-26 15:44:30 +00:00
										 |  |  |         if platform != 'mac': | 
					
						
							|  |  |  |             # Parse Modules/Setup to figure out which modules are turned | 
					
						
							|  |  |  |             # on in the file. | 
					
						
							|  |  |  |             input = text_file.TextFile('Modules/Setup', join_lines=1) | 
					
						
							|  |  |  |             remove_modules = [] | 
					
						
							|  |  |  |             while 1: | 
					
						
							|  |  |  |                 line = input.readline() | 
					
						
							|  |  |  |                 if not line: break | 
					
						
							|  |  |  |                 line = line.split() | 
					
						
							|  |  |  |                 remove_modules.append( line[0] ) | 
					
						
							|  |  |  |             input.close() | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-26 15:44:30 +00:00
										 |  |  |             for ext in self.extensions[:]: | 
					
						
							|  |  |  |                 if ext.name in remove_modules: | 
					
						
							|  |  |  |                     self.extensions.remove(ext) | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-18 20:39:34 +00:00
										 |  |  |         # When you run "make CC=altcc" or something similar, you really want | 
					
						
							|  |  |  |         # those environment variables passed into the setup.py phase.  Here's | 
					
						
							|  |  |  |         # a small set of useful ones. | 
					
						
							|  |  |  |         compiler = os.environ.get('CC') | 
					
						
							|  |  |  |         linker_so = os.environ.get('LDSHARED') | 
					
						
							|  |  |  |         args = {} | 
					
						
							|  |  |  |         # unfortunately, distutils doesn't let us provide separate C and C++ | 
					
						
							|  |  |  |         # compilers | 
					
						
							|  |  |  |         if compiler is not None: | 
					
						
							| 
									
										
										
										
											2003-01-01 20:07:49 +00:00
										 |  |  |             (ccshared,opt,base) = sysconfig.get_config_vars('CCSHARED','OPT','BASECFLAGS') | 
					
						
							|  |  |  |             args['compiler_so'] = compiler + ' ' + opt + ' ' + ccshared + ' ' + base | 
					
						
							| 
									
										
										
										
											2001-01-18 20:39:34 +00:00
										 |  |  |         if linker_so is not None: | 
					
						
							| 
									
										
										
										
											2001-10-08 13:18:37 +00:00
										 |  |  |             args['linker_so'] = linker_so | 
					
						
							| 
									
										
										
										
											2001-01-18 20:39:34 +00:00
										 |  |  |         self.compiler.set_executables(**args) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         build_ext.build_extensions(self) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-26 18:03:24 +00:00
										 |  |  |     def build_extension(self, ext): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             build_ext.build_extension(self, ext) | 
					
						
							|  |  |  |         except (CCompilerError, DistutilsError), why: | 
					
						
							|  |  |  |             self.announce('WARNING: building of extension "%s" failed: %s' % | 
					
						
							|  |  |  |                           (ext.name, sys.exc_info()[1])) | 
					
						
							| 
									
										
										
										
											2001-05-21 20:48:09 +00:00
										 |  |  |             return | 
					
						
							| 
									
										
										
										
											2001-11-01 14:44:15 +00:00
										 |  |  |         # Workaround for Mac OS X: The Carbon-based modules cannot be | 
					
						
							|  |  |  |         # reliably imported into a command-line Python | 
					
						
							|  |  |  |         if 'Carbon' in ext.extra_link_args: | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  |             self.announce( | 
					
						
							|  |  |  |                 'WARNING: skipping import check for Carbon-based "%s"' % | 
					
						
							|  |  |  |                 ext.name) | 
					
						
							|  |  |  |             return | 
					
						
							| 
									
										
										
										
											2002-05-22 16:46:15 +00:00
										 |  |  |         # Workaround for Cygwin: Cygwin currently has fork issues when many | 
					
						
							|  |  |  |         # modules have been imported | 
					
						
							|  |  |  |         if self.get_platform() == 'cygwin': | 
					
						
							|  |  |  |             self.announce('WARNING: skipping import check for Cygwin-based "%s"' | 
					
						
							|  |  |  |                 % ext.name) | 
					
						
							|  |  |  |             return | 
					
						
							| 
									
										
										
										
											2002-01-23 15:07:46 +00:00
										 |  |  |         ext_filename = os.path.join( | 
					
						
							|  |  |  |             self.build_lib, | 
					
						
							|  |  |  |             self.get_ext_filename(self.get_ext_fullname(ext.name))) | 
					
						
							| 
									
										
										
										
											2001-05-21 20:48:09 +00:00
										 |  |  |         try: | 
					
						
							| 
									
										
										
										
											2002-01-23 15:07:46 +00:00
										 |  |  |             imp.load_dynamic(ext.name, ext_filename) | 
					
						
							| 
									
										
										
										
											2002-02-16 18:23:30 +00:00
										 |  |  |         except ImportError, why: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if 1: | 
					
						
							| 
									
										
										
										
											2002-03-01 14:16:31 +00:00
										 |  |  |                 self.announce('*** WARNING: renaming "%s" since importing it' | 
					
						
							| 
									
										
										
										
											2002-02-16 18:23:30 +00:00
										 |  |  |                               ' failed: %s' % (ext.name, why)) | 
					
						
							|  |  |  |                 assert not self.inplace | 
					
						
							| 
									
										
										
										
											2002-03-01 14:16:31 +00:00
										 |  |  |                 basename, tail = os.path.splitext(ext_filename) | 
					
						
							|  |  |  |                 newname = basename + "_failed" + tail | 
					
						
							|  |  |  |                 if os.path.exists(newname): os.remove(newname) | 
					
						
							|  |  |  |                 os.rename(ext_filename, newname) | 
					
						
							| 
									
										
										
										
											2002-02-16 18:23:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 # XXX -- This relies on a Vile HACK in | 
					
						
							|  |  |  |                 # distutils.command.build_ext.build_extension().  The | 
					
						
							|  |  |  |                 # _built_objects attribute is stored there strictly for | 
					
						
							|  |  |  |                 # use here. | 
					
						
							| 
									
										
										
										
											2002-03-25 14:20:09 +00:00
										 |  |  |                 # If there is a failure, _built_objects may not be there, | 
					
						
							|  |  |  |                 # so catch the AttributeError and move on. | 
					
						
							|  |  |  |                 try: | 
					
						
							|  |  |  |                     for filename in self._built_objects: | 
					
						
							|  |  |  |                         os.remove(filename) | 
					
						
							|  |  |  |                 except AttributeError: | 
					
						
							|  |  |  |                     self.announce('unable to remove files (ignored)') | 
					
						
							| 
									
										
										
										
											2002-02-16 18:23:30 +00:00
										 |  |  |             else: | 
					
						
							|  |  |  |                 self.announce('*** WARNING: importing extension "%s" ' | 
					
						
							|  |  |  |                               'failed: %s' % (ext.name, why)) | 
					
						
							| 
									
										
										
										
											2001-12-06 22:59:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-24 03:31:07 +00:00
										 |  |  |     def get_platform (self): | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  |         # Get value of sys.platform | 
					
						
							|  |  |  |         platform = sys.platform | 
					
						
							|  |  |  |         if platform[:6] =='cygwin': | 
					
						
							|  |  |  |             platform = 'cygwin' | 
					
						
							| 
									
										
										
										
											2001-02-06 23:37:23 +00:00
										 |  |  |         elif platform[:4] =='beos': | 
					
						
							|  |  |  |             platform = 'beos' | 
					
						
							| 
									
										
										
										
											2001-12-05 15:54:29 +00:00
										 |  |  |         elif platform[:6] == 'darwin': | 
					
						
							|  |  |  |             platform = 'darwin' | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  |         elif platform[:6] == 'atheos': | 
					
						
							|  |  |  |             platform = 'atheos' | 
					
						
							| 
									
										
										
										
											2001-01-24 03:31:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  |         return platform | 
					
						
							| 
									
										
										
										
											2001-01-24 03:31:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |     def detect_modules(self): | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  |         # Ensure that /usr/local is always used | 
					
						
							| 
									
										
										
										
											2002-01-16 15:26:48 +00:00
										 |  |  |         add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib') | 
					
						
							|  |  |  |         add_dir_to_list(self.compiler.include_dirs, '/usr/local/include') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-01 20:07:49 +00:00
										 |  |  |         # fink installs lots of goodies in /sw/... - make sure we | 
					
						
							|  |  |  |         # check there | 
					
						
							|  |  |  |         if sys.platform == "darwin": | 
					
						
							|  |  |  |             add_dir_to_list(self.compiler.library_dirs, '/sw/lib') | 
					
						
							|  |  |  |             add_dir_to_list(self.compiler.include_dirs, '/sw/include') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-02 13:55:50 +00:00
										 |  |  |         if os.path.normpath(sys.prefix) != '/usr': | 
					
						
							|  |  |  |             add_dir_to_list(self.compiler.library_dirs, | 
					
						
							|  |  |  |                             sysconfig.get_config_var("LIBDIR")) | 
					
						
							|  |  |  |             add_dir_to_list(self.compiler.include_dirs, | 
					
						
							|  |  |  |                             sysconfig.get_config_var("INCLUDEDIR")) | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-17 18:39:25 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             have_unicode = unicode | 
					
						
							|  |  |  |         except NameError: | 
					
						
							|  |  |  |             have_unicode = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |         # lib_dirs and inc_dirs are used to search for files; | 
					
						
							|  |  |  |         # if a file is found in one of those directories, it can | 
					
						
							|  |  |  |         # be assumed that no additional -I,-L directives are needed. | 
					
						
							|  |  |  |         lib_dirs = self.compiler.library_dirs + ['/lib', '/usr/lib'] | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  |         inc_dirs = self.compiler.include_dirs + ['/usr/include'] | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         exts = [] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  |         platform = self.get_platform() | 
					
						
							| 
									
										
										
										
											2002-02-14 01:25:37 +00:00
										 |  |  |         (srcdir,) = sysconfig.get_config_vars('srcdir') | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  |         # Check for AtheOS which has libraries in non-standard locations | 
					
						
							|  |  |  |         if platform == 'atheos': | 
					
						
							|  |  |  |             lib_dirs += ['/system/libs', '/atheos/autolnk/lib'] | 
					
						
							|  |  |  |             lib_dirs += os.getenv('LIBRARY_PATH', '').split(os.pathsep) | 
					
						
							|  |  |  |             inc_dirs += ['/system/include', '/atheos/autolnk/include'] | 
					
						
							|  |  |  |             inc_dirs += os.getenv('C_INCLUDE_PATH', '').split(os.pathsep) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  |         # Check for MacOS X, which doesn't need libm.a at all | 
					
						
							|  |  |  |         math_libs = ['m'] | 
					
						
							| 
									
										
										
										
											2002-06-26 15:44:30 +00:00
										 |  |  |         if platform in ['darwin', 'beos', 'mac']: | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  |             math_libs = [] | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # XXX Omitted modules: gl, pure, dl, SGI-specific modules | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # The following modules are all pretty straightforward, and compile | 
					
						
							|  |  |  |         # on pretty much any POSIXish platform. | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # Some modules that are normally always on: | 
					
						
							|  |  |  |         exts.append( Extension('regex', ['regexmodule.c', 'regexpr.c']) ) | 
					
						
							|  |  |  |         exts.append( Extension('pcre', ['pcremodule.c', 'pypcre.c']) ) | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-12 21:00:48 +00:00
										 |  |  |         exts.append( Extension('_hotshot', ['_hotshot.c']) ) | 
					
						
							| 
									
										
										
										
											2001-02-01 05:26:54 +00:00
										 |  |  |         exts.append( Extension('_weakref', ['_weakref.c']) ) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:59:25 +00:00
										 |  |  |         exts.append( Extension('xreadlines', ['xreadlinesmodule.c']) ) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # array objects | 
					
						
							|  |  |  |         exts.append( Extension('array', ['arraymodule.c']) ) | 
					
						
							|  |  |  |         # complex math library functions | 
					
						
							| 
									
										
										
										
											2001-01-23 22:21:11 +00:00
										 |  |  |         exts.append( Extension('cmath', ['cmathmodule.c'], | 
					
						
							|  |  |  |                                libraries=math_libs) ) | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # math library functions, e.g. sin() | 
					
						
							| 
									
										
										
										
											2001-01-23 22:21:11 +00:00
										 |  |  |         exts.append( Extension('math',  ['mathmodule.c'], | 
					
						
							|  |  |  |                                libraries=math_libs) ) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # fast string operations implemented in C | 
					
						
							|  |  |  |         exts.append( Extension('strop', ['stropmodule.c']) ) | 
					
						
							|  |  |  |         # time operations and variables | 
					
						
							| 
									
										
										
										
											2001-01-23 22:21:11 +00:00
										 |  |  |         exts.append( Extension('time', ['timemodule.c'], | 
					
						
							|  |  |  |                                libraries=math_libs) ) | 
					
						
							| 
									
										
										
										
											2002-12-16 20:31:57 +00:00
										 |  |  |         exts.append( Extension('datetime', ['datetimemodule.c'], | 
					
						
							|  |  |  |                                libraries=math_libs) ) | 
					
						
							| 
									
										
										
										
											2002-12-29 23:03:38 +00:00
										 |  |  |         # random number generator implemented in C | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  |         exts.append( Extension("_random", ["_randommodule.c"]) ) | 
					
						
							| 
									
										
										
										
											2003-02-01 00:10:11 +00:00
										 |  |  |         # fast iterator tools implemented in C | 
					
						
							|  |  |  |         exts.append( Extension("itertools", ["itertoolsmodule.c"]) ) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # operator.add() and similar goodies | 
					
						
							|  |  |  |         exts.append( Extension('operator', ['operator.c']) ) | 
					
						
							| 
									
										
										
										
											2001-02-02 12:12:44 +00:00
										 |  |  |         # Python C API test module | 
					
						
							| 
									
										
										
										
											2001-02-04 03:09:53 +00:00
										 |  |  |         exts.append( Extension('_testcapi', ['_testcapimodule.c']) ) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # static Unicode character database | 
					
						
							| 
									
										
										
										
											2001-08-17 18:39:25 +00:00
										 |  |  |         if have_unicode: | 
					
						
							|  |  |  |             exts.append( Extension('unicodedata', ['unicodedata.c']) ) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # access to ISO C locale support | 
					
						
							| 
									
										
										
										
											2002-08-14 11:13:52 +00:00
										 |  |  |         if platform in ['cygwin']: | 
					
						
							|  |  |  |             locale_libs = ['intl'] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             locale_libs = [] | 
					
						
							|  |  |  |         exts.append( Extension('_locale', ['_localemodule.c'], | 
					
						
							|  |  |  |                                libraries=locale_libs ) ) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Modules with some UNIX dependencies -- on by default: | 
					
						
							|  |  |  |         # (If you have a really backward UNIX, select and socket may not be | 
					
						
							|  |  |  |         # supported...) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # fcntl(2) and ioctl(2) | 
					
						
							|  |  |  |         exts.append( Extension('fcntl', ['fcntlmodule.c']) ) | 
					
						
							| 
									
										
										
										
											2002-06-27 22:06:49 +00:00
										 |  |  |         if platform not in ['mac']: | 
					
						
							|  |  |  |                 # pwd(3) | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  |             exts.append( Extension('pwd', ['pwdmodule.c']) ) | 
					
						
							|  |  |  |             # grp(3) | 
					
						
							|  |  |  |             exts.append( Extension('grp', ['grpmodule.c']) ) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # select(2); not on ancient System V | 
					
						
							|  |  |  |         exts.append( Extension('select', ['selectmodule.c']) ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # The md5 module implements the RSA Data Security, Inc. MD5 | 
					
						
							| 
									
										
										
										
											2001-12-06 22:24:47 +00:00
										 |  |  |         # Message-Digest Algorithm, described in RFC 1321.  The | 
					
						
							|  |  |  |         # necessary files md5c.c and md5.h are included here. | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         exts.append( Extension('md5', ['md5module.c', 'md5c.c']) ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # The sha module implements the SHA checksum algorithm. | 
					
						
							|  |  |  |         # (NIST's Secure Hash Algorithm.) | 
					
						
							|  |  |  |         exts.append( Extension('sha', ['shamodule.c']) ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Helper module for various ascii-encoders | 
					
						
							|  |  |  |         exts.append( Extension('binascii', ['binascii.c']) ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Fred Drake's interface to the Python parser | 
					
						
							|  |  |  |         exts.append( Extension('parser', ['parsermodule.c']) ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-04 17:52:50 +00:00
										 |  |  |         # cStringIO and cPickle | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         exts.append( Extension('cStringIO', ['cStringIO.c']) ) | 
					
						
							|  |  |  |         exts.append( Extension('cPickle', ['cPickle.c']) ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Memory-mapped files (also works on Win32). | 
					
						
							| 
									
										
										
										
											2002-06-27 22:06:49 +00:00
										 |  |  |         if platform not in ['atheos', 'mac']: | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  |             exts.append( Extension('mmap', ['mmapmodule.c']) ) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Lance Ellinghaus's modules: | 
					
						
							|  |  |  |         # enigma-inspired encryption | 
					
						
							|  |  |  |         exts.append( Extension('rotor', ['rotormodule.c']) ) | 
					
						
							| 
									
										
										
										
											2002-06-27 22:06:49 +00:00
										 |  |  |         if platform not in ['mac']: | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  |             # syslog daemon interface | 
					
						
							|  |  |  |             exts.append( Extension('syslog', ['syslogmodule.c']) ) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # George Neville-Neil's timing module: | 
					
						
							|  |  |  |         exts.append( Extension('timing', ['timingmodule.c']) ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2001-01-18 20:39:34 +00:00
										 |  |  |         # Here ends the simple stuff.  From here on, modules need certain | 
					
						
							|  |  |  |         # libraries, are platform-specific, or present other surprises. | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Multimedia modules | 
					
						
							|  |  |  |         # These don't work for 64-bit platforms!!! | 
					
						
							|  |  |  |         # These represent audio samples or images as strings: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  |         # Disabled on 64-bit platforms | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         if sys.maxint != 9223372036854775807L: | 
					
						
							|  |  |  |             # Operations on audio samples | 
					
						
							|  |  |  |             exts.append( Extension('audioop', ['audioop.c']) ) | 
					
						
							|  |  |  |             # Operations on images | 
					
						
							|  |  |  |             exts.append( Extension('imageop', ['imageop.c']) ) | 
					
						
							|  |  |  |             # Read SGI RGB image files (but coded portably) | 
					
						
							|  |  |  |             exts.append( Extension('rgbimg', ['rgbimgmodule.c']) ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # readline | 
					
						
							| 
									
										
										
										
											2001-01-26 18:23:02 +00:00
										 |  |  |         if self.compiler.find_library_file(lib_dirs, 'readline'): | 
					
						
							|  |  |  |             readline_libs = ['readline'] | 
					
						
							| 
									
										
										
										
											2001-08-16 20:30:18 +00:00
										 |  |  |             if self.compiler.find_library_file(lib_dirs, | 
					
						
							|  |  |  |                                                  'ncurses'): | 
					
						
							|  |  |  |                 readline_libs.append('ncurses') | 
					
						
							|  |  |  |             elif self.compiler.find_library_file(lib_dirs + | 
					
						
							| 
									
										
										
										
											2001-01-26 18:23:02 +00:00
										 |  |  |                                                ['/usr/lib/termcap'], | 
					
						
							|  |  |  |                                                'termcap'): | 
					
						
							|  |  |  |                 readline_libs.append('termcap') | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |             exts.append( Extension('readline', ['readline.c'], | 
					
						
							| 
									
										
										
										
											2001-01-26 18:03:24 +00:00
										 |  |  |                                    library_dirs=['/usr/lib/termcap'], | 
					
						
							| 
									
										
										
										
											2001-01-26 18:23:02 +00:00
										 |  |  |                                    libraries=readline_libs) ) | 
					
						
							| 
									
										
										
										
											2002-06-27 22:06:49 +00:00
										 |  |  |         if platform not in ['mac']: | 
					
						
							|  |  |  |                 # crypt module. | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if self.compiler.find_library_file(lib_dirs, 'crypt'): | 
					
						
							|  |  |  |                 libs = ['crypt'] | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 libs = [] | 
					
						
							|  |  |  |             exts.append( Extension('crypt', ['cryptmodule.c'], libraries=libs) ) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # socket(2) | 
					
						
							| 
									
										
										
										
											2002-06-13 14:41:32 +00:00
										 |  |  |         exts.append( Extension('_socket', ['socketmodule.c'], | 
					
						
							| 
									
										
										
										
											2002-06-13 17:38:11 +00:00
										 |  |  |                                depends = ['socketmodule.h']) ) | 
					
						
							| 
									
										
										
										
											2002-02-16 18:23:30 +00:00
										 |  |  |         # Detect SSL support for the socket module (via _ssl) | 
					
						
							| 
									
										
										
										
											2002-08-03 16:39:22 +00:00
										 |  |  |         ssl_incs = find_file('openssl/ssl.h', inc_dirs, | 
					
						
							| 
									
										
										
										
											2001-01-19 16:58:21 +00:00
										 |  |  |                              ['/usr/local/ssl/include', | 
					
						
							|  |  |  |                               '/usr/contrib/ssl/include/' | 
					
						
							|  |  |  |                              ] | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |                              ) | 
					
						
							|  |  |  |         ssl_libs = find_library_file(self.compiler, 'ssl',lib_dirs, | 
					
						
							| 
									
										
										
										
											2001-01-19 16:58:21 +00:00
										 |  |  |                                      ['/usr/local/ssl/lib', | 
					
						
							|  |  |  |                                       '/usr/contrib/ssl/lib/' | 
					
						
							|  |  |  |                                      ] ) | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |         if (ssl_incs is not None and | 
					
						
							|  |  |  |             ssl_libs is not None): | 
					
						
							| 
									
										
										
										
											2002-02-16 18:23:30 +00:00
										 |  |  |             exts.append( Extension('_ssl', ['_ssl.c'], | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |                                    include_dirs = ssl_incs, | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  |                                    library_dirs = ssl_libs, | 
					
						
							| 
									
										
										
										
											2002-06-13 14:41:32 +00:00
										 |  |  |                                    libraries = ['ssl', 'crypto'], | 
					
						
							| 
									
										
										
										
											2002-06-13 17:38:11 +00:00
										 |  |  |                                    depends = ['socketmodule.h']), ) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Modules that provide persistent dictionary-like semantics.  You will | 
					
						
							|  |  |  |         # probably want to arrange for at least one of them to be available on | 
					
						
							|  |  |  |         # your machine, though none are defined by default because of library | 
					
						
							|  |  |  |         # dependencies.  The Python module anydbm.py provides an | 
					
						
							|  |  |  |         # implementation independent wrapper for these; dumbdbm.py provides | 
					
						
							|  |  |  |         # similar functionality (but slower of course) implemented in Python. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:51:12 +00:00
										 |  |  |         # Sleepycat Berkeley DB interface.  http://www.sleepycat.com | 
					
						
							| 
									
										
										
										
											2002-06-14 20:30:31 +00:00
										 |  |  |         # | 
					
						
							| 
									
										
										
										
											2002-12-30 20:51:12 +00:00
										 |  |  |         # This requires the Sleepycat DB code. The earliest supported version | 
					
						
							|  |  |  |         # of that library is 3.0, the latest supported version is 4.1.  A list | 
					
						
							|  |  |  |         # of available releases can be found at | 
					
						
							| 
									
										
										
										
											2002-06-14 20:30:31 +00:00
										 |  |  |         # | 
					
						
							| 
									
										
										
										
											2002-12-06 10:25:02 +00:00
										 |  |  |         # http://www.sleepycat.com/update/index.html | 
					
						
							| 
									
										
										
										
											2002-06-14 20:30:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # when sorted in reverse order, keys for this dict must appear in the | 
					
						
							| 
									
										
										
										
											2002-11-19 08:09:52 +00:00
										 |  |  |         # order you wish to search - e.g., search for db4 before db3 | 
					
						
							| 
									
										
										
										
											2002-06-14 20:30:31 +00:00
										 |  |  |         db_try_this = { | 
					
						
							| 
									
										
										
										
											2002-12-30 20:51:12 +00:00
										 |  |  |             'db4': {'libs': ('db-4.1', 'db-4.0',), | 
					
						
							|  |  |  |                     'libdirs': ('/usr/local/BerkeleyDB.4.1/lib', | 
					
						
							|  |  |  |                                 '/usr/local/BerkeleyDB.4.0/lib', | 
					
						
							| 
									
										
										
										
											2002-08-15 01:34:38 +00:00
										 |  |  |                                 '/usr/local/lib', | 
					
						
							| 
									
										
										
										
											2002-06-14 20:30:31 +00:00
										 |  |  |                                 '/opt/sfw', | 
					
						
							|  |  |  |                                 '/sw/lib', | 
					
						
							|  |  |  |                                 ), | 
					
						
							| 
									
										
										
										
											2002-12-30 20:51:12 +00:00
										 |  |  |                     'incdirs': ('/usr/local/BerkeleyDB.4.1/include', | 
					
						
							|  |  |  |                                 '/usr/local/BerkeleyDB.4.0/include', | 
					
						
							| 
									
										
										
										
											2002-11-09 19:53:04 +00:00
										 |  |  |                                 '/usr/local/include/db4', | 
					
						
							|  |  |  |                                 '/opt/sfw/include/db4', | 
					
						
							|  |  |  |                                 '/sw/include/db4', | 
					
						
							|  |  |  |                                 '/usr/include/db4', | 
					
						
							| 
									
										
										
										
											2002-12-06 10:25:02 +00:00
										 |  |  |                                 )}, | 
					
						
							| 
									
										
										
										
											2003-01-04 04:06:56 +00:00
										 |  |  |             'db3': {'libs': ('db-3.3', 'db-3.2', 'db-3.1'), | 
					
						
							| 
									
										
										
										
											2002-06-14 20:30:31 +00:00
										 |  |  |                     'libdirs': ('/usr/local/BerkeleyDB.3.3/lib', | 
					
						
							|  |  |  |                                 '/usr/local/BerkeleyDB.3.2/lib', | 
					
						
							|  |  |  |                                 '/usr/local/BerkeleyDB.3.1/lib', | 
					
						
							| 
									
										
										
										
											2002-08-15 01:34:38 +00:00
										 |  |  |                                 '/usr/local/lib', | 
					
						
							| 
									
										
										
										
											2002-12-07 14:41:17 +00:00
										 |  |  |                                 '/opt/sfw/lib', | 
					
						
							| 
									
										
										
										
											2002-06-14 20:30:31 +00:00
										 |  |  |                                 '/sw/lib', | 
					
						
							|  |  |  |                                 ), | 
					
						
							|  |  |  |                     'incdirs': ('/usr/local/BerkeleyDB.3.3/include', | 
					
						
							|  |  |  |                                 '/usr/local/BerkeleyDB.3.2/include', | 
					
						
							|  |  |  |                                 '/usr/local/BerkeleyDB.3.1/include', | 
					
						
							| 
									
										
										
										
											2002-08-15 01:34:38 +00:00
										 |  |  |                                 '/usr/local/include/db3', | 
					
						
							| 
									
										
										
										
											2002-06-14 20:30:31 +00:00
										 |  |  |                                 '/opt/sfw/include/db3', | 
					
						
							|  |  |  |                                 '/sw/include/db3', | 
					
						
							| 
									
										
										
										
											2002-08-15 01:34:38 +00:00
										 |  |  |                                 '/usr/include/db3', | 
					
						
							| 
									
										
										
										
											2002-12-06 10:25:02 +00:00
										 |  |  |                                 )}, | 
					
						
							| 
									
										
										
										
											2002-06-14 20:30:31 +00:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         db_search_order = db_try_this.keys() | 
					
						
							|  |  |  |         db_search_order.sort() | 
					
						
							|  |  |  |         db_search_order.reverse() | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-14 20:30:31 +00:00
										 |  |  |         class found(Exception): pass | 
					
						
							|  |  |  |         try: | 
					
						
							| 
									
										
										
										
											2002-12-06 10:25:02 +00:00
										 |  |  |             # See whether there is a Sleepycat header in the standard | 
					
						
							|  |  |  |             # search path. | 
					
						
							|  |  |  |             std_dbinc = None | 
					
						
							|  |  |  |             for d in inc_dirs: | 
					
						
							|  |  |  |                 f = os.path.join(d, "db.h") | 
					
						
							|  |  |  |                 if os.path.exists(f): | 
					
						
							|  |  |  |                     f = open(f).read() | 
					
						
							|  |  |  |                     m = re.search(r"#define\WDB_VERSION_MAJOR\W([1-9]+)", f) | 
					
						
							|  |  |  |                     if m: | 
					
						
							|  |  |  |                         std_dbinc = 'db' + m.group(1) | 
					
						
							| 
									
										
										
										
											2002-06-14 20:30:31 +00:00
										 |  |  |             for dbkey in db_search_order: | 
					
						
							|  |  |  |                 dbd = db_try_this[dbkey] | 
					
						
							|  |  |  |                 for dblib in dbd['libs']: | 
					
						
							| 
									
										
										
										
											2002-12-06 10:25:02 +00:00
										 |  |  |                     # Prefer version-specific includes over standard | 
					
						
							|  |  |  |                     # include locations. | 
					
						
							|  |  |  |                     db_incs = find_file('db.h', [], dbd['incdirs']) | 
					
						
							|  |  |  |                     dblib_dir = find_library_file(self.compiler, | 
					
						
							|  |  |  |                                                   dblib, | 
					
						
							|  |  |  |                                                   lib_dirs, | 
					
						
							|  |  |  |                                                   list(dbd['libdirs'])) | 
					
						
							|  |  |  |                     if (db_incs or dbkey == std_dbinc) and \ | 
					
						
							|  |  |  |                            dblib_dir is not None: | 
					
						
							|  |  |  |                         dblibs = [dblib] | 
					
						
							|  |  |  |                         raise found | 
					
						
							| 
									
										
										
										
											2002-06-14 20:30:31 +00:00
										 |  |  |         except found: | 
					
						
							| 
									
										
										
										
											2002-07-08 21:39:36 +00:00
										 |  |  |             dblibs = [dblib] | 
					
						
							| 
									
										
										
										
											2002-06-24 20:27:33 +00:00
										 |  |  |             # A default source build puts Berkeley DB in something like | 
					
						
							|  |  |  |             # /usr/local/Berkeley.3.3 and the lib dir under that isn't | 
					
						
							|  |  |  |             # normally on ld.so's search path, unless the sysadmin has hacked | 
					
						
							|  |  |  |             # /etc/ld.so.conf.  We add the directory to runtime_library_dirs | 
					
						
							|  |  |  |             # so the proper -R/--rpath flags get passed to the linker.  This | 
					
						
							|  |  |  |             # is usually correct and most trouble free, but may cause problems | 
					
						
							|  |  |  |             # in some unusual system configurations (e.g. the directory is on | 
					
						
							|  |  |  |             # an NFS server that goes away). | 
					
						
							| 
									
										
										
										
											2002-11-19 08:09:52 +00:00
										 |  |  |             exts.append(Extension('_bsddb', ['_bsddb.c'], | 
					
						
							| 
									
										
										
										
											2002-12-06 10:25:02 +00:00
										 |  |  |                                   library_dirs=dblib_dir, | 
					
						
							|  |  |  |                                   runtime_library_dirs=dblib_dir, | 
					
						
							| 
									
										
										
										
											2002-11-19 08:09:52 +00:00
										 |  |  |                                   include_dirs=db_incs, | 
					
						
							|  |  |  |                                   libraries=dblibs)) | 
					
						
							| 
									
										
										
										
											2002-06-14 20:30:31 +00:00
										 |  |  |         else: | 
					
						
							|  |  |  |             db_incs = None | 
					
						
							|  |  |  |             dblibs = [] | 
					
						
							|  |  |  |             dblib_dir = None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # The standard Unix dbm module: | 
					
						
							| 
									
										
										
										
											2002-07-08 21:39:36 +00:00
										 |  |  |         if platform not in ['cygwin']: | 
					
						
							| 
									
										
										
										
											2002-12-07 14:41:17 +00:00
										 |  |  |             if find_file("ndbm.h", inc_dirs, []) is not None: | 
					
						
							|  |  |  |                 # Some systems have -lndbm, others don't | 
					
						
							|  |  |  |                 if self.compiler.find_library_file(lib_dirs, 'ndbm'): | 
					
						
							|  |  |  |                     ndbm_libs = ['ndbm'] | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     ndbm_libs = [] | 
					
						
							| 
									
										
										
										
											2001-01-24 03:31:07 +00:00
										 |  |  |                 exts.append( Extension('dbm', ['dbmmodule.c'], | 
					
						
							| 
									
										
										
										
											2002-07-08 21:39:36 +00:00
										 |  |  |                                        define_macros=[('HAVE_NDBM_H',None)], | 
					
						
							| 
									
										
										
										
											2002-12-07 14:41:17 +00:00
										 |  |  |                                        libraries = ndbm_libs ) ) | 
					
						
							| 
									
										
										
										
											2002-07-08 21:39:36 +00:00
										 |  |  |             elif (self.compiler.find_library_file(lib_dirs, 'gdbm') | 
					
						
							|  |  |  |                   and find_file("gdbm/ndbm.h", inc_dirs, []) is not None): | 
					
						
							|  |  |  |                 exts.append( Extension('dbm', ['dbmmodule.c'], | 
					
						
							|  |  |  |                                        define_macros=[('HAVE_GDBM_NDBM_H',None)], | 
					
						
							| 
									
										
										
										
											2002-06-14 20:30:31 +00:00
										 |  |  |                                        libraries = ['gdbm'] ) ) | 
					
						
							|  |  |  |             elif db_incs is not None: | 
					
						
							|  |  |  |                 exts.append( Extension('dbm', ['dbmmodule.c'], | 
					
						
							| 
									
										
										
										
											2002-12-07 14:41:17 +00:00
										 |  |  |                                        library_dirs=dblib_dir, | 
					
						
							|  |  |  |                                        runtime_library_dirs=dblib_dir, | 
					
						
							| 
									
										
										
										
											2002-06-14 20:30:31 +00:00
										 |  |  |                                        include_dirs=db_incs, | 
					
						
							| 
									
										
										
										
											2002-07-08 21:39:36 +00:00
										 |  |  |                                        define_macros=[('HAVE_BERKDB_H',None), | 
					
						
							|  |  |  |                                                       ('DB_DBM_HSEARCH',None)], | 
					
						
							| 
									
										
										
										
											2002-06-14 20:30:31 +00:00
										 |  |  |                                        libraries=dblibs)) | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # Anthony Baxter's gdbm module.  GNU dbm(3) will require -lgdbm: | 
					
						
							|  |  |  |         if (self.compiler.find_library_file(lib_dirs, 'gdbm')): | 
					
						
							|  |  |  |             exts.append( Extension('gdbm', ['gdbmmodule.c'], | 
					
						
							|  |  |  |                                    libraries = ['gdbm'] ) ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # The mpz module interfaces to the GNU Multiple Precision library. | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  |         # You need to ftp the GNU MP library. | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # This was originally written and tested against GMP 1.2 and 1.3.2. | 
					
						
							|  |  |  |         # It has been modified by Rob Hooft to work with 2.0.2 as well, but I | 
					
						
							| 
									
										
										
										
											2001-12-17 17:24:43 +00:00
										 |  |  |         # haven't tested it recently, and it definitely doesn't work with | 
					
						
							|  |  |  |         # GMP 4.0.  For more complete modules, refer to | 
					
						
							|  |  |  |         # http://gmpy.sourceforge.net and | 
					
						
							|  |  |  |         # http://www.egenix.com/files/python/mxNumber.html | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-03 19:59:30 +00:00
										 |  |  |         # A compatible MP library unencumbered by the GPL also exists.  It was | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # posted to comp.sources.misc in volume 40 and is widely available from | 
					
						
							|  |  |  |         # FTP archive sites. One URL for it is: | 
					
						
							|  |  |  |         # ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (self.compiler.find_library_file(lib_dirs, 'gmp')): | 
					
						
							|  |  |  |             exts.append( Extension('mpz', ['mpzmodule.c'], | 
					
						
							|  |  |  |                                    libraries = ['gmp'] ) ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Unix-only modules | 
					
						
							| 
									
										
										
										
											2001-01-24 03:31:07 +00:00
										 |  |  |         if platform not in ['mac', 'win32']: | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |             # Steen Lumholt's termios module | 
					
						
							|  |  |  |             exts.append( Extension('termios', ['termios.c']) ) | 
					
						
							|  |  |  |             # Jeremy Hylton's rlimit interface | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  |             if platform not in ['atheos']: | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  |                 exts.append( Extension('resource', ['resource.c']) ) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-21 02:38:24 +00:00
										 |  |  |             # Sun yellow pages. Some systems have the functions in libc. | 
					
						
							| 
									
										
										
										
											2002-06-11 06:22:31 +00:00
										 |  |  |             if platform not in ['cygwin', 'atheos']: | 
					
						
							| 
									
										
										
										
											2001-02-27 20:54:23 +00:00
										 |  |  |                 if (self.compiler.find_library_file(lib_dirs, 'nsl')): | 
					
						
							|  |  |  |                     libs = ['nsl'] | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     libs = [] | 
					
						
							|  |  |  |                 exts.append( Extension('nis', ['nismodule.c'], | 
					
						
							|  |  |  |                                        libraries = libs) ) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-26 11:30:36 +00:00
										 |  |  |             # Hye-Shik Chang's iconv_codec C interface | 
					
						
							|  |  |  |             iconv_incs = find_file('iconv.h', inc_dirs, | 
					
						
							|  |  |  |                                    ['/usr/local/include', '/usr/pkg/include']) | 
					
						
							|  |  |  |             iconv_libs = find_library_file(self.compiler, 'iconv', lib_dirs, | 
					
						
							|  |  |  |                                            ['/usr/local/lib', '/usr/pkg/lib']) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (iconv_incs is not None): | 
					
						
							|  |  |  |                 if iconv_libs is not None: | 
					
						
							|  |  |  |                     iconv_libraries = ['iconv'] | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     iconv_libraries = [] # in libc | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-26 11:30:36 +00:00
										 |  |  |                 exts.append( Extension('_iconv_codec', | 
					
						
							|  |  |  |                                        ['_iconv_codec.c'], | 
					
						
							|  |  |  |                                        include_dirs = iconv_incs, | 
					
						
							|  |  |  |                                        library_dirs = iconv_libs, | 
					
						
							|  |  |  |                                        libraries = iconv_libraries), ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # Curses support, requring the System V version of curses, often | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  |         # provided by the ncurses library. | 
					
						
							| 
									
										
										
										
											2001-01-24 03:31:07 +00:00
										 |  |  |         if platform == 'sunos4': | 
					
						
							| 
									
										
										
										
											2001-02-28 19:49:57 +00:00
										 |  |  |             inc_dirs += ['/usr/5include'] | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |             lib_dirs += ['/usr/5lib'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (self.compiler.find_library_file(lib_dirs, 'ncurses')): | 
					
						
							|  |  |  |             curses_libs = ['ncurses'] | 
					
						
							|  |  |  |             exts.append( Extension('_curses', ['_cursesmodule.c'], | 
					
						
							|  |  |  |                                    libraries = curses_libs) ) | 
					
						
							| 
									
										
										
										
											2001-12-06 22:24:47 +00:00
										 |  |  |         elif (self.compiler.find_library_file(lib_dirs, 'curses') | 
					
						
							|  |  |  |               and platform != 'darwin'): | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  |                 # OSX has an old Berkeley curses, not good enough for | 
					
						
							|  |  |  |                 # the _curses module. | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |             if (self.compiler.find_library_file(lib_dirs, 'terminfo')): | 
					
						
							|  |  |  |                 curses_libs = ['curses', 'terminfo'] | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 curses_libs = ['curses', 'termcap'] | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |             exts.append( Extension('_curses', ['_cursesmodule.c'], | 
					
						
							|  |  |  |                                    libraries = curses_libs) ) | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # If the curses module is enabled, check for the panel module | 
					
						
							| 
									
										
										
										
											2001-12-06 15:57:16 +00:00
										 |  |  |         if (module_enabled(exts, '_curses') and | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |             self.compiler.find_library_file(lib_dirs, 'panel')): | 
					
						
							|  |  |  |             exts.append( Extension('_curses_panel', ['_curses_panel.c'], | 
					
						
							|  |  |  |                                    libraries = ['panel'] + curses_libs) ) | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-13 20:09:26 +00:00
										 |  |  |         # Andrew Kuchling's zlib module.  Note that some versions of zlib | 
					
						
							|  |  |  |         # 1.1.3 have security problems.  See CERT Advisory CA-2002-07: | 
					
						
							|  |  |  |         # http://www.cert.org/advisories/CA-2002-07.html | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # zlib 1.1.4 is fixed, but at least one vendor (RedHat) has decided to | 
					
						
							|  |  |  |         # patch its zlib 1.1.3 package instead of upgrading to 1.1.4.  For | 
					
						
							|  |  |  |         # now, we still accept 1.1.3, because we think it's difficult to | 
					
						
							|  |  |  |         # exploit this in Python, and we'd rather make it RedHat's problem | 
					
						
							|  |  |  |         # than our problem <wink>. | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # You can upgrade zlib to version 1.1.4 yourself by going to | 
					
						
							|  |  |  |         # http://www.gzip.org/zlib/ | 
					
						
							| 
									
										
										
										
											2001-04-15 15:16:12 +00:00
										 |  |  |         zlib_inc = find_file('zlib.h', [], inc_dirs) | 
					
						
							|  |  |  |         if zlib_inc is not None: | 
					
						
							|  |  |  |             zlib_h = zlib_inc[0] + '/zlib.h' | 
					
						
							|  |  |  |             version = '"0.0.0"' | 
					
						
							| 
									
										
										
										
											2002-08-13 20:09:26 +00:00
										 |  |  |             version_req = '"1.1.3"' | 
					
						
							| 
									
										
										
										
											2001-04-15 15:16:12 +00:00
										 |  |  |             fp = open(zlib_h) | 
					
						
							|  |  |  |             while 1: | 
					
						
							|  |  |  |                 line = fp.readline() | 
					
						
							|  |  |  |                 if not line: | 
					
						
							|  |  |  |                     break | 
					
						
							| 
									
										
										
										
											2002-08-06 17:28:30 +00:00
										 |  |  |                 if line.startswith('#define ZLIB_VERSION'): | 
					
						
							| 
									
										
										
										
											2001-04-15 15:16:12 +00:00
										 |  |  |                     version = line.split()[2] | 
					
						
							|  |  |  |                     break | 
					
						
							|  |  |  |             if version >= version_req: | 
					
						
							|  |  |  |                 if (self.compiler.find_library_file(lib_dirs, 'z')): | 
					
						
							|  |  |  |                     exts.append( Extension('zlib', ['zlibmodule.c'], | 
					
						
							|  |  |  |                                            libraries = ['z']) ) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-05 16:50:05 +00:00
										 |  |  |         # Gustavo Niemeyer's bz2 module. | 
					
						
							|  |  |  |         if (self.compiler.find_library_file(lib_dirs, 'bz2')): | 
					
						
							|  |  |  |             exts.append( Extension('bz2', ['bz2module.c'], | 
					
						
							|  |  |  |                                    libraries = ['bz2']) ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # Interface to the Expat XML parser | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2002-06-17 17:55:30 +00:00
										 |  |  |         # Expat was written by James Clark and is now maintained by a | 
					
						
							|  |  |  |         # group of developers on SourceForge; see www.libexpat.org for | 
					
						
							|  |  |  |         # more information.  The pyexpat module was written by Paul | 
					
						
							|  |  |  |         # Prescod after a prototype by Jack Jansen.  Source of Expat | 
					
						
							|  |  |  |         # 1.95.2 is included in Modules/expat/.  Usage of a system | 
					
						
							|  |  |  |         # shared libexpat.so/expat.dll is not advised. | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # More information on Expat can be found at www.libexpat.org. | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2002-02-11 23:27:45 +00:00
										 |  |  |         if sys.byteorder == "little": | 
					
						
							| 
									
										
										
										
											2003-01-25 22:41:29 +00:00
										 |  |  |             xmlbo = "1234" | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2003-01-25 22:41:29 +00:00
										 |  |  |             xmlbo = "4321" | 
					
						
							| 
									
										
										
										
											2002-02-14 01:25:37 +00:00
										 |  |  |         expatinc = os.path.join(os.getcwd(), srcdir, 'Modules', 'expat') | 
					
						
							| 
									
										
										
										
											2002-02-11 23:27:45 +00:00
										 |  |  |         exts.append(Extension('pyexpat', | 
					
						
							|  |  |  |                               sources = [ | 
					
						
							|  |  |  |             'pyexpat.c', | 
					
						
							|  |  |  |             'expat/xmlparse.c', | 
					
						
							|  |  |  |             'expat/xmlrole.c', | 
					
						
							|  |  |  |             'expat/xmltok.c', | 
					
						
							|  |  |  |             ], | 
					
						
							|  |  |  |                               define_macros = [ | 
					
						
							|  |  |  |             ('XML_NS', '1'), | 
					
						
							|  |  |  |             ('XML_DTD', '1'), | 
					
						
							| 
									
										
										
										
											2003-01-25 22:41:29 +00:00
										 |  |  |             ('BYTEORDER', xmlbo), | 
					
						
							| 
									
										
										
										
											2002-02-11 23:27:45 +00:00
										 |  |  |             ('XML_CONTEXT_BYTES','1024'), | 
					
						
							|  |  |  |             ], | 
					
						
							| 
									
										
										
										
											2002-02-14 01:25:37 +00:00
										 |  |  |                               include_dirs = [expatinc] | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  |                                )) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  |         # Dynamic loading module | 
					
						
							| 
									
										
										
										
											2002-09-12 14:41:20 +00:00
										 |  |  |         if sys.maxint == 0x7fffffff: | 
					
						
							|  |  |  |             # This requires sizeof(int) == sizeof(long) == sizeof(char*) | 
					
						
							|  |  |  |             dl_inc = find_file('dlfcn.h', [], inc_dirs) | 
					
						
							|  |  |  |             if (dl_inc is not None) and (platform not in ['atheos']): | 
					
						
							|  |  |  |                 exts.append( Extension('dl', ['dlmodule.c']) ) | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # Platform-specific libraries | 
					
						
							| 
									
										
										
										
											2001-01-24 03:31:07 +00:00
										 |  |  |         if platform == 'linux2': | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |             # Linux-specific modules | 
					
						
							|  |  |  |             exts.append( Extension('linuxaudiodev', ['linuxaudiodev.c']) ) | 
					
						
							| 
									
										
										
										
											2003-01-08 01:37:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-21 21:01:37 +00:00
										 |  |  |             # ossaudiodev currently doesn't work, so don't build. | 
					
						
							|  |  |  | ##             # XXX should also build this on FreeBSD! | 
					
						
							|  |  |  | ##             exts.append( Extension('ossaudiodev', ['ossaudiodev.c']) ) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-24 03:31:07 +00:00
										 |  |  |         if platform == 'sunos5': | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  |             # SunOS specific modules | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |             exts.append( Extension('sunaudiodev', ['sunaudiodev.c']) ) | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-05 15:54:29 +00:00
										 |  |  |         if platform == 'darwin': | 
					
						
							| 
									
										
										
										
											2002-11-24 23:15:57 +00:00
										 |  |  |             # Mac OS X specific modules. | 
					
						
							| 
									
										
										
										
											2002-06-21 14:48:38 +00:00
										 |  |  |             exts.append( Extension('_CF', ['cf/_CFmodule.c', 'cf/pycfbridge.c'], | 
					
						
							| 
									
										
										
										
											2002-03-07 09:58:56 +00:00
										 |  |  |                         extra_link_args=['-framework', 'CoreFoundation']) ) | 
					
						
							| 
									
										
										
										
											2002-07-08 21:39:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-24 23:15:57 +00:00
										 |  |  |             exts.append( Extension('gestalt', ['gestaltmodule.c'], | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  |                         extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							| 
									
										
										
										
											2002-11-24 23:15:57 +00:00
										 |  |  |             exts.append( Extension('MacOS', ['macosmodule.c'], | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  |                         extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							| 
									
										
										
										
											2002-11-24 23:15:57 +00:00
										 |  |  |             exts.append( Extension('icglue', ['icgluemodule.c'], | 
					
						
							| 
									
										
										
										
											2002-08-29 21:09:00 +00:00
										 |  |  |                         extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							| 
									
										
										
										
											2002-11-24 23:15:57 +00:00
										 |  |  |             exts.append( Extension('_Res', ['res/_Resmodule.c'], | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  |                         extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							| 
									
										
										
										
											2002-11-24 23:15:57 +00:00
										 |  |  |             exts.append( Extension('_Snd', ['snd/_Sndmodule.c'], | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  |                         extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							| 
									
										
										
										
											2002-11-24 23:15:57 +00:00
										 |  |  |             exts.append( Extension('Nav', ['Nav.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_AE', ['ae/_AEmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_AH', ['ah/_AHmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_App', ['app/_Appmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_CarbonEvt', ['carbonevt/_CarbonEvtmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_CG', ['cg/_CGmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'ApplicationServices', | 
					
						
							|  |  |  |                                      '-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_Cm', ['cm/_Cmmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_Ctl', ['ctl/_Ctlmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_Dlg', ['dlg/_Dlgmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_Drag', ['drag/_Dragmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_Evt', ['evt/_Evtmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_File', ['file/_Filemodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_Folder', ['folder/_Foldermodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_Fm', ['fm/_Fmmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_Help', ['help/_Helpmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_Icn', ['icn/_Icnmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_IBCarbon', ['ibcarbon/_IBCarbon.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_List', ['list/_Listmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_Menu', ['menu/_Menumodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_Mlte', ['mlte/_Mltemodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_Qd', ['qd/_Qdmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_Qdoffs', ['qdoffs/_Qdoffsmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_Qt', ['qt/_Qtmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'QuickTime', | 
					
						
							|  |  |  |                                      '-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_Scrap', ['scrap/_Scrapmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             exts.append( Extension('_TE', ['te/_TEmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							|  |  |  |             # As there is no standardized place (yet) to put | 
					
						
							|  |  |  |             # user-installed Mac libraries on OSX, we search for "waste" | 
					
						
							|  |  |  |             # in parent directories of the Python source tree. You | 
					
						
							|  |  |  |             # should put a symlink to your Waste installation in the | 
					
						
							|  |  |  |             # same folder as your python source tree.  Or modify the | 
					
						
							|  |  |  |             # next few lines:-) | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  |             waste_incs = find_file("WASTE.h", [], | 
					
						
							| 
									
										
										
										
											2002-11-24 23:15:57 +00:00
										 |  |  |                     ['../'*n + 'waste/C_C++ Headers' for n in (0,1,2,3,4)]) | 
					
						
							|  |  |  |             waste_libs = find_library_file(self.compiler, "WASTE", [], | 
					
						
							|  |  |  |                     ["../"*n + "waste/Static Libraries" for n in (0,1,2,3,4)]) | 
					
						
							|  |  |  |             if waste_incs != None and waste_libs != None: | 
					
						
							|  |  |  |                 (srcdir,) = sysconfig.get_config_vars('srcdir') | 
					
						
							|  |  |  |                 exts.append( Extension('waste', | 
					
						
							|  |  |  |                                ['waste/wastemodule.c'] + [ | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  |                                 os.path.join(srcdir, d) for d in | 
					
						
							| 
									
										
										
										
											2002-11-24 23:15:57 +00:00
										 |  |  |                                 'Mac/Wastemods/WEObjectHandlers.c', | 
					
						
							|  |  |  |                                 'Mac/Wastemods/WETabHooks.c', | 
					
						
							|  |  |  |                                 'Mac/Wastemods/WETabs.c' | 
					
						
							|  |  |  |                                ], | 
					
						
							|  |  |  |                                include_dirs = waste_incs + [os.path.join(srcdir, 'Mac/Wastemods')], | 
					
						
							|  |  |  |                                library_dirs = waste_libs, | 
					
						
							|  |  |  |                                libraries = ['WASTE'], | 
					
						
							|  |  |  |                                extra_link_args = ['-framework', 'Carbon'], | 
					
						
							|  |  |  |                 ) ) | 
					
						
							|  |  |  |             exts.append( Extension('_Win', ['win/_Winmodule.c'], | 
					
						
							|  |  |  |                     extra_link_args=['-framework', 'Carbon']) ) | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |         self.extensions.extend(exts) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Call the method for detecting whether _tkinter can be compiled | 
					
						
							|  |  |  |         self.detect_tkinter(inc_dirs, lib_dirs) | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-21 14:48:38 +00:00
										 |  |  |     def detect_tkinter_darwin(self, inc_dirs, lib_dirs): | 
					
						
							|  |  |  |         # The _tkinter module, using frameworks. Since frameworks are quite | 
					
						
							|  |  |  |         # different the UNIX search logic is not sharable. | 
					
						
							|  |  |  |         from os.path import join, exists | 
					
						
							|  |  |  |         framework_dirs = [ | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  |             '/System/Library/Frameworks/', | 
					
						
							|  |  |  |             '/Library/Frameworks', | 
					
						
							| 
									
										
										
										
											2002-06-21 14:48:38 +00:00
										 |  |  |             join(os.getenv('HOME'), '/Library/Frameworks') | 
					
						
							|  |  |  |         ] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Find the directory that contains the Tcl.framwork and Tk.framework | 
					
						
							|  |  |  |         # bundles. | 
					
						
							|  |  |  |         # XXX distutils should support -F! | 
					
						
							|  |  |  |         for F in framework_dirs: | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  |             # both Tcl.framework and Tk.framework should be present | 
					
						
							| 
									
										
										
										
											2002-06-21 14:48:38 +00:00
										 |  |  |             for fw in 'Tcl', 'Tk': | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  |                 if not exists(join(F, fw + '.framework')): | 
					
						
							| 
									
										
										
										
											2002-06-21 14:48:38 +00:00
										 |  |  |                     break | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 # ok, F is now directory with both frameworks. Continure | 
					
						
							|  |  |  |                 # building | 
					
						
							|  |  |  |                 break | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             # Tk and Tcl frameworks not found. Normal "unix" tkinter search | 
					
						
							|  |  |  |             # will now resume. | 
					
						
							|  |  |  |             return 0 | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-21 14:48:38 +00:00
										 |  |  |         # For 8.4a2, we must add -I options that point inside the Tcl and Tk | 
					
						
							|  |  |  |         # frameworks. In later release we should hopefully be able to pass | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  |         # the -F option to gcc, which specifies a framework lookup path. | 
					
						
							| 
									
										
										
										
											2002-06-21 14:48:38 +00:00
										 |  |  |         # | 
					
						
							|  |  |  |         include_dirs = [ | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  |             join(F, fw + '.framework', H) | 
					
						
							| 
									
										
										
										
											2002-06-21 14:48:38 +00:00
										 |  |  |             for fw in 'Tcl', 'Tk' | 
					
						
							|  |  |  |             for H in 'Headers', 'Versions/Current/PrivateHeaders' | 
					
						
							|  |  |  |         ] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  |         # For 8.4a2, the X11 headers are not included. Rather than include a | 
					
						
							| 
									
										
										
										
											2002-06-21 14:48:38 +00:00
										 |  |  |         # complicated search, this is a hard-coded path. It could bail out | 
					
						
							|  |  |  |         # if X11 libs are not found... | 
					
						
							|  |  |  |         include_dirs.append('/usr/X11R6/include') | 
					
						
							|  |  |  |         frameworks = ['-framework', 'Tcl', '-framework', 'Tk'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ext = Extension('_tkinter', ['_tkinter.c', 'tkappinit.c'], | 
					
						
							|  |  |  |                         define_macros=[('WITH_APPINIT', 1)], | 
					
						
							|  |  |  |                         include_dirs = include_dirs, | 
					
						
							|  |  |  |                         libraries = [], | 
					
						
							|  |  |  |                         extra_compile_args = frameworks, | 
					
						
							|  |  |  |                         extra_link_args = frameworks, | 
					
						
							|  |  |  |                         ) | 
					
						
							|  |  |  |         self.extensions.append(ext) | 
					
						
							|  |  |  |         return 1 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |     def detect_tkinter(self, inc_dirs, lib_dirs): | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # The _tkinter module. | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-21 14:48:38 +00:00
										 |  |  |         # Rather than complicate the code below, detecting and building | 
					
						
							|  |  |  |         # AquaTk is a separate method. Only one Tkinter will be built on | 
					
						
							|  |  |  |         # Darwin - either AquaTk, if it is found, or X11 based Tk. | 
					
						
							|  |  |  |         platform = self.get_platform() | 
					
						
							|  |  |  |         if platform == 'darwin' and \ | 
					
						
							|  |  |  |            self.detect_tkinter_darwin(inc_dirs, lib_dirs): | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  |             return | 
					
						
							| 
									
										
										
										
											2002-06-21 14:48:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 20:30:46 +00:00
										 |  |  |         # Set platform specific library prefix, if any | 
					
						
							|  |  |  |         if platform == 'cygwin': | 
					
						
							|  |  |  |             lib_prefix = 'cyg' | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             lib_prefix = '' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |         # Assume we haven't found any of the libraries or include files | 
					
						
							| 
									
										
										
										
											2001-07-24 06:54:01 +00:00
										 |  |  |         # The versions with dots are used on Unix, and the versions without | 
					
						
							|  |  |  |         # dots on Windows, for detection by cygwin. | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |         tcllib = tklib = tcl_includes = tk_includes = None | 
					
						
							| 
									
										
										
										
											2001-07-24 06:54:01 +00:00
										 |  |  |         for version in ['8.4', '84', '8.3', '83', '8.2', | 
					
						
							|  |  |  |                         '82', '8.1', '81', '8.0', '80']: | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  |             tklib = self.compiler.find_library_file(lib_dirs, | 
					
						
							| 
									
										
										
										
											2002-12-31 20:30:46 +00:00
										 |  |  |                                                     lib_prefix + 'tk' + version) | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  |             tcllib = self.compiler.find_library_file(lib_dirs, | 
					
						
							| 
									
										
										
										
											2002-12-31 20:30:46 +00:00
										 |  |  |                                                      lib_prefix + 'tcl' + version) | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  |             if tklib and tcllib: | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |                 # Exit the loop when we've found the Tcl/Tk libraries | 
					
						
							|  |  |  |                 break | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  |         # Now check for the header files | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |         if tklib and tcllib: | 
					
						
							|  |  |  |             # Check for the include files on Debian, where | 
					
						
							|  |  |  |             # they're put in /usr/include/{tcl,tk}X.Y | 
					
						
							| 
									
										
										
										
											2001-02-06 22:15:27 +00:00
										 |  |  |             debian_tcl_include = [ '/usr/include/tcl' + version ] | 
					
						
							| 
									
										
										
										
											2001-12-06 22:24:47 +00:00
										 |  |  |             debian_tk_include =  [ '/usr/include/tk'  + version ] + \ | 
					
						
							|  |  |  |                                  debian_tcl_include | 
					
						
							| 
									
										
										
										
											2001-02-06 22:15:27 +00:00
										 |  |  |             tcl_includes = find_file('tcl.h', inc_dirs, debian_tcl_include) | 
					
						
							|  |  |  |             tk_includes = find_file('tk.h', inc_dirs, debian_tk_include) | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (tcllib is None or tklib is None and | 
					
						
							|  |  |  |             tcl_includes is None or tk_includes is None): | 
					
						
							|  |  |  |             # Something's missing, so give up | 
					
						
							|  |  |  |             return | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |         # OK... everything seems to be present for Tcl/Tk. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         include_dirs = [] ; libs = [] ; defs = [] ; added_lib_dirs = [] | 
					
						
							|  |  |  |         for dir in tcl_includes + tk_includes: | 
					
						
							|  |  |  |             if dir not in include_dirs: | 
					
						
							|  |  |  |                 include_dirs.append(dir) | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |         # Check for various platform-specific directories | 
					
						
							| 
									
										
										
										
											2001-01-24 03:31:07 +00:00
										 |  |  |         if platform == 'sunos5': | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |             include_dirs.append('/usr/openwin/include') | 
					
						
							|  |  |  |             added_lib_dirs.append('/usr/openwin/lib') | 
					
						
							| 
									
										
										
										
											2002-12-31 20:30:46 +00:00
										 |  |  |         elif platform == 'cygwin': | 
					
						
							|  |  |  |             # Verify that the pseudo-X headers are installed before proceeding | 
					
						
							|  |  |  |             x11_inc = find_file('X11/Xlib.h', [], inc_dirs) | 
					
						
							|  |  |  |             if x11_inc is None: | 
					
						
							|  |  |  |                 return | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |         elif os.path.exists('/usr/X11R6/include'): | 
					
						
							|  |  |  |             include_dirs.append('/usr/X11R6/include') | 
					
						
							|  |  |  |             added_lib_dirs.append('/usr/X11R6/lib') | 
					
						
							|  |  |  |         elif os.path.exists('/usr/X11R5/include'): | 
					
						
							|  |  |  |             include_dirs.append('/usr/X11R5/include') | 
					
						
							|  |  |  |             added_lib_dirs.append('/usr/X11R5/lib') | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  |             # Assume default location for X11 | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |             include_dirs.append('/usr/X11/include') | 
					
						
							|  |  |  |             added_lib_dirs.append('/usr/X11/lib') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Check for BLT extension | 
					
						
							| 
									
										
										
										
											2001-12-06 22:24:47 +00:00
										 |  |  |         if self.compiler.find_library_file(lib_dirs + added_lib_dirs, | 
					
						
							|  |  |  |                                            'BLT8.0'): | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |             defs.append( ('WITH_BLT', 1) ) | 
					
						
							|  |  |  |             libs.append('BLT8.0') | 
					
						
							| 
									
										
										
										
											2002-12-12 20:23:38 +00:00
										 |  |  |         elif self.compiler.find_library_file(lib_dirs + added_lib_dirs, | 
					
						
							|  |  |  |                                            'BLT'): | 
					
						
							|  |  |  |             defs.append( ('WITH_BLT', 1) ) | 
					
						
							|  |  |  |             libs.append('BLT') | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Add the Tcl/Tk libraries | 
					
						
							| 
									
										
										
										
											2002-12-31 20:30:46 +00:00
										 |  |  |         libs.append(lib_prefix + 'tk'+ version) | 
					
						
							|  |  |  |         libs.append(lib_prefix + 'tcl'+ version) | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-24 03:31:07 +00:00
										 |  |  |         if platform in ['aix3', 'aix4']: | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |             libs.append('ld') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-24 06:54:01 +00:00
										 |  |  |         # Finally, link with the X11 libraries (not appropriate on cygwin) | 
					
						
							|  |  |  |         if platform != "cygwin": | 
					
						
							|  |  |  |             libs.append('X11') | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         ext = Extension('_tkinter', ['_tkinter.c', 'tkappinit.c'], | 
					
						
							|  |  |  |                         define_macros=[('WITH_APPINIT', 1)] + defs, | 
					
						
							|  |  |  |                         include_dirs = include_dirs, | 
					
						
							|  |  |  |                         libraries = libs, | 
					
						
							|  |  |  |                         library_dirs = added_lib_dirs, | 
					
						
							|  |  |  |                         ) | 
					
						
							|  |  |  |         self.extensions.append(ext) | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-18 18:44:20 +00:00
										 |  |  |         # XXX handle these, but how to detect? | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # *** Uncomment and edit for PIL (TkImaging) extension only: | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  |         #       -DWITH_PIL -I../Extensions/Imaging/libImaging  tkImaging.c \ | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # *** Uncomment and edit for TOGL extension only: | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  |         #       -DWITH_TOGL togl.c \ | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         # *** Uncomment these for TOGL extension only: | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  |         #       -lGL -lGLU -lXext -lXmu \ | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-21 20:29:27 +00:00
										 |  |  | class PyBuildInstall(install): | 
					
						
							|  |  |  |     # Suppress the warning about installation into the lib_dynload | 
					
						
							|  |  |  |     # directory, which is not in sys.path when running Python during | 
					
						
							|  |  |  |     # installation: | 
					
						
							|  |  |  |     def initialize_options (self): | 
					
						
							|  |  |  |         install.initialize_options(self) | 
					
						
							|  |  |  |         self.warn_dir=0 | 
					
						
							| 
									
										
										
										
											2002-01-23 15:04:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-17 16:47:17 +00:00
										 |  |  | class PyBuildInstallLib(install_lib): | 
					
						
							|  |  |  |     # Do exactly what install_lib does but make sure correct access modes get | 
					
						
							|  |  |  |     # set on installed directories and files. All installed files with get | 
					
						
							|  |  |  |     # mode 644 unless they are a shared library in which case they will get | 
					
						
							|  |  |  |     # mode 755. All installed directories will get mode 755. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     so_ext = sysconfig.get_config_var("SO") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def install(self): | 
					
						
							|  |  |  |         outfiles = install_lib.install(self) | 
					
						
							|  |  |  |         self.set_file_modes(outfiles, 0644, 0755) | 
					
						
							|  |  |  |         self.set_dir_modes(self.install_dir, 0755) | 
					
						
							|  |  |  |         return outfiles | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def set_file_modes(self, files, defaultMode, sharedLibMode): | 
					
						
							|  |  |  |         if not self.is_chmod_supported(): return | 
					
						
							|  |  |  |         if not files: return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for filename in files: | 
					
						
							|  |  |  |             if os.path.islink(filename): continue | 
					
						
							|  |  |  |             mode = defaultMode | 
					
						
							|  |  |  |             if filename.endswith(self.so_ext): mode = sharedLibMode | 
					
						
							|  |  |  |             log.info("changing mode of %s to %o", filename, mode) | 
					
						
							|  |  |  |             if not self.dry_run: os.chmod(filename, mode) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def set_dir_modes(self, dirname, mode): | 
					
						
							|  |  |  |         if not self.is_chmod_supported(): return | 
					
						
							|  |  |  |         os.path.walk(dirname, self.set_dir_modes_visitor, mode) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def set_dir_modes_visitor(self, mode, dirname, names): | 
					
						
							|  |  |  |         if os.path.islink(dirname): return | 
					
						
							|  |  |  |         log.info("changing mode of %s to %o", dirname, mode) | 
					
						
							|  |  |  |         if not self.dry_run: os.chmod(dirname, mode) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def is_chmod_supported(self): | 
					
						
							|  |  |  |         return hasattr(os, 'chmod') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | def main(): | 
					
						
							| 
									
										
										
										
											2001-05-21 20:48:09 +00:00
										 |  |  |     # turn off warnings when deprecated modules are imported | 
					
						
							|  |  |  |     import warnings | 
					
						
							|  |  |  |     warnings.filterwarnings("ignore",category=DeprecationWarning) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |     setup(name = 'Python standard library', | 
					
						
							| 
									
										
										
										
											2001-01-17 21:58:00 +00:00
										 |  |  |           version = '%d.%d' % sys.version_info[:2], | 
					
						
							| 
									
										
										
										
											2002-12-17 16:47:17 +00:00
										 |  |  |           cmdclass = {'build_ext':PyBuildExt, 'install':PyBuildInstall, | 
					
						
							|  |  |  |                       'install_lib':PyBuildInstallLib}, | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |           # The struct module is defined here, because build_ext won't be | 
					
						
							|  |  |  |           # called unless there's at least one extension module defined. | 
					
						
							| 
									
										
										
										
											2001-02-28 20:56:49 +00:00
										 |  |  |           ext_modules=[Extension('struct', ['structmodule.c'])], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           # Scripts to install | 
					
						
							|  |  |  |           scripts = ['Tools/scripts/pydoc'] | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  |         ) | 
					
						
							| 
									
										
										
										
											2001-01-24 08:00:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:23:23 +00:00
										 |  |  | # --install-platlib | 
					
						
							|  |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     main() |