Andrew M. Kuchling | 66012fe | 2001-01-26 21:56:58 +0000 | [diff] [blame] | 1 | # Autodetecting setup.py script for building the Python extensions |
| 2 | # |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 3 | |
Andrew M. Kuchling | 66012fe | 2001-01-26 21:56:58 +0000 | [diff] [blame] | 4 | __version__ = "$Revision$" |
| 5 | |
Martin v. Löwis | 05d4d56 | 2002-12-06 10:25:02 +0000 | [diff] [blame] | 6 | import sys, os, getopt, imp, re |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 7 | from distutils import sysconfig |
Andrew M. Kuchling | 8d7f086 | 2001-02-23 16:32:32 +0000 | [diff] [blame] | 8 | from distutils import text_file |
Marc-André Lemburg | 7c6fcda | 2001-01-26 18:03:24 +0000 | [diff] [blame] | 9 | from distutils.errors import * |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 10 | from distutils.core import Extension, setup |
| 11 | from distutils.command.build_ext import build_ext |
Andrew M. Kuchling | f52d27e | 2001-05-21 20:29:27 +0000 | [diff] [blame] | 12 | from distutils.command.install import install |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 13 | |
| 14 | # This global variable is used to hold the list of modules to be disabled. |
| 15 | disabled_module_list = [] |
| 16 | |
Michael W. Hudson | 39230b3 | 2002-01-16 15:26:48 +0000 | [diff] [blame] | 17 | def add_dir_to_list(dirlist, dir): |
| 18 | """Add the directory 'dir' to the list 'dirlist' (at the front) if |
| 19 | 1) 'dir' is not already in 'dirlist' |
| 20 | 2) 'dir' actually exists, and is a directory.""" |
Jack Jansen | 4439b7c | 2002-06-26 15:44:30 +0000 | [diff] [blame] | 21 | if dir is not None and os.path.isdir(dir) and dir not in dirlist: |
Michael W. Hudson | 39230b3 | 2002-01-16 15:26:48 +0000 | [diff] [blame] | 22 | dirlist.insert(0, dir) |
| 23 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 24 | def find_file(filename, std_dirs, paths): |
| 25 | """Searches for the directory where a given file is located, |
| 26 | and returns a possibly-empty list of additional directories, or None |
| 27 | if the file couldn't be found at all. |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 28 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 29 | 'filename' is the name of a file, such as readline.h or libcrypto.a. |
| 30 | 'std_dirs' is the list of standard system directories; if the |
| 31 | file is found in one of them, no additional directives are needed. |
| 32 | 'paths' is a list of additional locations to check; if the file is |
| 33 | found in one of them, the resulting list will contain the directory. |
| 34 | """ |
| 35 | |
| 36 | # Check the standard locations |
| 37 | for dir in std_dirs: |
| 38 | f = os.path.join(dir, filename) |
| 39 | if os.path.exists(f): return [] |
| 40 | |
| 41 | # Check the additional directories |
| 42 | for dir in paths: |
| 43 | f = os.path.join(dir, filename) |
| 44 | if os.path.exists(f): |
| 45 | return [dir] |
| 46 | |
| 47 | # Not found anywhere |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 48 | return None |
| 49 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 50 | def find_library_file(compiler, libname, std_dirs, paths): |
Andrew M. Kuchling | a246d9f | 2002-11-27 13:43:46 +0000 | [diff] [blame] | 51 | result = compiler.find_library_file(std_dirs + paths, libname) |
| 52 | if result is None: |
| 53 | return None |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 54 | |
Andrew M. Kuchling | a246d9f | 2002-11-27 13:43:46 +0000 | [diff] [blame] | 55 | # Check whether the found file is in one of the standard directories |
| 56 | dirname = os.path.dirname(result) |
| 57 | for p in std_dirs: |
| 58 | # Ensure path doesn't end with path separator |
| 59 | if p.endswith(os.sep): |
| 60 | p = p.strip(os.sep) |
| 61 | if p == dirname: |
| 62 | return [ ] |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 63 | |
Andrew M. Kuchling | a246d9f | 2002-11-27 13:43:46 +0000 | [diff] [blame] | 64 | # Otherwise, it must have been in one of the additional directories, |
| 65 | # so we have to figure out which one. |
| 66 | for p in paths: |
| 67 | # Ensure path doesn't end with path separator |
| 68 | if p.endswith(os.sep): |
| 69 | p = p.strip(os.sep) |
| 70 | if p == dirname: |
| 71 | return [p] |
| 72 | else: |
| 73 | assert False, "Internal error: Path not found in std_dirs or paths" |
| 74 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 75 | def module_enabled(extlist, modname): |
| 76 | """Returns whether the module 'modname' is present in the list |
| 77 | of extensions 'extlist'.""" |
| 78 | extlist = [ext for ext in extlist if ext.name == modname] |
| 79 | return len(extlist) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 80 | |
Jack Jansen | 144ebcc | 2001-08-05 22:31:19 +0000 | [diff] [blame] | 81 | def find_module_file(module, dirlist): |
| 82 | """Find a module in a set of possible folders. If it is not found |
| 83 | return the unadorned filename""" |
| 84 | list = find_file(module, [], dirlist) |
| 85 | if not list: |
| 86 | return module |
| 87 | if len(list) > 1: |
| 88 | self.announce("WARNING: multiple copies of %s found"%module) |
| 89 | return os.path.join(list[0], module) |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 90 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 91 | class PyBuildExt(build_ext): |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 92 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 93 | def build_extensions(self): |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 94 | |
| 95 | # Detect which modules should be compiled |
| 96 | self.detect_modules() |
| 97 | |
| 98 | # Remove modules that are present on the disabled list |
| 99 | self.extensions = [ext for ext in self.extensions |
| 100 | if ext.name not in disabled_module_list] |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 101 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 102 | # Fix up the autodetected modules, prefixing all the source files |
| 103 | # with Modules/ and adding Python's include directory to the path. |
| 104 | (srcdir,) = sysconfig.get_config_vars('srcdir') |
Guido van Rossum | e0fea6c | 2002-10-14 20:48:09 +0000 | [diff] [blame] | 105 | if not srcdir: |
| 106 | # Maybe running on Windows but not using CYGWIN? |
| 107 | raise ValueError("No source directory; cannot proceed.") |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 108 | |
Neil Schemenauer | 726b78e | 2001-01-24 17:18:21 +0000 | [diff] [blame] | 109 | # Figure out the location of the source code for extension modules |
| 110 | moddir = os.path.join(os.getcwd(), srcdir, 'Modules') |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 111 | moddir = os.path.normpath(moddir) |
| 112 | srcdir, tail = os.path.split(moddir) |
| 113 | srcdir = os.path.normpath(srcdir) |
| 114 | moddir = os.path.normpath(moddir) |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 115 | |
Jack Jansen | 144ebcc | 2001-08-05 22:31:19 +0000 | [diff] [blame] | 116 | moddirlist = [moddir] |
| 117 | incdirlist = ['./Include'] |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 118 | |
Jack Jansen | 144ebcc | 2001-08-05 22:31:19 +0000 | [diff] [blame] | 119 | # Platform-dependent module source and include directories |
| 120 | platform = self.get_platform() |
Jack Jansen | 4439b7c | 2002-06-26 15:44:30 +0000 | [diff] [blame] | 121 | if platform in ('darwin', 'mac'): |
Jack Jansen | 144ebcc | 2001-08-05 22:31:19 +0000 | [diff] [blame] | 122 | # Mac OS X also includes some mac-specific modules |
| 123 | macmoddir = os.path.join(os.getcwd(), srcdir, 'Mac/Modules') |
| 124 | moddirlist.append(macmoddir) |
| 125 | incdirlist.append('./Mac/Include') |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 126 | |
Jeremy Hylton | 340043e | 2002-06-13 17:38:11 +0000 | [diff] [blame] | 127 | alldirlist = moddirlist + incdirlist |
| 128 | |
Andrew M. Kuchling | 3da989c | 2001-02-28 22:49:26 +0000 | [diff] [blame] | 129 | # Fix up the paths for scripts, too |
| 130 | self.distribution.scripts = [os.path.join(srcdir, filename) |
| 131 | for filename in self.distribution.scripts] |
| 132 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 133 | for ext in self.extensions[:]: |
Jack Jansen | 144ebcc | 2001-08-05 22:31:19 +0000 | [diff] [blame] | 134 | ext.sources = [ find_module_file(filename, moddirlist) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 135 | for filename in ext.sources ] |
Jeremy Hylton | 340043e | 2002-06-13 17:38:11 +0000 | [diff] [blame] | 136 | if ext.depends is not None: |
| 137 | ext.depends = [find_module_file(filename, alldirlist) |
| 138 | for filename in ext.depends] |
Jack Jansen | 144ebcc | 2001-08-05 22:31:19 +0000 | [diff] [blame] | 139 | ext.include_dirs.append( '.' ) # to get config.h |
| 140 | for incdir in incdirlist: |
| 141 | ext.include_dirs.append( os.path.join(srcdir, incdir) ) |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 142 | |
Andrew M. Kuchling | e7c8732 | 2001-01-19 16:58:21 +0000 | [diff] [blame] | 143 | # If a module has already been built statically, |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 144 | # don't build it here |
Andrew M. Kuchling | e7c8732 | 2001-01-19 16:58:21 +0000 | [diff] [blame] | 145 | if ext.name in sys.builtin_module_names: |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 146 | self.extensions.remove(ext) |
Andrew M. Kuchling | 5bbc7b9 | 2001-01-18 20:39:34 +0000 | [diff] [blame] | 147 | |
Jack Jansen | 4439b7c | 2002-06-26 15:44:30 +0000 | [diff] [blame] | 148 | if platform != 'mac': |
| 149 | # Parse Modules/Setup to figure out which modules are turned |
| 150 | # on in the file. |
| 151 | input = text_file.TextFile('Modules/Setup', join_lines=1) |
| 152 | remove_modules = [] |
| 153 | while 1: |
| 154 | line = input.readline() |
| 155 | if not line: break |
| 156 | line = line.split() |
| 157 | remove_modules.append( line[0] ) |
| 158 | input.close() |
| 159 | |
| 160 | for ext in self.extensions[:]: |
| 161 | if ext.name in remove_modules: |
| 162 | self.extensions.remove(ext) |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 163 | |
Andrew M. Kuchling | 5bbc7b9 | 2001-01-18 20:39:34 +0000 | [diff] [blame] | 164 | # When you run "make CC=altcc" or something similar, you really want |
| 165 | # those environment variables passed into the setup.py phase. Here's |
| 166 | # a small set of useful ones. |
| 167 | compiler = os.environ.get('CC') |
| 168 | linker_so = os.environ.get('LDSHARED') |
| 169 | args = {} |
| 170 | # unfortunately, distutils doesn't let us provide separate C and C++ |
| 171 | # compilers |
| 172 | if compiler is not None: |
Martin v. Löwis | 3e4b0e8 | 2001-08-10 08:56:17 +0000 | [diff] [blame] | 173 | (ccshared,opt) = sysconfig.get_config_vars('CCSHARED','OPT') |
| 174 | args['compiler_so'] = compiler + ' ' + opt + ' ' + ccshared |
Andrew M. Kuchling | 5bbc7b9 | 2001-01-18 20:39:34 +0000 | [diff] [blame] | 175 | if linker_so is not None: |
Martin v. Löwis | 2f20dab | 2001-10-08 13:18:37 +0000 | [diff] [blame] | 176 | args['linker_so'] = linker_so |
Andrew M. Kuchling | 5bbc7b9 | 2001-01-18 20:39:34 +0000 | [diff] [blame] | 177 | self.compiler.set_executables(**args) |
| 178 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 179 | build_ext.build_extensions(self) |
| 180 | |
Marc-André Lemburg | 7c6fcda | 2001-01-26 18:03:24 +0000 | [diff] [blame] | 181 | def build_extension(self, ext): |
| 182 | |
| 183 | try: |
| 184 | build_ext.build_extension(self, ext) |
| 185 | except (CCompilerError, DistutilsError), why: |
| 186 | self.announce('WARNING: building of extension "%s" failed: %s' % |
| 187 | (ext.name, sys.exc_info()[1])) |
Andrew M. Kuchling | 6268669 | 2001-05-21 20:48:09 +0000 | [diff] [blame] | 188 | return |
Jack Jansen | f49c6f9 | 2001-11-01 14:44:15 +0000 | [diff] [blame] | 189 | # Workaround for Mac OS X: The Carbon-based modules cannot be |
| 190 | # reliably imported into a command-line Python |
| 191 | if 'Carbon' in ext.extra_link_args: |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 192 | self.announce( |
| 193 | 'WARNING: skipping import check for Carbon-based "%s"' % |
| 194 | ext.name) |
| 195 | return |
Jason Tishler | 24cf776 | 2002-05-22 16:46:15 +0000 | [diff] [blame] | 196 | # Workaround for Cygwin: Cygwin currently has fork issues when many |
| 197 | # modules have been imported |
| 198 | if self.get_platform() == 'cygwin': |
| 199 | self.announce('WARNING: skipping import check for Cygwin-based "%s"' |
| 200 | % ext.name) |
| 201 | return |
Michael W. Hudson | af14289 | 2002-01-23 15:07:46 +0000 | [diff] [blame] | 202 | ext_filename = os.path.join( |
| 203 | self.build_lib, |
| 204 | self.get_ext_filename(self.get_ext_fullname(ext.name))) |
Andrew M. Kuchling | 6268669 | 2001-05-21 20:48:09 +0000 | [diff] [blame] | 205 | try: |
Michael W. Hudson | af14289 | 2002-01-23 15:07:46 +0000 | [diff] [blame] | 206 | imp.load_dynamic(ext.name, ext_filename) |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 207 | except ImportError, why: |
Marc-André Lemburg | 7c6fcda | 2001-01-26 18:03:24 +0000 | [diff] [blame] | 208 | |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 209 | if 1: |
Michael W. Hudson | 7113d96 | 2002-03-01 14:16:31 +0000 | [diff] [blame] | 210 | self.announce('*** WARNING: renaming "%s" since importing it' |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 211 | ' failed: %s' % (ext.name, why)) |
| 212 | assert not self.inplace |
Michael W. Hudson | 7113d96 | 2002-03-01 14:16:31 +0000 | [diff] [blame] | 213 | basename, tail = os.path.splitext(ext_filename) |
| 214 | newname = basename + "_failed" + tail |
| 215 | if os.path.exists(newname): os.remove(newname) |
| 216 | os.rename(ext_filename, newname) |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 217 | |
| 218 | # XXX -- This relies on a Vile HACK in |
| 219 | # distutils.command.build_ext.build_extension(). The |
| 220 | # _built_objects attribute is stored there strictly for |
| 221 | # use here. |
Neal Norwitz | 03ffbcd | 2002-03-25 14:20:09 +0000 | [diff] [blame] | 222 | # If there is a failure, _built_objects may not be there, |
| 223 | # so catch the AttributeError and move on. |
| 224 | try: |
| 225 | for filename in self._built_objects: |
| 226 | os.remove(filename) |
| 227 | except AttributeError: |
| 228 | self.announce('unable to remove files (ignored)') |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 229 | else: |
| 230 | self.announce('*** WARNING: importing extension "%s" ' |
| 231 | 'failed: %s' % (ext.name, why)) |
Fred Drake | 9028d0a | 2001-12-06 22:59:54 +0000 | [diff] [blame] | 232 | |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 233 | def get_platform (self): |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 234 | # Get value of sys.platform |
| 235 | platform = sys.platform |
| 236 | if platform[:6] =='cygwin': |
| 237 | platform = 'cygwin' |
Andrew M. Kuchling | 3c04494 | 2001-02-06 23:37:23 +0000 | [diff] [blame] | 238 | elif platform[:4] =='beos': |
| 239 | platform = 'beos' |
Jack Jansen | 244e761 | 2001-12-05 15:54:29 +0000 | [diff] [blame] | 240 | elif platform[:6] == 'darwin': |
| 241 | platform = 'darwin' |
Martin v. Löwis | f90ae20 | 2002-06-11 06:22:31 +0000 | [diff] [blame] | 242 | elif platform[:6] == 'atheos': |
| 243 | platform = 'atheos' |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 244 | |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 245 | return platform |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 246 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 247 | def detect_modules(self): |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 248 | # Ensure that /usr/local is always used |
Michael W. Hudson | 39230b3 | 2002-01-16 15:26:48 +0000 | [diff] [blame] | 249 | add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib') |
| 250 | add_dir_to_list(self.compiler.include_dirs, '/usr/local/include') |
| 251 | |
Michael W. Hudson | 90b8e4d | 2002-08-02 13:55:50 +0000 | [diff] [blame] | 252 | if os.path.normpath(sys.prefix) != '/usr': |
| 253 | add_dir_to_list(self.compiler.library_dirs, |
| 254 | sysconfig.get_config_var("LIBDIR")) |
| 255 | add_dir_to_list(self.compiler.include_dirs, |
| 256 | sysconfig.get_config_var("INCLUDEDIR")) |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 257 | |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 258 | try: |
| 259 | have_unicode = unicode |
| 260 | except NameError: |
| 261 | have_unicode = 0 |
| 262 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 263 | # lib_dirs and inc_dirs are used to search for files; |
| 264 | # if a file is found in one of those directories, it can |
| 265 | # be assumed that no additional -I,-L directives are needed. |
| 266 | lib_dirs = self.compiler.library_dirs + ['/lib', '/usr/lib'] |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 267 | inc_dirs = self.compiler.include_dirs + ['/usr/include'] |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 268 | exts = [] |
| 269 | |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 270 | platform = self.get_platform() |
Martin v. Löwis | 8301256 | 2002-02-14 01:25:37 +0000 | [diff] [blame] | 271 | (srcdir,) = sysconfig.get_config_vars('srcdir') |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 272 | |
Martin v. Löwis | f90ae20 | 2002-06-11 06:22:31 +0000 | [diff] [blame] | 273 | # Check for AtheOS which has libraries in non-standard locations |
| 274 | if platform == 'atheos': |
| 275 | lib_dirs += ['/system/libs', '/atheos/autolnk/lib'] |
| 276 | lib_dirs += os.getenv('LIBRARY_PATH', '').split(os.pathsep) |
| 277 | inc_dirs += ['/system/include', '/atheos/autolnk/include'] |
| 278 | inc_dirs += os.getenv('C_INCLUDE_PATH', '').split(os.pathsep) |
| 279 | |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 280 | # Check for MacOS X, which doesn't need libm.a at all |
| 281 | math_libs = ['m'] |
Jack Jansen | 4439b7c | 2002-06-26 15:44:30 +0000 | [diff] [blame] | 282 | if platform in ['darwin', 'beos', 'mac']: |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 283 | math_libs = [] |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 284 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 285 | # XXX Omitted modules: gl, pure, dl, SGI-specific modules |
| 286 | |
| 287 | # |
| 288 | # The following modules are all pretty straightforward, and compile |
| 289 | # on pretty much any POSIXish platform. |
| 290 | # |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 291 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 292 | # Some modules that are normally always on: |
| 293 | exts.append( Extension('regex', ['regexmodule.c', 'regexpr.c']) ) |
| 294 | exts.append( Extension('pcre', ['pcremodule.c', 'pypcre.c']) ) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 295 | |
Fred Drake | 3a40f32 | 2001-10-12 21:00:48 +0000 | [diff] [blame] | 296 | exts.append( Extension('_hotshot', ['_hotshot.c']) ) |
Fred Drake | 2de7471 | 2001-02-01 05:26:54 +0000 | [diff] [blame] | 297 | exts.append( Extension('_weakref', ['_weakref.c']) ) |
Andrew M. Kuchling | d5c4306 | 2001-01-17 15:59:25 +0000 | [diff] [blame] | 298 | exts.append( Extension('xreadlines', ['xreadlinesmodule.c']) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 299 | |
| 300 | # array objects |
| 301 | exts.append( Extension('array', ['arraymodule.c']) ) |
| 302 | # complex math library functions |
Andrew M. Kuchling | 5ddb25f | 2001-01-23 22:21:11 +0000 | [diff] [blame] | 303 | exts.append( Extension('cmath', ['cmathmodule.c'], |
| 304 | libraries=math_libs) ) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 305 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 306 | # math library functions, e.g. sin() |
Andrew M. Kuchling | 5ddb25f | 2001-01-23 22:21:11 +0000 | [diff] [blame] | 307 | exts.append( Extension('math', ['mathmodule.c'], |
| 308 | libraries=math_libs) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 309 | # fast string operations implemented in C |
| 310 | exts.append( Extension('strop', ['stropmodule.c']) ) |
| 311 | # time operations and variables |
Andrew M. Kuchling | 5ddb25f | 2001-01-23 22:21:11 +0000 | [diff] [blame] | 312 | exts.append( Extension('time', ['timemodule.c'], |
| 313 | libraries=math_libs) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 314 | # operator.add() and similar goodies |
| 315 | exts.append( Extension('operator', ['operator.c']) ) |
Marc-André Lemburg | 261b8e2 | 2001-02-02 12:12:44 +0000 | [diff] [blame] | 316 | # Python C API test module |
Tim Peters | d66595f | 2001-02-04 03:09:53 +0000 | [diff] [blame] | 317 | exts.append( Extension('_testcapi', ['_testcapimodule.c']) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 318 | # static Unicode character database |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 319 | if have_unicode: |
| 320 | exts.append( Extension('unicodedata', ['unicodedata.c']) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 321 | # access to ISO C locale support |
Jason Tishler | d28216b | 2002-08-14 11:13:52 +0000 | [diff] [blame] | 322 | if platform in ['cygwin']: |
| 323 | locale_libs = ['intl'] |
| 324 | else: |
| 325 | locale_libs = [] |
| 326 | exts.append( Extension('_locale', ['_localemodule.c'], |
| 327 | libraries=locale_libs ) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 328 | |
| 329 | # Modules with some UNIX dependencies -- on by default: |
| 330 | # (If you have a really backward UNIX, select and socket may not be |
| 331 | # supported...) |
| 332 | |
| 333 | # fcntl(2) and ioctl(2) |
| 334 | exts.append( Extension('fcntl', ['fcntlmodule.c']) ) |
Jack Jansen | 73aa1ff | 2002-06-27 22:06:49 +0000 | [diff] [blame] | 335 | if platform not in ['mac']: |
| 336 | # pwd(3) |
| 337 | exts.append( Extension('pwd', ['pwdmodule.c']) ) |
| 338 | # grp(3) |
| 339 | exts.append( Extension('grp', ['grpmodule.c']) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 340 | # select(2); not on ancient System V |
| 341 | exts.append( Extension('select', ['selectmodule.c']) ) |
| 342 | |
| 343 | # The md5 module implements the RSA Data Security, Inc. MD5 |
Fred Drake | 38419c0 | 2001-12-06 22:24:47 +0000 | [diff] [blame] | 344 | # Message-Digest Algorithm, described in RFC 1321. The |
| 345 | # necessary files md5c.c and md5.h are included here. |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 346 | exts.append( Extension('md5', ['md5module.c', 'md5c.c']) ) |
| 347 | |
| 348 | # The sha module implements the SHA checksum algorithm. |
| 349 | # (NIST's Secure Hash Algorithm.) |
| 350 | exts.append( Extension('sha', ['shamodule.c']) ) |
| 351 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 352 | # Helper module for various ascii-encoders |
| 353 | exts.append( Extension('binascii', ['binascii.c']) ) |
| 354 | |
| 355 | # Fred Drake's interface to the Python parser |
| 356 | exts.append( Extension('parser', ['parsermodule.c']) ) |
| 357 | |
Guido van Rossum | 2e1c09c | 2002-04-04 17:52:50 +0000 | [diff] [blame] | 358 | # cStringIO and cPickle |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 359 | exts.append( Extension('cStringIO', ['cStringIO.c']) ) |
| 360 | exts.append( Extension('cPickle', ['cPickle.c']) ) |
| 361 | |
| 362 | # Memory-mapped files (also works on Win32). |
Jack Jansen | 73aa1ff | 2002-06-27 22:06:49 +0000 | [diff] [blame] | 363 | if platform not in ['atheos', 'mac']: |
Martin v. Löwis | f90ae20 | 2002-06-11 06:22:31 +0000 | [diff] [blame] | 364 | exts.append( Extension('mmap', ['mmapmodule.c']) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 365 | |
| 366 | # Lance Ellinghaus's modules: |
| 367 | # enigma-inspired encryption |
| 368 | exts.append( Extension('rotor', ['rotormodule.c']) ) |
Jack Jansen | 73aa1ff | 2002-06-27 22:06:49 +0000 | [diff] [blame] | 369 | if platform not in ['mac']: |
| 370 | # syslog daemon interface |
| 371 | exts.append( Extension('syslog', ['syslogmodule.c']) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 372 | |
| 373 | # George Neville-Neil's timing module: |
| 374 | exts.append( Extension('timing', ['timingmodule.c']) ) |
| 375 | |
| 376 | # |
Andrew M. Kuchling | 5bbc7b9 | 2001-01-18 20:39:34 +0000 | [diff] [blame] | 377 | # Here ends the simple stuff. From here on, modules need certain |
| 378 | # libraries, are platform-specific, or present other surprises. |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 379 | # |
| 380 | |
| 381 | # Multimedia modules |
| 382 | # These don't work for 64-bit platforms!!! |
| 383 | # These represent audio samples or images as strings: |
| 384 | |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 385 | # Disabled on 64-bit platforms |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 386 | if sys.maxint != 9223372036854775807L: |
| 387 | # Operations on audio samples |
| 388 | exts.append( Extension('audioop', ['audioop.c']) ) |
| 389 | # Operations on images |
| 390 | exts.append( Extension('imageop', ['imageop.c']) ) |
| 391 | # Read SGI RGB image files (but coded portably) |
| 392 | exts.append( Extension('rgbimg', ['rgbimgmodule.c']) ) |
| 393 | |
| 394 | # readline |
Marc-André Lemburg | 2efc323 | 2001-01-26 18:23:02 +0000 | [diff] [blame] | 395 | if self.compiler.find_library_file(lib_dirs, 'readline'): |
| 396 | readline_libs = ['readline'] |
Andrew M. Kuchling | 5aa3c4a | 2001-08-16 20:30:18 +0000 | [diff] [blame] | 397 | if self.compiler.find_library_file(lib_dirs, |
| 398 | 'ncurses'): |
| 399 | readline_libs.append('ncurses') |
| 400 | elif self.compiler.find_library_file(lib_dirs + |
Marc-André Lemburg | 2efc323 | 2001-01-26 18:23:02 +0000 | [diff] [blame] | 401 | ['/usr/lib/termcap'], |
| 402 | 'termcap'): |
| 403 | readline_libs.append('termcap') |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 404 | exts.append( Extension('readline', ['readline.c'], |
Marc-André Lemburg | 7c6fcda | 2001-01-26 18:03:24 +0000 | [diff] [blame] | 405 | library_dirs=['/usr/lib/termcap'], |
Marc-André Lemburg | 2efc323 | 2001-01-26 18:23:02 +0000 | [diff] [blame] | 406 | libraries=readline_libs) ) |
Jack Jansen | 73aa1ff | 2002-06-27 22:06:49 +0000 | [diff] [blame] | 407 | if platform not in ['mac']: |
| 408 | # crypt module. |
| 409 | |
| 410 | if self.compiler.find_library_file(lib_dirs, 'crypt'): |
| 411 | libs = ['crypt'] |
| 412 | else: |
| 413 | libs = [] |
| 414 | exts.append( Extension('crypt', ['cryptmodule.c'], libraries=libs) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 415 | |
| 416 | # socket(2) |
Guido van Rossum | 47d3a7a | 2002-06-13 14:41:32 +0000 | [diff] [blame] | 417 | exts.append( Extension('_socket', ['socketmodule.c'], |
Jeremy Hylton | 340043e | 2002-06-13 17:38:11 +0000 | [diff] [blame] | 418 | depends = ['socketmodule.h']) ) |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 419 | # Detect SSL support for the socket module (via _ssl) |
Michael W. Hudson | c4c7180 | 2002-08-03 16:39:22 +0000 | [diff] [blame] | 420 | ssl_incs = find_file('openssl/ssl.h', inc_dirs, |
Andrew M. Kuchling | e7c8732 | 2001-01-19 16:58:21 +0000 | [diff] [blame] | 421 | ['/usr/local/ssl/include', |
| 422 | '/usr/contrib/ssl/include/' |
| 423 | ] |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 424 | ) |
| 425 | ssl_libs = find_library_file(self.compiler, 'ssl',lib_dirs, |
Andrew M. Kuchling | e7c8732 | 2001-01-19 16:58:21 +0000 | [diff] [blame] | 426 | ['/usr/local/ssl/lib', |
| 427 | '/usr/contrib/ssl/lib/' |
| 428 | ] ) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 429 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 430 | if (ssl_incs is not None and |
| 431 | ssl_libs is not None): |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 432 | exts.append( Extension('_ssl', ['_ssl.c'], |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 433 | include_dirs = ssl_incs, |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 434 | library_dirs = ssl_libs, |
Guido van Rossum | 47d3a7a | 2002-06-13 14:41:32 +0000 | [diff] [blame] | 435 | libraries = ['ssl', 'crypto'], |
Jeremy Hylton | 340043e | 2002-06-13 17:38:11 +0000 | [diff] [blame] | 436 | depends = ['socketmodule.h']), ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 437 | |
| 438 | # Modules that provide persistent dictionary-like semantics. You will |
| 439 | # probably want to arrange for at least one of them to be available on |
| 440 | # your machine, though none are defined by default because of library |
| 441 | # dependencies. The Python module anydbm.py provides an |
| 442 | # implementation independent wrapper for these; dumbdbm.py provides |
| 443 | # similar functionality (but slower of course) implemented in Python. |
| 444 | |
Martin v. Löwis | 05d4d56 | 2002-12-06 10:25:02 +0000 | [diff] [blame] | 445 | # Sleepycat Berkeley DB interface. |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 446 | # |
Martin v. Löwis | 05d4d56 | 2002-12-06 10:25:02 +0000 | [diff] [blame] | 447 | # This requires the Sleepycat DB code, see |
| 448 | # http://www.sleepycat.com/ The earliest supported version of |
| 449 | # that library is 3.0, the latest supported version is 4.0 |
| 450 | # (4.1 is specifically not supported, as that changes the |
| 451 | # semantics of transactional databases). A list of available |
| 452 | # releases can be found at |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 453 | # |
Martin v. Löwis | 05d4d56 | 2002-12-06 10:25:02 +0000 | [diff] [blame] | 454 | # http://www.sleepycat.com/update/index.html |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 455 | |
| 456 | # when sorted in reverse order, keys for this dict must appear in the |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 457 | # order you wish to search - e.g., search for db4 before db3 |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 458 | db_try_this = { |
Martin v. Löwis | 21645fc | 2002-11-19 08:30:08 +0000 | [diff] [blame] | 459 | 'db4': {'libs': ('db-4.0',), |
| 460 | 'libdirs': ('/usr/local/BerkeleyDB.4.0/lib', |
Skip Montanaro | ccfdde8 | 2002-08-15 01:34:38 +0000 | [diff] [blame] | 461 | '/usr/local/lib', |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 462 | '/opt/sfw', |
| 463 | '/sw/lib', |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 464 | ), |
Martin v. Löwis | 21645fc | 2002-11-19 08:30:08 +0000 | [diff] [blame] | 465 | 'incdirs': ('/usr/local/BerkeleyDB.4.0/include', |
Martin v. Löwis | cc40ced | 2002-11-09 19:53:04 +0000 | [diff] [blame] | 466 | '/usr/local/include/db4', |
| 467 | '/opt/sfw/include/db4', |
| 468 | '/sw/include/db4', |
| 469 | '/usr/include/db4', |
Martin v. Löwis | 05d4d56 | 2002-12-06 10:25:02 +0000 | [diff] [blame] | 470 | )}, |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 471 | 'db3': {'libs': ('db-3.3', 'db-3.2', 'db-3.1', 'db-3.0'), |
| 472 | 'libdirs': ('/usr/local/BerkeleyDB.3.3/lib', |
| 473 | '/usr/local/BerkeleyDB.3.2/lib', |
| 474 | '/usr/local/BerkeleyDB.3.1/lib', |
| 475 | '/usr/local/BerkeleyDB.3.0/lib', |
Skip Montanaro | ccfdde8 | 2002-08-15 01:34:38 +0000 | [diff] [blame] | 476 | '/usr/local/lib', |
Martin v. Löwis | a37d61f | 2002-12-07 14:41:17 +0000 | [diff] [blame] | 477 | '/opt/sfw/lib', |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 478 | '/sw/lib', |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 479 | ), |
| 480 | 'incdirs': ('/usr/local/BerkeleyDB.3.3/include', |
| 481 | '/usr/local/BerkeleyDB.3.2/include', |
| 482 | '/usr/local/BerkeleyDB.3.1/include', |
| 483 | '/usr/local/BerkeleyDB.3.0/include', |
Skip Montanaro | ccfdde8 | 2002-08-15 01:34:38 +0000 | [diff] [blame] | 484 | '/usr/local/include/db3', |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 485 | '/opt/sfw/include/db3', |
| 486 | '/sw/include/db3', |
Skip Montanaro | ccfdde8 | 2002-08-15 01:34:38 +0000 | [diff] [blame] | 487 | '/usr/include/db3', |
Martin v. Löwis | 05d4d56 | 2002-12-06 10:25:02 +0000 | [diff] [blame] | 488 | )}, |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 489 | } |
| 490 | |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 491 | db_search_order = db_try_this.keys() |
| 492 | db_search_order.sort() |
| 493 | db_search_order.reverse() |
| 494 | |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 495 | class found(Exception): pass |
| 496 | try: |
Martin v. Löwis | 05d4d56 | 2002-12-06 10:25:02 +0000 | [diff] [blame] | 497 | # See whether there is a Sleepycat header in the standard |
| 498 | # search path. |
| 499 | std_dbinc = None |
| 500 | for d in inc_dirs: |
| 501 | f = os.path.join(d, "db.h") |
| 502 | if os.path.exists(f): |
| 503 | f = open(f).read() |
| 504 | m = re.search(r"#define\WDB_VERSION_MAJOR\W([1-9]+)", f) |
| 505 | if m: |
| 506 | std_dbinc = 'db' + m.group(1) |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 507 | for dbkey in db_search_order: |
| 508 | dbd = db_try_this[dbkey] |
| 509 | for dblib in dbd['libs']: |
Martin v. Löwis | 05d4d56 | 2002-12-06 10:25:02 +0000 | [diff] [blame] | 510 | # Prefer version-specific includes over standard |
| 511 | # include locations. |
| 512 | db_incs = find_file('db.h', [], dbd['incdirs']) |
| 513 | dblib_dir = find_library_file(self.compiler, |
| 514 | dblib, |
| 515 | lib_dirs, |
| 516 | list(dbd['libdirs'])) |
| 517 | if (db_incs or dbkey == std_dbinc) and \ |
| 518 | dblib_dir is not None: |
| 519 | dblibs = [dblib] |
| 520 | raise found |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 521 | except found: |
Jack Jansen | d1b2045 | 2002-07-08 21:39:36 +0000 | [diff] [blame] | 522 | dblibs = [dblib] |
Barry Warsaw | 6fe3d70 | 2002-06-24 20:27:33 +0000 | [diff] [blame] | 523 | # A default source build puts Berkeley DB in something like |
| 524 | # /usr/local/Berkeley.3.3 and the lib dir under that isn't |
| 525 | # normally on ld.so's search path, unless the sysadmin has hacked |
| 526 | # /etc/ld.so.conf. We add the directory to runtime_library_dirs |
| 527 | # so the proper -R/--rpath flags get passed to the linker. This |
| 528 | # is usually correct and most trouble free, but may cause problems |
| 529 | # in some unusual system configurations (e.g. the directory is on |
| 530 | # an NFS server that goes away). |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 531 | exts.append(Extension('_bsddb', ['_bsddb.c'], |
Martin v. Löwis | 05d4d56 | 2002-12-06 10:25:02 +0000 | [diff] [blame] | 532 | library_dirs=dblib_dir, |
| 533 | runtime_library_dirs=dblib_dir, |
Martin v. Löwis | 6aa4a1f | 2002-11-19 08:09:52 +0000 | [diff] [blame] | 534 | include_dirs=db_incs, |
| 535 | libraries=dblibs)) |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 536 | else: |
| 537 | db_incs = None |
| 538 | dblibs = [] |
| 539 | dblib_dir = None |
| 540 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 541 | # The standard Unix dbm module: |
Jack Jansen | d1b2045 | 2002-07-08 21:39:36 +0000 | [diff] [blame] | 542 | if platform not in ['cygwin']: |
Martin v. Löwis | a37d61f | 2002-12-07 14:41:17 +0000 | [diff] [blame] | 543 | if find_file("ndbm.h", inc_dirs, []) is not None: |
| 544 | # Some systems have -lndbm, others don't |
| 545 | if self.compiler.find_library_file(lib_dirs, 'ndbm'): |
| 546 | ndbm_libs = ['ndbm'] |
| 547 | else: |
| 548 | ndbm_libs = [] |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 549 | exts.append( Extension('dbm', ['dbmmodule.c'], |
Jack Jansen | d1b2045 | 2002-07-08 21:39:36 +0000 | [diff] [blame] | 550 | define_macros=[('HAVE_NDBM_H',None)], |
Martin v. Löwis | a37d61f | 2002-12-07 14:41:17 +0000 | [diff] [blame] | 551 | libraries = ndbm_libs ) ) |
Jack Jansen | d1b2045 | 2002-07-08 21:39:36 +0000 | [diff] [blame] | 552 | elif (self.compiler.find_library_file(lib_dirs, 'gdbm') |
| 553 | and find_file("gdbm/ndbm.h", inc_dirs, []) is not None): |
| 554 | exts.append( Extension('dbm', ['dbmmodule.c'], |
| 555 | define_macros=[('HAVE_GDBM_NDBM_H',None)], |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 556 | libraries = ['gdbm'] ) ) |
| 557 | elif db_incs is not None: |
| 558 | exts.append( Extension('dbm', ['dbmmodule.c'], |
Martin v. Löwis | a37d61f | 2002-12-07 14:41:17 +0000 | [diff] [blame] | 559 | library_dirs=dblib_dir, |
| 560 | runtime_library_dirs=dblib_dir, |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 561 | include_dirs=db_incs, |
Jack Jansen | d1b2045 | 2002-07-08 21:39:36 +0000 | [diff] [blame] | 562 | define_macros=[('HAVE_BERKDB_H',None), |
| 563 | ('DB_DBM_HSEARCH',None)], |
Skip Montanaro | 57454e5 | 2002-06-14 20:30:31 +0000 | [diff] [blame] | 564 | libraries=dblibs)) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 565 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 566 | # Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm: |
| 567 | if (self.compiler.find_library_file(lib_dirs, 'gdbm')): |
| 568 | exts.append( Extension('gdbm', ['gdbmmodule.c'], |
| 569 | libraries = ['gdbm'] ) ) |
| 570 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 571 | # The mpz module interfaces to the GNU Multiple Precision library. |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 572 | # You need to ftp the GNU MP library. |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 573 | # This was originally written and tested against GMP 1.2 and 1.3.2. |
| 574 | # It has been modified by Rob Hooft to work with 2.0.2 as well, but I |
Guido van Rossum | 8efd6ce | 2001-12-17 17:24:43 +0000 | [diff] [blame] | 575 | # haven't tested it recently, and it definitely doesn't work with |
| 576 | # GMP 4.0. For more complete modules, refer to |
| 577 | # http://gmpy.sourceforge.net and |
| 578 | # http://www.egenix.com/files/python/mxNumber.html |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 579 | |
Greg Ward | 57fc210 | 2001-10-03 19:59:30 +0000 | [diff] [blame] | 580 | # A compatible MP library unencumbered by the GPL also exists. It was |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 581 | # posted to comp.sources.misc in volume 40 and is widely available from |
| 582 | # FTP archive sites. One URL for it is: |
| 583 | # ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z |
| 584 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 585 | if (self.compiler.find_library_file(lib_dirs, 'gmp')): |
| 586 | exts.append( Extension('mpz', ['mpzmodule.c'], |
| 587 | libraries = ['gmp'] ) ) |
| 588 | |
| 589 | |
| 590 | # Unix-only modules |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 591 | if platform not in ['mac', 'win32']: |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 592 | # Steen Lumholt's termios module |
| 593 | exts.append( Extension('termios', ['termios.c']) ) |
| 594 | # Jeremy Hylton's rlimit interface |
Martin v. Löwis | f90ae20 | 2002-06-11 06:22:31 +0000 | [diff] [blame] | 595 | if platform not in ['atheos']: |
| 596 | exts.append( Extension('resource', ['resource.c']) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 597 | |
Andrew M. Kuchling | cf393f3 | 2001-02-21 02:38:24 +0000 | [diff] [blame] | 598 | # Sun yellow pages. Some systems have the functions in libc. |
Martin v. Löwis | f90ae20 | 2002-06-11 06:22:31 +0000 | [diff] [blame] | 599 | if platform not in ['cygwin', 'atheos']: |
Andrew M. Kuchling | 6efc6e7 | 2001-02-27 20:54:23 +0000 | [diff] [blame] | 600 | if (self.compiler.find_library_file(lib_dirs, 'nsl')): |
| 601 | libs = ['nsl'] |
| 602 | else: |
| 603 | libs = [] |
| 604 | exts.append( Extension('nis', ['nismodule.c'], |
| 605 | libraries = libs) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 606 | |
| 607 | # Curses support, requring the System V version of curses, often |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 608 | # provided by the ncurses library. |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 609 | if platform == 'sunos4': |
Andrew M. Kuchling | b69c758 | 2001-02-28 19:49:57 +0000 | [diff] [blame] | 610 | inc_dirs += ['/usr/5include'] |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 611 | lib_dirs += ['/usr/5lib'] |
| 612 | |
| 613 | if (self.compiler.find_library_file(lib_dirs, 'ncurses')): |
| 614 | curses_libs = ['ncurses'] |
| 615 | exts.append( Extension('_curses', ['_cursesmodule.c'], |
| 616 | libraries = curses_libs) ) |
Fred Drake | 38419c0 | 2001-12-06 22:24:47 +0000 | [diff] [blame] | 617 | elif (self.compiler.find_library_file(lib_dirs, 'curses') |
| 618 | and platform != 'darwin'): |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 619 | # OSX has an old Berkeley curses, not good enough for |
| 620 | # the _curses module. |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 621 | if (self.compiler.find_library_file(lib_dirs, 'terminfo')): |
| 622 | curses_libs = ['curses', 'terminfo'] |
| 623 | else: |
| 624 | curses_libs = ['curses', 'termcap'] |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 625 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 626 | exts.append( Extension('_curses', ['_cursesmodule.c'], |
| 627 | libraries = curses_libs) ) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 628 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 629 | # If the curses module is enabled, check for the panel module |
Andrew M. Kuchling | e7ffbb2 | 2001-12-06 15:57:16 +0000 | [diff] [blame] | 630 | if (module_enabled(exts, '_curses') and |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 631 | self.compiler.find_library_file(lib_dirs, 'panel')): |
| 632 | exts.append( Extension('_curses_panel', ['_curses_panel.c'], |
| 633 | libraries = ['panel'] + curses_libs) ) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 634 | |
| 635 | |
Barry Warsaw | 259b1e1 | 2002-08-13 20:09:26 +0000 | [diff] [blame] | 636 | # Andrew Kuchling's zlib module. Note that some versions of zlib |
| 637 | # 1.1.3 have security problems. See CERT Advisory CA-2002-07: |
| 638 | # http://www.cert.org/advisories/CA-2002-07.html |
| 639 | # |
| 640 | # zlib 1.1.4 is fixed, but at least one vendor (RedHat) has decided to |
| 641 | # patch its zlib 1.1.3 package instead of upgrading to 1.1.4. For |
| 642 | # now, we still accept 1.1.3, because we think it's difficult to |
| 643 | # exploit this in Python, and we'd rather make it RedHat's problem |
| 644 | # than our problem <wink>. |
| 645 | # |
| 646 | # You can upgrade zlib to version 1.1.4 yourself by going to |
| 647 | # http://www.gzip.org/zlib/ |
Guido van Rossum | e697091 | 2001-04-15 15:16:12 +0000 | [diff] [blame] | 648 | zlib_inc = find_file('zlib.h', [], inc_dirs) |
| 649 | if zlib_inc is not None: |
| 650 | zlib_h = zlib_inc[0] + '/zlib.h' |
| 651 | version = '"0.0.0"' |
Barry Warsaw | 259b1e1 | 2002-08-13 20:09:26 +0000 | [diff] [blame] | 652 | version_req = '"1.1.3"' |
Guido van Rossum | e697091 | 2001-04-15 15:16:12 +0000 | [diff] [blame] | 653 | fp = open(zlib_h) |
| 654 | while 1: |
| 655 | line = fp.readline() |
| 656 | if not line: |
| 657 | break |
Guido van Rossum | 8cdc03d | 2002-08-06 17:28:30 +0000 | [diff] [blame] | 658 | if line.startswith('#define ZLIB_VERSION'): |
Guido van Rossum | e697091 | 2001-04-15 15:16:12 +0000 | [diff] [blame] | 659 | version = line.split()[2] |
| 660 | break |
| 661 | if version >= version_req: |
| 662 | if (self.compiler.find_library_file(lib_dirs, 'z')): |
| 663 | exts.append( Extension('zlib', ['zlibmodule.c'], |
| 664 | libraries = ['z']) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 665 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 666 | # Gustavo Niemeyer's bz2 module. |
| 667 | if (self.compiler.find_library_file(lib_dirs, 'bz2')): |
| 668 | exts.append( Extension('bz2', ['bz2module.c'], |
| 669 | libraries = ['bz2']) ) |
| 670 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 671 | # Interface to the Expat XML parser |
| 672 | # |
Fred Drake | fc8341d | 2002-06-17 17:55:30 +0000 | [diff] [blame] | 673 | # Expat was written by James Clark and is now maintained by a |
| 674 | # group of developers on SourceForge; see www.libexpat.org for |
| 675 | # more information. The pyexpat module was written by Paul |
| 676 | # Prescod after a prototype by Jack Jansen. Source of Expat |
| 677 | # 1.95.2 is included in Modules/expat/. Usage of a system |
| 678 | # shared libexpat.so/expat.dll is not advised. |
| 679 | # |
| 680 | # More information on Expat can be found at www.libexpat.org. |
| 681 | # |
Martin v. Löwis | cf453fe | 2002-02-11 23:27:45 +0000 | [diff] [blame] | 682 | if sys.byteorder == "little": |
| 683 | xmlbo = "12" |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 684 | else: |
Martin v. Löwis | cf453fe | 2002-02-11 23:27:45 +0000 | [diff] [blame] | 685 | xmlbo = "21" |
Martin v. Löwis | 8301256 | 2002-02-14 01:25:37 +0000 | [diff] [blame] | 686 | expatinc = os.path.join(os.getcwd(), srcdir, 'Modules', 'expat') |
Martin v. Löwis | cf453fe | 2002-02-11 23:27:45 +0000 | [diff] [blame] | 687 | exts.append(Extension('pyexpat', |
| 688 | sources = [ |
| 689 | 'pyexpat.c', |
| 690 | 'expat/xmlparse.c', |
| 691 | 'expat/xmlrole.c', |
| 692 | 'expat/xmltok.c', |
| 693 | ], |
| 694 | define_macros = [ |
| 695 | ('HAVE_EXPAT_H',None), |
Martin v. Löwis | cf453fe | 2002-02-11 23:27:45 +0000 | [diff] [blame] | 696 | ('XML_NS', '1'), |
| 697 | ('XML_DTD', '1'), |
| 698 | ('XML_BYTE_ORDER', xmlbo), |
| 699 | ('XML_CONTEXT_BYTES','1024'), |
| 700 | ], |
Martin v. Löwis | 8301256 | 2002-02-14 01:25:37 +0000 | [diff] [blame] | 701 | include_dirs = [expatinc] |
Martin v. Löwis | cf453fe | 2002-02-11 23:27:45 +0000 | [diff] [blame] | 702 | )) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 703 | |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 704 | # Dynamic loading module |
Guido van Rossum | 770acd3 | 2002-09-12 14:41:20 +0000 | [diff] [blame] | 705 | if sys.maxint == 0x7fffffff: |
| 706 | # This requires sizeof(int) == sizeof(long) == sizeof(char*) |
| 707 | dl_inc = find_file('dlfcn.h', [], inc_dirs) |
| 708 | if (dl_inc is not None) and (platform not in ['atheos']): |
| 709 | exts.append( Extension('dl', ['dlmodule.c']) ) |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 710 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 711 | # Platform-specific libraries |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 712 | if platform == 'linux2': |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 713 | # Linux-specific modules |
| 714 | exts.append( Extension('linuxaudiodev', ['linuxaudiodev.c']) ) |
| 715 | |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 716 | if platform == 'sunos5': |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 717 | # SunOS specific modules |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 718 | exts.append( Extension('sunaudiodev', ['sunaudiodev.c']) ) |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 719 | |
Jack Jansen | 244e761 | 2001-12-05 15:54:29 +0000 | [diff] [blame] | 720 | if platform == 'darwin': |
Just van Rossum | 05ced6a | 2002-11-24 23:15:57 +0000 | [diff] [blame] | 721 | # Mac OS X specific modules. |
Jack Jansen | 0b06be7 | 2002-06-21 14:48:38 +0000 | [diff] [blame] | 722 | exts.append( Extension('_CF', ['cf/_CFmodule.c', 'cf/pycfbridge.c'], |
Michael W. Hudson | 0c46c0c | 2002-03-07 09:58:56 +0000 | [diff] [blame] | 723 | extra_link_args=['-framework', 'CoreFoundation']) ) |
Jack Jansen | d1b2045 | 2002-07-08 21:39:36 +0000 | [diff] [blame] | 724 | |
Just van Rossum | 05ced6a | 2002-11-24 23:15:57 +0000 | [diff] [blame] | 725 | exts.append( Extension('gestalt', ['gestaltmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 726 | extra_link_args=['-framework', 'Carbon']) ) |
Just van Rossum | 05ced6a | 2002-11-24 23:15:57 +0000 | [diff] [blame] | 727 | exts.append( Extension('MacOS', ['macosmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 728 | extra_link_args=['-framework', 'Carbon']) ) |
Just van Rossum | 05ced6a | 2002-11-24 23:15:57 +0000 | [diff] [blame] | 729 | exts.append( Extension('icglue', ['icgluemodule.c'], |
Jack Jansen | 983258e | 2002-08-29 21:09:00 +0000 | [diff] [blame] | 730 | extra_link_args=['-framework', 'Carbon']) ) |
Just van Rossum | 05ced6a | 2002-11-24 23:15:57 +0000 | [diff] [blame] | 731 | exts.append( Extension('macfs', |
| 732 | ['macfsmodule.c', |
| 733 | '../Python/getapplbycreator.c'], |
Jack Jansen | d0e59fb | 2002-11-22 15:53:32 +0000 | [diff] [blame] | 734 | extra_link_args=['-framework', 'Carbon']) ) |
Just van Rossum | 05ced6a | 2002-11-24 23:15:57 +0000 | [diff] [blame] | 735 | exts.append( Extension('_Res', ['res/_Resmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 736 | extra_link_args=['-framework', 'Carbon']) ) |
Just van Rossum | 05ced6a | 2002-11-24 23:15:57 +0000 | [diff] [blame] | 737 | exts.append( Extension('_Snd', ['snd/_Sndmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 738 | extra_link_args=['-framework', 'Carbon']) ) |
Just van Rossum | 05ced6a | 2002-11-24 23:15:57 +0000 | [diff] [blame] | 739 | exts.append( Extension('Nav', ['Nav.c'], |
| 740 | extra_link_args=['-framework', 'Carbon']) ) |
| 741 | exts.append( Extension('_AE', ['ae/_AEmodule.c'], |
| 742 | extra_link_args=['-framework', 'Carbon']) ) |
| 743 | exts.append( Extension('_AH', ['ah/_AHmodule.c'], |
| 744 | extra_link_args=['-framework', 'Carbon']) ) |
| 745 | exts.append( Extension('_Alias', ['alias/_Aliasmodule.c'], |
| 746 | extra_link_args=['-framework', 'Carbon']) ) |
| 747 | exts.append( Extension('_App', ['app/_Appmodule.c'], |
| 748 | extra_link_args=['-framework', 'Carbon']) ) |
| 749 | exts.append( Extension('_CarbonEvt', ['carbonevt/_CarbonEvtmodule.c'], |
| 750 | extra_link_args=['-framework', 'Carbon']) ) |
| 751 | exts.append( Extension('_CG', ['cg/_CGmodule.c'], |
| 752 | extra_link_args=['-framework', 'ApplicationServices', |
| 753 | '-framework', 'Carbon']) ) |
| 754 | exts.append( Extension('_Cm', ['cm/_Cmmodule.c'], |
| 755 | extra_link_args=['-framework', 'Carbon']) ) |
| 756 | exts.append( Extension('_Ctl', ['ctl/_Ctlmodule.c'], |
| 757 | extra_link_args=['-framework', 'Carbon']) ) |
| 758 | exts.append( Extension('_Dlg', ['dlg/_Dlgmodule.c'], |
| 759 | extra_link_args=['-framework', 'Carbon']) ) |
| 760 | exts.append( Extension('_Drag', ['drag/_Dragmodule.c'], |
| 761 | extra_link_args=['-framework', 'Carbon']) ) |
| 762 | exts.append( Extension('_Evt', ['evt/_Evtmodule.c'], |
| 763 | extra_link_args=['-framework', 'Carbon']) ) |
| 764 | exts.append( Extension('_File', ['file/_Filemodule.c'], |
| 765 | extra_link_args=['-framework', 'Carbon']) ) |
| 766 | exts.append( Extension('_Folder', ['folder/_Foldermodule.c'], |
| 767 | extra_link_args=['-framework', 'Carbon']) ) |
| 768 | exts.append( Extension('_Fm', ['fm/_Fmmodule.c'], |
| 769 | extra_link_args=['-framework', 'Carbon']) ) |
| 770 | exts.append( Extension('_Help', ['help/_Helpmodule.c'], |
| 771 | extra_link_args=['-framework', 'Carbon']) ) |
| 772 | exts.append( Extension('_Icn', ['icn/_Icnmodule.c'], |
| 773 | extra_link_args=['-framework', 'Carbon']) ) |
| 774 | exts.append( Extension('_IBCarbon', ['ibcarbon/_IBCarbon.c'], |
| 775 | extra_link_args=['-framework', 'Carbon']) ) |
| 776 | exts.append( Extension('_List', ['list/_Listmodule.c'], |
| 777 | extra_link_args=['-framework', 'Carbon']) ) |
| 778 | exts.append( Extension('_Menu', ['menu/_Menumodule.c'], |
| 779 | extra_link_args=['-framework', 'Carbon']) ) |
| 780 | exts.append( Extension('_Mlte', ['mlte/_Mltemodule.c'], |
| 781 | extra_link_args=['-framework', 'Carbon']) ) |
| 782 | exts.append( Extension('_Qd', ['qd/_Qdmodule.c'], |
| 783 | extra_link_args=['-framework', 'Carbon']) ) |
| 784 | exts.append( Extension('_Qdoffs', ['qdoffs/_Qdoffsmodule.c'], |
| 785 | extra_link_args=['-framework', 'Carbon']) ) |
| 786 | exts.append( Extension('_Qt', ['qt/_Qtmodule.c'], |
| 787 | extra_link_args=['-framework', 'QuickTime', |
| 788 | '-framework', 'Carbon']) ) |
| 789 | exts.append( Extension('_Scrap', ['scrap/_Scrapmodule.c'], |
| 790 | extra_link_args=['-framework', 'Carbon']) ) |
| 791 | exts.append( Extension('_TE', ['te/_TEmodule.c'], |
| 792 | extra_link_args=['-framework', 'Carbon']) ) |
| 793 | # As there is no standardized place (yet) to put |
| 794 | # user-installed Mac libraries on OSX, we search for "waste" |
| 795 | # in parent directories of the Python source tree. You |
| 796 | # should put a symlink to your Waste installation in the |
| 797 | # same folder as your python source tree. Or modify the |
| 798 | # next few lines:-) |
| 799 | waste_incs = find_file("WASTE.h", [], |
| 800 | ['../'*n + 'waste/C_C++ Headers' for n in (0,1,2,3,4)]) |
| 801 | waste_libs = find_library_file(self.compiler, "WASTE", [], |
| 802 | ["../"*n + "waste/Static Libraries" for n in (0,1,2,3,4)]) |
| 803 | if waste_incs != None and waste_libs != None: |
| 804 | (srcdir,) = sysconfig.get_config_vars('srcdir') |
| 805 | exts.append( Extension('waste', |
| 806 | ['waste/wastemodule.c'] + [ |
| 807 | os.path.join(srcdir, d) for d in |
| 808 | 'Mac/Wastemods/WEObjectHandlers.c', |
| 809 | 'Mac/Wastemods/WETabHooks.c', |
| 810 | 'Mac/Wastemods/WETabs.c' |
| 811 | ], |
| 812 | include_dirs = waste_incs + [os.path.join(srcdir, 'Mac/Wastemods')], |
| 813 | library_dirs = waste_libs, |
| 814 | libraries = ['WASTE'], |
| 815 | extra_link_args = ['-framework', 'Carbon'], |
| 816 | ) ) |
| 817 | exts.append( Extension('_Win', ['win/_Winmodule.c'], |
| 818 | extra_link_args=['-framework', 'Carbon']) ) |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 819 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 820 | self.extensions.extend(exts) |
| 821 | |
| 822 | # Call the method for detecting whether _tkinter can be compiled |
| 823 | self.detect_tkinter(inc_dirs, lib_dirs) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 824 | |
Jack Jansen | 0b06be7 | 2002-06-21 14:48:38 +0000 | [diff] [blame] | 825 | def detect_tkinter_darwin(self, inc_dirs, lib_dirs): |
| 826 | # The _tkinter module, using frameworks. Since frameworks are quite |
| 827 | # different the UNIX search logic is not sharable. |
| 828 | from os.path import join, exists |
| 829 | framework_dirs = [ |
| 830 | '/System/Library/Frameworks/', |
| 831 | '/Library/Frameworks', |
| 832 | join(os.getenv('HOME'), '/Library/Frameworks') |
| 833 | ] |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 834 | |
Jack Jansen | 0b06be7 | 2002-06-21 14:48:38 +0000 | [diff] [blame] | 835 | # Find the directory that contains the Tcl.framwork and Tk.framework |
| 836 | # bundles. |
| 837 | # XXX distutils should support -F! |
| 838 | for F in framework_dirs: |
| 839 | # both Tcl.framework and Tk.framework should be present |
| 840 | for fw in 'Tcl', 'Tk': |
| 841 | if not exists(join(F, fw + '.framework')): |
| 842 | break |
| 843 | else: |
| 844 | # ok, F is now directory with both frameworks. Continure |
| 845 | # building |
| 846 | break |
| 847 | else: |
| 848 | # Tk and Tcl frameworks not found. Normal "unix" tkinter search |
| 849 | # will now resume. |
| 850 | return 0 |
| 851 | |
| 852 | # For 8.4a2, we must add -I options that point inside the Tcl and Tk |
| 853 | # frameworks. In later release we should hopefully be able to pass |
| 854 | # the -F option to gcc, which specifies a framework lookup path. |
| 855 | # |
| 856 | include_dirs = [ |
| 857 | join(F, fw + '.framework', H) |
| 858 | for fw in 'Tcl', 'Tk' |
| 859 | for H in 'Headers', 'Versions/Current/PrivateHeaders' |
| 860 | ] |
| 861 | |
| 862 | # For 8.4a2, the X11 headers are not included. Rather than include a |
| 863 | # complicated search, this is a hard-coded path. It could bail out |
| 864 | # if X11 libs are not found... |
| 865 | include_dirs.append('/usr/X11R6/include') |
| 866 | frameworks = ['-framework', 'Tcl', '-framework', 'Tk'] |
| 867 | |
| 868 | ext = Extension('_tkinter', ['_tkinter.c', 'tkappinit.c'], |
| 869 | define_macros=[('WITH_APPINIT', 1)], |
| 870 | include_dirs = include_dirs, |
| 871 | libraries = [], |
| 872 | extra_compile_args = frameworks, |
| 873 | extra_link_args = frameworks, |
| 874 | ) |
| 875 | self.extensions.append(ext) |
| 876 | return 1 |
| 877 | |
| 878 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 879 | def detect_tkinter(self, inc_dirs, lib_dirs): |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 880 | # The _tkinter module. |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 881 | |
Jack Jansen | 0b06be7 | 2002-06-21 14:48:38 +0000 | [diff] [blame] | 882 | # Rather than complicate the code below, detecting and building |
| 883 | # AquaTk is a separate method. Only one Tkinter will be built on |
| 884 | # Darwin - either AquaTk, if it is found, or X11 based Tk. |
| 885 | platform = self.get_platform() |
| 886 | if platform == 'darwin' and \ |
| 887 | self.detect_tkinter_darwin(inc_dirs, lib_dirs): |
| 888 | return |
| 889 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 890 | # Assume we haven't found any of the libraries or include files |
Martin v. Löwis | 3db5b8c | 2001-07-24 06:54:01 +0000 | [diff] [blame] | 891 | # The versions with dots are used on Unix, and the versions without |
| 892 | # dots on Windows, for detection by cygwin. |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 893 | tcllib = tklib = tcl_includes = tk_includes = None |
Martin v. Löwis | 3db5b8c | 2001-07-24 06:54:01 +0000 | [diff] [blame] | 894 | for version in ['8.4', '84', '8.3', '83', '8.2', |
| 895 | '82', '8.1', '81', '8.0', '80']: |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 896 | tklib = self.compiler.find_library_file(lib_dirs, |
| 897 | 'tk' + version ) |
| 898 | tcllib = self.compiler.find_library_file(lib_dirs, |
| 899 | 'tcl' + version ) |
| 900 | if tklib and tcllib: |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 901 | # Exit the loop when we've found the Tcl/Tk libraries |
| 902 | break |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 903 | |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 904 | # Now check for the header files |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 905 | if tklib and tcllib: |
| 906 | # Check for the include files on Debian, where |
| 907 | # they're put in /usr/include/{tcl,tk}X.Y |
Andrew M. Kuchling | 9a3fd8c | 2001-02-06 22:15:27 +0000 | [diff] [blame] | 908 | debian_tcl_include = [ '/usr/include/tcl' + version ] |
Fred Drake | 38419c0 | 2001-12-06 22:24:47 +0000 | [diff] [blame] | 909 | debian_tk_include = [ '/usr/include/tk' + version ] + \ |
| 910 | debian_tcl_include |
Andrew M. Kuchling | 9a3fd8c | 2001-02-06 22:15:27 +0000 | [diff] [blame] | 911 | tcl_includes = find_file('tcl.h', inc_dirs, debian_tcl_include) |
| 912 | tk_includes = find_file('tk.h', inc_dirs, debian_tk_include) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 913 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 914 | if (tcllib is None or tklib is None and |
| 915 | tcl_includes is None or tk_includes is None): |
| 916 | # Something's missing, so give up |
| 917 | return |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 918 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 919 | # OK... everything seems to be present for Tcl/Tk. |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 920 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 921 | include_dirs = [] ; libs = [] ; defs = [] ; added_lib_dirs = [] |
| 922 | for dir in tcl_includes + tk_includes: |
| 923 | if dir not in include_dirs: |
| 924 | include_dirs.append(dir) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 925 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 926 | # Check for various platform-specific directories |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 927 | if platform == 'sunos5': |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 928 | include_dirs.append('/usr/openwin/include') |
| 929 | added_lib_dirs.append('/usr/openwin/lib') |
| 930 | elif os.path.exists('/usr/X11R6/include'): |
| 931 | include_dirs.append('/usr/X11R6/include') |
| 932 | added_lib_dirs.append('/usr/X11R6/lib') |
| 933 | elif os.path.exists('/usr/X11R5/include'): |
| 934 | include_dirs.append('/usr/X11R5/include') |
| 935 | added_lib_dirs.append('/usr/X11R5/lib') |
| 936 | else: |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 937 | # Assume default location for X11 |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 938 | include_dirs.append('/usr/X11/include') |
| 939 | added_lib_dirs.append('/usr/X11/lib') |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 940 | |
Andrew M. Kuchling | 89fb72d | 2001-09-18 20:32:13 +0000 | [diff] [blame] | 941 | # If Cygwin, then verify that X is installed before proceeding |
| 942 | if platform == 'cygwin': |
| 943 | x11_inc = find_file('X11/Xlib.h', [], inc_dirs) |
| 944 | if x11_inc is None: |
| 945 | # X header files missing, so give up |
| 946 | return |
| 947 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 948 | # Check for BLT extension |
Fred Drake | 38419c0 | 2001-12-06 22:24:47 +0000 | [diff] [blame] | 949 | if self.compiler.find_library_file(lib_dirs + added_lib_dirs, |
| 950 | 'BLT8.0'): |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 951 | defs.append( ('WITH_BLT', 1) ) |
| 952 | libs.append('BLT8.0') |
Martin v. Löwis | 427a290 | 2002-12-12 20:23:38 +0000 | [diff] [blame] | 953 | elif self.compiler.find_library_file(lib_dirs + added_lib_dirs, |
| 954 | 'BLT'): |
| 955 | defs.append( ('WITH_BLT', 1) ) |
| 956 | libs.append('BLT') |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 957 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 958 | # Add the Tcl/Tk libraries |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 959 | libs.append('tk'+version) |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 960 | libs.append('tcl'+version) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 961 | |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 962 | if platform in ['aix3', 'aix4']: |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 963 | libs.append('ld') |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 964 | |
Martin v. Löwis | 3db5b8c | 2001-07-24 06:54:01 +0000 | [diff] [blame] | 965 | # Finally, link with the X11 libraries (not appropriate on cygwin) |
| 966 | if platform != "cygwin": |
| 967 | libs.append('X11') |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 968 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 969 | ext = Extension('_tkinter', ['_tkinter.c', 'tkappinit.c'], |
| 970 | define_macros=[('WITH_APPINIT', 1)] + defs, |
| 971 | include_dirs = include_dirs, |
| 972 | libraries = libs, |
| 973 | library_dirs = added_lib_dirs, |
| 974 | ) |
| 975 | self.extensions.append(ext) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 976 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 977 | # XXX handle these, but how to detect? |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 978 | # *** Uncomment and edit for PIL (TkImaging) extension only: |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 979 | # -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \ |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 980 | # *** Uncomment and edit for TOGL extension only: |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 981 | # -DWITH_TOGL togl.c \ |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 982 | # *** Uncomment these for TOGL extension only: |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 983 | # -lGL -lGLU -lXext -lXmu \ |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 984 | |
Andrew M. Kuchling | f52d27e | 2001-05-21 20:29:27 +0000 | [diff] [blame] | 985 | class PyBuildInstall(install): |
| 986 | # Suppress the warning about installation into the lib_dynload |
| 987 | # directory, which is not in sys.path when running Python during |
| 988 | # installation: |
| 989 | def initialize_options (self): |
| 990 | install.initialize_options(self) |
| 991 | self.warn_dir=0 |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 992 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 993 | def main(): |
Andrew M. Kuchling | 6268669 | 2001-05-21 20:48:09 +0000 | [diff] [blame] | 994 | # turn off warnings when deprecated modules are imported |
| 995 | import warnings |
| 996 | warnings.filterwarnings("ignore",category=DeprecationWarning) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 997 | setup(name = 'Python standard library', |
Neil Schemenauer | e7e2ece | 2001-01-17 21:58:00 +0000 | [diff] [blame] | 998 | version = '%d.%d' % sys.version_info[:2], |
Andrew M. Kuchling | f52d27e | 2001-05-21 20:29:27 +0000 | [diff] [blame] | 999 | cmdclass = {'build_ext':PyBuildExt, 'install':PyBuildInstall}, |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 1000 | # The struct module is defined here, because build_ext won't be |
| 1001 | # called unless there's at least one extension module defined. |
Andrew M. Kuchling | aece427 | 2001-02-28 20:56:49 +0000 | [diff] [blame] | 1002 | ext_modules=[Extension('struct', ['structmodule.c'])], |
| 1003 | |
| 1004 | # Scripts to install |
| 1005 | scripts = ['Tools/scripts/pydoc'] |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 1006 | ) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 1007 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 1008 | # --install-platlib |
| 1009 | if __name__ == '__main__': |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 1010 | main() |