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 | |
Michael W. Hudson | af14289 | 2002-01-23 15:07:46 +0000 | [diff] [blame] | 6 | import sys, os, getopt, imp |
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.""" |
| 21 | if os.path.isdir(dir) and dir not in dirlist: |
| 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): |
| 51 | filename = compiler.library_filename(libname, lib_type='shared') |
| 52 | result = find_file(filename, std_dirs, paths) |
| 53 | if result is not None: return result |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 54 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 55 | filename = compiler.library_filename(libname, lib_type='static') |
| 56 | result = find_file(filename, std_dirs, paths) |
| 57 | return result |
| 58 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 59 | def module_enabled(extlist, modname): |
| 60 | """Returns whether the module 'modname' is present in the list |
| 61 | of extensions 'extlist'.""" |
| 62 | extlist = [ext for ext in extlist if ext.name == modname] |
| 63 | return len(extlist) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 64 | |
Jack Jansen | 144ebcc | 2001-08-05 22:31:19 +0000 | [diff] [blame] | 65 | def find_module_file(module, dirlist): |
| 66 | """Find a module in a set of possible folders. If it is not found |
| 67 | return the unadorned filename""" |
| 68 | list = find_file(module, [], dirlist) |
| 69 | if not list: |
| 70 | return module |
| 71 | if len(list) > 1: |
| 72 | self.announce("WARNING: multiple copies of %s found"%module) |
| 73 | return os.path.join(list[0], module) |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 74 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 75 | class PyBuildExt(build_ext): |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 76 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 77 | def build_extensions(self): |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 78 | |
| 79 | # Detect which modules should be compiled |
| 80 | self.detect_modules() |
| 81 | |
| 82 | # Remove modules that are present on the disabled list |
| 83 | self.extensions = [ext for ext in self.extensions |
| 84 | if ext.name not in disabled_module_list] |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 85 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 86 | # Fix up the autodetected modules, prefixing all the source files |
| 87 | # with Modules/ and adding Python's include directory to the path. |
| 88 | (srcdir,) = sysconfig.get_config_vars('srcdir') |
| 89 | |
Neil Schemenauer | 726b78e | 2001-01-24 17:18:21 +0000 | [diff] [blame] | 90 | # Figure out the location of the source code for extension modules |
| 91 | moddir = os.path.join(os.getcwd(), srcdir, 'Modules') |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 92 | moddir = os.path.normpath(moddir) |
| 93 | srcdir, tail = os.path.split(moddir) |
| 94 | srcdir = os.path.normpath(srcdir) |
| 95 | moddir = os.path.normpath(moddir) |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 96 | |
Jack Jansen | 144ebcc | 2001-08-05 22:31:19 +0000 | [diff] [blame] | 97 | moddirlist = [moddir] |
| 98 | incdirlist = ['./Include'] |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 99 | |
Jack Jansen | 144ebcc | 2001-08-05 22:31:19 +0000 | [diff] [blame] | 100 | # Platform-dependent module source and include directories |
| 101 | platform = self.get_platform() |
Jack Jansen | 244e761 | 2001-12-05 15:54:29 +0000 | [diff] [blame] | 102 | if platform == 'darwin': |
Jack Jansen | 144ebcc | 2001-08-05 22:31:19 +0000 | [diff] [blame] | 103 | # Mac OS X also includes some mac-specific modules |
| 104 | macmoddir = os.path.join(os.getcwd(), srcdir, 'Mac/Modules') |
| 105 | moddirlist.append(macmoddir) |
| 106 | incdirlist.append('./Mac/Include') |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 107 | |
Andrew M. Kuchling | 3da989c | 2001-02-28 22:49:26 +0000 | [diff] [blame] | 108 | # Fix up the paths for scripts, too |
| 109 | self.distribution.scripts = [os.path.join(srcdir, filename) |
| 110 | for filename in self.distribution.scripts] |
| 111 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 112 | for ext in self.extensions[:]: |
Jack Jansen | 144ebcc | 2001-08-05 22:31:19 +0000 | [diff] [blame] | 113 | ext.sources = [ find_module_file(filename, moddirlist) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 114 | for filename in ext.sources ] |
Jack Jansen | 144ebcc | 2001-08-05 22:31:19 +0000 | [diff] [blame] | 115 | ext.include_dirs.append( '.' ) # to get config.h |
| 116 | for incdir in incdirlist: |
| 117 | ext.include_dirs.append( os.path.join(srcdir, incdir) ) |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 118 | |
Andrew M. Kuchling | e7c8732 | 2001-01-19 16:58:21 +0000 | [diff] [blame] | 119 | # If a module has already been built statically, |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 120 | # don't build it here |
Andrew M. Kuchling | e7c8732 | 2001-01-19 16:58:21 +0000 | [diff] [blame] | 121 | if ext.name in sys.builtin_module_names: |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 122 | self.extensions.remove(ext) |
Andrew M. Kuchling | 5bbc7b9 | 2001-01-18 20:39:34 +0000 | [diff] [blame] | 123 | |
Andrew M. Kuchling | 8d7f086 | 2001-02-23 16:32:32 +0000 | [diff] [blame] | 124 | # Parse Modules/Setup to figure out which modules are turned |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 125 | # on in the file. |
Andrew M. Kuchling | 8d7f086 | 2001-02-23 16:32:32 +0000 | [diff] [blame] | 126 | input = text_file.TextFile('Modules/Setup', join_lines=1) |
| 127 | remove_modules = [] |
| 128 | while 1: |
| 129 | line = input.readline() |
| 130 | if not line: break |
| 131 | line = line.split() |
| 132 | remove_modules.append( line[0] ) |
| 133 | input.close() |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 134 | |
Andrew M. Kuchling | 8d7f086 | 2001-02-23 16:32:32 +0000 | [diff] [blame] | 135 | for ext in self.extensions[:]: |
| 136 | if ext.name in remove_modules: |
| 137 | self.extensions.remove(ext) |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 138 | |
Andrew M. Kuchling | 5bbc7b9 | 2001-01-18 20:39:34 +0000 | [diff] [blame] | 139 | # When you run "make CC=altcc" or something similar, you really want |
| 140 | # those environment variables passed into the setup.py phase. Here's |
| 141 | # a small set of useful ones. |
| 142 | compiler = os.environ.get('CC') |
| 143 | linker_so = os.environ.get('LDSHARED') |
| 144 | args = {} |
| 145 | # unfortunately, distutils doesn't let us provide separate C and C++ |
| 146 | # compilers |
| 147 | if compiler is not None: |
Martin v. Löwis | 3e4b0e8 | 2001-08-10 08:56:17 +0000 | [diff] [blame] | 148 | (ccshared,opt) = sysconfig.get_config_vars('CCSHARED','OPT') |
| 149 | args['compiler_so'] = compiler + ' ' + opt + ' ' + ccshared |
Andrew M. Kuchling | 5bbc7b9 | 2001-01-18 20:39:34 +0000 | [diff] [blame] | 150 | if linker_so is not None: |
Martin v. Löwis | 2f20dab | 2001-10-08 13:18:37 +0000 | [diff] [blame] | 151 | args['linker_so'] = linker_so |
Andrew M. Kuchling | 5bbc7b9 | 2001-01-18 20:39:34 +0000 | [diff] [blame] | 152 | self.compiler.set_executables(**args) |
| 153 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 154 | build_ext.build_extensions(self) |
| 155 | |
Marc-André Lemburg | 7c6fcda | 2001-01-26 18:03:24 +0000 | [diff] [blame] | 156 | def build_extension(self, ext): |
| 157 | |
| 158 | try: |
| 159 | build_ext.build_extension(self, ext) |
| 160 | except (CCompilerError, DistutilsError), why: |
| 161 | self.announce('WARNING: building of extension "%s" failed: %s' % |
| 162 | (ext.name, sys.exc_info()[1])) |
Andrew M. Kuchling | 6268669 | 2001-05-21 20:48:09 +0000 | [diff] [blame] | 163 | return |
Jack Jansen | f49c6f9 | 2001-11-01 14:44:15 +0000 | [diff] [blame] | 164 | # Workaround for Mac OS X: The Carbon-based modules cannot be |
| 165 | # reliably imported into a command-line Python |
| 166 | if 'Carbon' in ext.extra_link_args: |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 167 | self.announce( |
| 168 | 'WARNING: skipping import check for Carbon-based "%s"' % |
| 169 | ext.name) |
| 170 | return |
Michael W. Hudson | af14289 | 2002-01-23 15:07:46 +0000 | [diff] [blame] | 171 | ext_filename = os.path.join( |
| 172 | self.build_lib, |
| 173 | self.get_ext_filename(self.get_ext_fullname(ext.name))) |
Andrew M. Kuchling | 6268669 | 2001-05-21 20:48:09 +0000 | [diff] [blame] | 174 | try: |
Michael W. Hudson | af14289 | 2002-01-23 15:07:46 +0000 | [diff] [blame] | 175 | imp.load_dynamic(ext.name, ext_filename) |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 176 | except ImportError, why: |
Marc-André Lemburg | 7c6fcda | 2001-01-26 18:03:24 +0000 | [diff] [blame] | 177 | |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 178 | if 1: |
Michael W. Hudson | 7113d96 | 2002-03-01 14:16:31 +0000 | [diff] [blame] | 179 | self.announce('*** WARNING: renaming "%s" since importing it' |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 180 | ' failed: %s' % (ext.name, why)) |
| 181 | assert not self.inplace |
Michael W. Hudson | 7113d96 | 2002-03-01 14:16:31 +0000 | [diff] [blame] | 182 | basename, tail = os.path.splitext(ext_filename) |
| 183 | newname = basename + "_failed" + tail |
| 184 | if os.path.exists(newname): os.remove(newname) |
| 185 | os.rename(ext_filename, newname) |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 186 | |
| 187 | # XXX -- This relies on a Vile HACK in |
| 188 | # distutils.command.build_ext.build_extension(). The |
| 189 | # _built_objects attribute is stored there strictly for |
| 190 | # use here. |
| 191 | for filename in self._built_objects: |
| 192 | os.remove(filename) |
| 193 | else: |
| 194 | self.announce('*** WARNING: importing extension "%s" ' |
| 195 | 'failed: %s' % (ext.name, why)) |
Fred Drake | 9028d0a | 2001-12-06 22:59:54 +0000 | [diff] [blame] | 196 | |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 197 | def get_platform (self): |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 198 | # Get value of sys.platform |
| 199 | platform = sys.platform |
| 200 | if platform[:6] =='cygwin': |
| 201 | platform = 'cygwin' |
Andrew M. Kuchling | 3c04494 | 2001-02-06 23:37:23 +0000 | [diff] [blame] | 202 | elif platform[:4] =='beos': |
| 203 | platform = 'beos' |
Jack Jansen | 244e761 | 2001-12-05 15:54:29 +0000 | [diff] [blame] | 204 | elif platform[:6] == 'darwin': |
| 205 | platform = 'darwin' |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 206 | |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 207 | return platform |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 208 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 209 | def detect_modules(self): |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 210 | # Ensure that /usr/local is always used |
Michael W. Hudson | 39230b3 | 2002-01-16 15:26:48 +0000 | [diff] [blame] | 211 | add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib') |
| 212 | add_dir_to_list(self.compiler.include_dirs, '/usr/local/include') |
| 213 | |
| 214 | add_dir_to_list(self.compiler.library_dirs, |
| 215 | sysconfig.get_config_var("LIBDIR")) |
| 216 | add_dir_to_list(self.compiler.include_dirs, |
| 217 | sysconfig.get_config_var("INCLUDEDIR")) |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 218 | |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 219 | try: |
| 220 | have_unicode = unicode |
| 221 | except NameError: |
| 222 | have_unicode = 0 |
| 223 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 224 | # lib_dirs and inc_dirs are used to search for files; |
| 225 | # if a file is found in one of those directories, it can |
| 226 | # be assumed that no additional -I,-L directives are needed. |
| 227 | lib_dirs = self.compiler.library_dirs + ['/lib', '/usr/lib'] |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 228 | inc_dirs = self.compiler.include_dirs + ['/usr/include'] |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 229 | exts = [] |
| 230 | |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 231 | platform = self.get_platform() |
Martin v. Löwis | 8301256 | 2002-02-14 01:25:37 +0000 | [diff] [blame] | 232 | (srcdir,) = sysconfig.get_config_vars('srcdir') |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 233 | |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 234 | # Check for MacOS X, which doesn't need libm.a at all |
| 235 | math_libs = ['m'] |
Jack Jansen | 244e761 | 2001-12-05 15:54:29 +0000 | [diff] [blame] | 236 | if platform in ['darwin', 'beos']: |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 237 | math_libs = [] |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 238 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 239 | # XXX Omitted modules: gl, pure, dl, SGI-specific modules |
| 240 | |
| 241 | # |
| 242 | # The following modules are all pretty straightforward, and compile |
| 243 | # on pretty much any POSIXish platform. |
| 244 | # |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 245 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 246 | # Some modules that are normally always on: |
| 247 | exts.append( Extension('regex', ['regexmodule.c', 'regexpr.c']) ) |
| 248 | exts.append( Extension('pcre', ['pcremodule.c', 'pypcre.c']) ) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 249 | |
Fred Drake | 3a40f32 | 2001-10-12 21:00:48 +0000 | [diff] [blame] | 250 | exts.append( Extension('_hotshot', ['_hotshot.c']) ) |
Fred Drake | 2de7471 | 2001-02-01 05:26:54 +0000 | [diff] [blame] | 251 | exts.append( Extension('_weakref', ['_weakref.c']) ) |
Andrew M. Kuchling | d5c4306 | 2001-01-17 15:59:25 +0000 | [diff] [blame] | 252 | exts.append( Extension('xreadlines', ['xreadlinesmodule.c']) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 253 | |
| 254 | # array objects |
| 255 | exts.append( Extension('array', ['arraymodule.c']) ) |
| 256 | # complex math library functions |
Andrew M. Kuchling | 5ddb25f | 2001-01-23 22:21:11 +0000 | [diff] [blame] | 257 | exts.append( Extension('cmath', ['cmathmodule.c'], |
| 258 | libraries=math_libs) ) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 259 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 260 | # math library functions, e.g. sin() |
Andrew M. Kuchling | 5ddb25f | 2001-01-23 22:21:11 +0000 | [diff] [blame] | 261 | exts.append( Extension('math', ['mathmodule.c'], |
| 262 | libraries=math_libs) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 263 | # fast string operations implemented in C |
| 264 | exts.append( Extension('strop', ['stropmodule.c']) ) |
| 265 | # time operations and variables |
Andrew M. Kuchling | 5ddb25f | 2001-01-23 22:21:11 +0000 | [diff] [blame] | 266 | exts.append( Extension('time', ['timemodule.c'], |
| 267 | libraries=math_libs) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 268 | # operator.add() and similar goodies |
| 269 | exts.append( Extension('operator', ['operator.c']) ) |
| 270 | # access to the builtin codecs and codec registry |
| 271 | exts.append( Extension('_codecs', ['_codecsmodule.c']) ) |
Marc-André Lemburg | 261b8e2 | 2001-02-02 12:12:44 +0000 | [diff] [blame] | 272 | # Python C API test module |
Tim Peters | d66595f | 2001-02-04 03:09:53 +0000 | [diff] [blame] | 273 | exts.append( Extension('_testcapi', ['_testcapimodule.c']) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 274 | # static Unicode character database |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 275 | if have_unicode: |
| 276 | exts.append( Extension('unicodedata', ['unicodedata.c']) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 277 | # access to ISO C locale support |
| 278 | exts.append( Extension('_locale', ['_localemodule.c']) ) |
| 279 | |
| 280 | # Modules with some UNIX dependencies -- on by default: |
| 281 | # (If you have a really backward UNIX, select and socket may not be |
| 282 | # supported...) |
| 283 | |
| 284 | # fcntl(2) and ioctl(2) |
| 285 | exts.append( Extension('fcntl', ['fcntlmodule.c']) ) |
| 286 | # pwd(3) |
| 287 | exts.append( Extension('pwd', ['pwdmodule.c']) ) |
| 288 | # grp(3) |
| 289 | exts.append( Extension('grp', ['grpmodule.c']) ) |
| 290 | # posix (UNIX) errno values |
| 291 | exts.append( Extension('errno', ['errnomodule.c']) ) |
| 292 | # select(2); not on ancient System V |
| 293 | exts.append( Extension('select', ['selectmodule.c']) ) |
| 294 | |
| 295 | # The md5 module implements the RSA Data Security, Inc. MD5 |
Fred Drake | 38419c0 | 2001-12-06 22:24:47 +0000 | [diff] [blame] | 296 | # Message-Digest Algorithm, described in RFC 1321. The |
| 297 | # necessary files md5c.c and md5.h are included here. |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 298 | exts.append( Extension('md5', ['md5module.c', 'md5c.c']) ) |
| 299 | |
| 300 | # The sha module implements the SHA checksum algorithm. |
| 301 | # (NIST's Secure Hash Algorithm.) |
| 302 | exts.append( Extension('sha', ['shamodule.c']) ) |
| 303 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 304 | # Helper module for various ascii-encoders |
| 305 | exts.append( Extension('binascii', ['binascii.c']) ) |
| 306 | |
| 307 | # Fred Drake's interface to the Python parser |
| 308 | exts.append( Extension('parser', ['parsermodule.c']) ) |
| 309 | |
| 310 | # Digital Creations' cStringIO and cPickle |
| 311 | exts.append( Extension('cStringIO', ['cStringIO.c']) ) |
| 312 | exts.append( Extension('cPickle', ['cPickle.c']) ) |
| 313 | |
| 314 | # Memory-mapped files (also works on Win32). |
| 315 | exts.append( Extension('mmap', ['mmapmodule.c']) ) |
| 316 | |
| 317 | # Lance Ellinghaus's modules: |
| 318 | # enigma-inspired encryption |
| 319 | exts.append( Extension('rotor', ['rotormodule.c']) ) |
| 320 | # syslog daemon interface |
| 321 | exts.append( Extension('syslog', ['syslogmodule.c']) ) |
| 322 | |
| 323 | # George Neville-Neil's timing module: |
| 324 | exts.append( Extension('timing', ['timingmodule.c']) ) |
| 325 | |
| 326 | # |
Andrew M. Kuchling | 5bbc7b9 | 2001-01-18 20:39:34 +0000 | [diff] [blame] | 327 | # Here ends the simple stuff. From here on, modules need certain |
| 328 | # libraries, are platform-specific, or present other surprises. |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 329 | # |
| 330 | |
| 331 | # Multimedia modules |
| 332 | # These don't work for 64-bit platforms!!! |
| 333 | # These represent audio samples or images as strings: |
| 334 | |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 335 | # Disabled on 64-bit platforms |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 336 | if sys.maxint != 9223372036854775807L: |
| 337 | # Operations on audio samples |
| 338 | exts.append( Extension('audioop', ['audioop.c']) ) |
| 339 | # Operations on images |
| 340 | exts.append( Extension('imageop', ['imageop.c']) ) |
| 341 | # Read SGI RGB image files (but coded portably) |
| 342 | exts.append( Extension('rgbimg', ['rgbimgmodule.c']) ) |
| 343 | |
| 344 | # readline |
Marc-André Lemburg | 2efc323 | 2001-01-26 18:23:02 +0000 | [diff] [blame] | 345 | if self.compiler.find_library_file(lib_dirs, 'readline'): |
| 346 | readline_libs = ['readline'] |
Andrew M. Kuchling | 5aa3c4a | 2001-08-16 20:30:18 +0000 | [diff] [blame] | 347 | if self.compiler.find_library_file(lib_dirs, |
| 348 | 'ncurses'): |
| 349 | readline_libs.append('ncurses') |
| 350 | elif self.compiler.find_library_file(lib_dirs + |
Marc-André Lemburg | 2efc323 | 2001-01-26 18:23:02 +0000 | [diff] [blame] | 351 | ['/usr/lib/termcap'], |
| 352 | 'termcap'): |
| 353 | readline_libs.append('termcap') |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 354 | exts.append( Extension('readline', ['readline.c'], |
Marc-André Lemburg | 7c6fcda | 2001-01-26 18:03:24 +0000 | [diff] [blame] | 355 | library_dirs=['/usr/lib/termcap'], |
Marc-André Lemburg | 2efc323 | 2001-01-26 18:23:02 +0000 | [diff] [blame] | 356 | libraries=readline_libs) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 357 | |
Andrew M. Kuchling | 5aa3c4a | 2001-08-16 20:30:18 +0000 | [diff] [blame] | 358 | # crypt module. |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 359 | |
| 360 | if self.compiler.find_library_file(lib_dirs, 'crypt'): |
| 361 | libs = ['crypt'] |
| 362 | else: |
| 363 | libs = [] |
| 364 | exts.append( Extension('crypt', ['cryptmodule.c'], libraries=libs) ) |
| 365 | |
| 366 | # socket(2) |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 367 | exts.append( Extension('_socket', ['socketmodule.c']) ) |
| 368 | # Detect SSL support for the socket module (via _ssl) |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 369 | ssl_incs = find_file('openssl/ssl.h', inc_dirs, |
Andrew M. Kuchling | e7c8732 | 2001-01-19 16:58:21 +0000 | [diff] [blame] | 370 | ['/usr/local/ssl/include', |
| 371 | '/usr/contrib/ssl/include/' |
| 372 | ] |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 373 | ) |
| 374 | ssl_libs = find_library_file(self.compiler, 'ssl',lib_dirs, |
Andrew M. Kuchling | e7c8732 | 2001-01-19 16:58:21 +0000 | [diff] [blame] | 375 | ['/usr/local/ssl/lib', |
| 376 | '/usr/contrib/ssl/lib/' |
| 377 | ] ) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 378 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 379 | if (ssl_incs is not None and |
| 380 | ssl_libs is not None): |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 381 | exts.append( Extension('_ssl', ['_ssl.c'], |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 382 | include_dirs = ssl_incs, |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 383 | library_dirs = ssl_libs, |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 384 | libraries = ['ssl', 'crypto']) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 385 | |
| 386 | # Modules that provide persistent dictionary-like semantics. You will |
| 387 | # probably want to arrange for at least one of them to be available on |
| 388 | # your machine, though none are defined by default because of library |
| 389 | # dependencies. The Python module anydbm.py provides an |
| 390 | # implementation independent wrapper for these; dumbdbm.py provides |
| 391 | # similar functionality (but slower of course) implemented in Python. |
| 392 | |
| 393 | # The standard Unix dbm module: |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 394 | if platform not in ['cygwin']: |
| 395 | if (self.compiler.find_library_file(lib_dirs, 'ndbm')): |
| 396 | exts.append( Extension('dbm', ['dbmmodule.c'], |
| 397 | libraries = ['ndbm'] ) ) |
Neil Schemenauer | c3ffef6 | 2001-10-21 22:14:44 +0000 | [diff] [blame] | 398 | elif self.compiler.find_library_file(lib_dirs, 'db1'): |
| 399 | exts.append( Extension('dbm', ['dbmmodule.c'], |
| 400 | libraries = ['db1'] ) ) |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 401 | else: |
| 402 | exts.append( Extension('dbm', ['dbmmodule.c']) ) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 403 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 404 | # Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm: |
| 405 | if (self.compiler.find_library_file(lib_dirs, 'gdbm')): |
| 406 | exts.append( Extension('gdbm', ['gdbmmodule.c'], |
| 407 | libraries = ['gdbm'] ) ) |
| 408 | |
| 409 | # Berkeley DB interface. |
| 410 | # |
| 411 | # This requires the Berkeley DB code, see |
| 412 | # ftp://ftp.cs.berkeley.edu/pub/4bsd/db.1.85.tar.gz |
| 413 | # |
| 414 | # Edit the variables DB and DBPORT to point to the db top directory |
| 415 | # and the subdirectory of PORT where you built it. |
| 416 | # |
Greg Ward | 02fac83 | 2001-09-13 15:05:08 +0000 | [diff] [blame] | 417 | # (See http://pybsddb.sourceforge.net/ for an interface to |
| 418 | # Berkeley DB 3.x.) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 419 | |
Andrew M. Kuchling | e06337a | 2001-02-23 16:27:48 +0000 | [diff] [blame] | 420 | dblib = [] |
Martin v. Löwis | f5c7677 | 2001-11-24 09:28:42 +0000 | [diff] [blame] | 421 | if self.compiler.find_library_file(lib_dirs, 'db-3.2'): |
| 422 | dblib = ['db-3.2'] |
| 423 | elif self.compiler.find_library_file(lib_dirs, 'db-3.1'): |
Skip Montanaro | e81f447 | 2001-08-21 04:23:21 +0000 | [diff] [blame] | 424 | dblib = ['db-3.1'] |
Neil Schemenauer | c3ffef6 | 2001-10-21 22:14:44 +0000 | [diff] [blame] | 425 | elif self.compiler.find_library_file(lib_dirs, 'db3'): |
| 426 | dblib = ['db3'] |
Skip Montanaro | e81f447 | 2001-08-21 04:23:21 +0000 | [diff] [blame] | 427 | elif self.compiler.find_library_file(lib_dirs, 'db2'): |
| 428 | dblib = ['db2'] |
| 429 | elif self.compiler.find_library_file(lib_dirs, 'db1'): |
| 430 | dblib = ['db1'] |
| 431 | elif self.compiler.find_library_file(lib_dirs, 'db'): |
Andrew M. Kuchling | e06337a | 2001-02-23 16:27:48 +0000 | [diff] [blame] | 432 | dblib = ['db'] |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 433 | |
Andrew M. Kuchling | e06337a | 2001-02-23 16:27:48 +0000 | [diff] [blame] | 434 | db185_incs = find_file('db_185.h', inc_dirs, |
| 435 | ['/usr/include/db3', '/usr/include/db2']) |
| 436 | db_inc = find_file('db.h', inc_dirs, ['/usr/include/db1']) |
| 437 | if db185_incs is not None: |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 438 | exts.append( Extension('bsddb', ['bsddbmodule.c'], |
Andrew M. Kuchling | e06337a | 2001-02-23 16:27:48 +0000 | [diff] [blame] | 439 | include_dirs = db185_incs, |
| 440 | define_macros=[('HAVE_DB_185_H',1)], |
| 441 | libraries = dblib ) ) |
| 442 | elif db_inc is not None: |
| 443 | exts.append( Extension('bsddb', ['bsddbmodule.c'], |
| 444 | include_dirs = db_inc, |
| 445 | libraries = dblib) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 446 | |
| 447 | # The mpz module interfaces to the GNU Multiple Precision library. |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 448 | # You need to ftp the GNU MP library. |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 449 | # This was originally written and tested against GMP 1.2 and 1.3.2. |
| 450 | # 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] | 451 | # haven't tested it recently, and it definitely doesn't work with |
| 452 | # GMP 4.0. For more complete modules, refer to |
| 453 | # http://gmpy.sourceforge.net and |
| 454 | # http://www.egenix.com/files/python/mxNumber.html |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 455 | |
Greg Ward | 57fc210 | 2001-10-03 19:59:30 +0000 | [diff] [blame] | 456 | # 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] | 457 | # posted to comp.sources.misc in volume 40 and is widely available from |
| 458 | # FTP archive sites. One URL for it is: |
| 459 | # ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z |
| 460 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 461 | if (self.compiler.find_library_file(lib_dirs, 'gmp')): |
| 462 | exts.append( Extension('mpz', ['mpzmodule.c'], |
| 463 | libraries = ['gmp'] ) ) |
| 464 | |
| 465 | |
| 466 | # Unix-only modules |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 467 | if platform not in ['mac', 'win32']: |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 468 | # Steen Lumholt's termios module |
| 469 | exts.append( Extension('termios', ['termios.c']) ) |
| 470 | # Jeremy Hylton's rlimit interface |
Andrew M. Kuchling | fda3c3d | 2001-09-17 16:19:16 +0000 | [diff] [blame] | 471 | exts.append( Extension('resource', ['resource.c']) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 472 | |
Andrew M. Kuchling | cf393f3 | 2001-02-21 02:38:24 +0000 | [diff] [blame] | 473 | # Sun yellow pages. Some systems have the functions in libc. |
Andrew M. Kuchling | 6efc6e7 | 2001-02-27 20:54:23 +0000 | [diff] [blame] | 474 | if platform not in ['cygwin']: |
| 475 | if (self.compiler.find_library_file(lib_dirs, 'nsl')): |
| 476 | libs = ['nsl'] |
| 477 | else: |
| 478 | libs = [] |
| 479 | exts.append( Extension('nis', ['nismodule.c'], |
| 480 | libraries = libs) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 481 | |
| 482 | # Curses support, requring the System V version of curses, often |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 483 | # provided by the ncurses library. |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 484 | if platform == 'sunos4': |
Andrew M. Kuchling | b69c758 | 2001-02-28 19:49:57 +0000 | [diff] [blame] | 485 | inc_dirs += ['/usr/5include'] |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 486 | lib_dirs += ['/usr/5lib'] |
| 487 | |
| 488 | if (self.compiler.find_library_file(lib_dirs, 'ncurses')): |
| 489 | curses_libs = ['ncurses'] |
| 490 | exts.append( Extension('_curses', ['_cursesmodule.c'], |
| 491 | libraries = curses_libs) ) |
Fred Drake | 38419c0 | 2001-12-06 22:24:47 +0000 | [diff] [blame] | 492 | elif (self.compiler.find_library_file(lib_dirs, 'curses') |
| 493 | and platform != 'darwin'): |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 494 | # OSX has an old Berkeley curses, not good enough for |
| 495 | # the _curses module. |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 496 | if (self.compiler.find_library_file(lib_dirs, 'terminfo')): |
| 497 | curses_libs = ['curses', 'terminfo'] |
| 498 | else: |
| 499 | curses_libs = ['curses', 'termcap'] |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 500 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 501 | exts.append( Extension('_curses', ['_cursesmodule.c'], |
| 502 | libraries = curses_libs) ) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 503 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 504 | # If the curses module is enabled, check for the panel module |
Andrew M. Kuchling | e7ffbb2 | 2001-12-06 15:57:16 +0000 | [diff] [blame] | 505 | if (module_enabled(exts, '_curses') and |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 506 | self.compiler.find_library_file(lib_dirs, 'panel')): |
| 507 | exts.append( Extension('_curses_panel', ['_curses_panel.c'], |
| 508 | libraries = ['panel'] + curses_libs) ) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 509 | |
| 510 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 511 | |
| 512 | # Lee Busby's SIGFPE modules. |
| 513 | # The library to link fpectl with is platform specific. |
| 514 | # Choose *one* of the options below for fpectl: |
| 515 | |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 516 | if platform == 'irix5': |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 517 | # For SGI IRIX (tested on 5.3): |
| 518 | exts.append( Extension('fpectl', ['fpectlmodule.c'], |
| 519 | libraries=['fpe']) ) |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 520 | elif 0: # XXX how to detect SunPro? |
Fred Drake | 38419c0 | 2001-12-06 22:24:47 +0000 | [diff] [blame] | 521 | # For Solaris with SunPro compiler (tested on Solaris 2.5 |
| 522 | # with SunPro C 4.2): (Without the compiler you don't have |
| 523 | # -lsunmath.) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 524 | #fpectl fpectlmodule.c -R/opt/SUNWspro/lib -lsunmath -lm |
| 525 | pass |
| 526 | else: |
| 527 | # For other systems: see instructions in fpectlmodule.c. |
| 528 | #fpectl fpectlmodule.c ... |
| 529 | exts.append( Extension('fpectl', ['fpectlmodule.c']) ) |
| 530 | |
| 531 | |
| 532 | # Andrew Kuchling's zlib module. |
| 533 | # This require zlib 1.1.3 (or later). |
| 534 | # See http://www.cdrom.com/pub/infozip/zlib/ |
Guido van Rossum | e697091 | 2001-04-15 15:16:12 +0000 | [diff] [blame] | 535 | zlib_inc = find_file('zlib.h', [], inc_dirs) |
| 536 | if zlib_inc is not None: |
| 537 | zlib_h = zlib_inc[0] + '/zlib.h' |
| 538 | version = '"0.0.0"' |
| 539 | version_req = '"1.1.3"' |
| 540 | fp = open(zlib_h) |
| 541 | while 1: |
| 542 | line = fp.readline() |
| 543 | if not line: |
| 544 | break |
| 545 | if line.find('#define ZLIB_VERSION', 0) == 0: |
| 546 | version = line.split()[2] |
| 547 | break |
| 548 | if version >= version_req: |
| 549 | if (self.compiler.find_library_file(lib_dirs, 'z')): |
| 550 | exts.append( Extension('zlib', ['zlibmodule.c'], |
| 551 | libraries = ['z']) ) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 552 | |
| 553 | # Interface to the Expat XML parser |
| 554 | # |
| 555 | # Expat is written by James Clark and must be downloaded separately |
| 556 | # (see below). The pyexpat module was written by Paul Prescod after a |
Martin v. Löwis | cf453fe | 2002-02-11 23:27:45 +0000 | [diff] [blame] | 557 | # prototype by Jack Jansen. Source of Expat 1.95.2 is included |
| 558 | # in Modules/expat. Usage of a system shared libexpat.so/expat.dll |
| 559 | # is only advised if that has the same or newer version and was |
| 560 | # build using the same defines. |
| 561 | if sys.byteorder == "little": |
| 562 | xmlbo = "12" |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 563 | else: |
Martin v. Löwis | cf453fe | 2002-02-11 23:27:45 +0000 | [diff] [blame] | 564 | xmlbo = "21" |
Martin v. Löwis | 8301256 | 2002-02-14 01:25:37 +0000 | [diff] [blame] | 565 | expatinc = os.path.join(os.getcwd(), srcdir, 'Modules', 'expat') |
Martin v. Löwis | cf453fe | 2002-02-11 23:27:45 +0000 | [diff] [blame] | 566 | exts.append(Extension('pyexpat', |
| 567 | sources = [ |
| 568 | 'pyexpat.c', |
| 569 | 'expat/xmlparse.c', |
| 570 | 'expat/xmlrole.c', |
| 571 | 'expat/xmltok.c', |
| 572 | ], |
| 573 | define_macros = [ |
| 574 | ('HAVE_EXPAT_H',None), |
Martin v. Löwis | cf453fe | 2002-02-11 23:27:45 +0000 | [diff] [blame] | 575 | ('XML_NS', '1'), |
| 576 | ('XML_DTD', '1'), |
| 577 | ('XML_BYTE_ORDER', xmlbo), |
| 578 | ('XML_CONTEXT_BYTES','1024'), |
| 579 | ], |
Martin v. Löwis | 8301256 | 2002-02-14 01:25:37 +0000 | [diff] [blame] | 580 | include_dirs = [expatinc] |
Martin v. Löwis | cf453fe | 2002-02-11 23:27:45 +0000 | [diff] [blame] | 581 | )) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 582 | |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 583 | # Dynamic loading module |
Martin v. Löwis | 9322727 | 2002-01-01 20:18:30 +0000 | [diff] [blame] | 584 | dl_inc = find_file('dlfcn.h', [], inc_dirs) |
| 585 | if dl_inc is not None: |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 586 | exts.append( Extension('dl', ['dlmodule.c']) ) |
| 587 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 588 | # Platform-specific libraries |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 589 | if platform == 'linux2': |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 590 | # Linux-specific modules |
| 591 | exts.append( Extension('linuxaudiodev', ['linuxaudiodev.c']) ) |
| 592 | |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 593 | if platform == 'sunos5': |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 594 | # SunOS specific modules |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 595 | exts.append( Extension('sunaudiodev', ['sunaudiodev.c']) ) |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 596 | |
Jack Jansen | 244e761 | 2001-12-05 15:54:29 +0000 | [diff] [blame] | 597 | if platform == 'darwin': |
Jack Jansen | 144ebcc | 2001-08-05 22:31:19 +0000 | [diff] [blame] | 598 | # Mac OS X specific modules. These are ported over from MacPython |
| 599 | # and still experimental. Some (such as gestalt or icglue) are |
| 600 | # already generally useful, some (the GUI ones) really need to |
| 601 | # be used from a framework. |
Jack Jansen | 2f760c3 | 2001-09-04 21:33:12 +0000 | [diff] [blame] | 602 | # |
| 603 | # I would like to trigger on WITH_NEXT_FRAMEWORK but that isn't |
| 604 | # available here. This Makefile variable is also what the install |
| 605 | # procedure triggers on. |
| 606 | frameworkdir = sysconfig.get_config_var('PYTHONFRAMEWORKDIR') |
Michael W. Hudson | 0c46c0c | 2002-03-07 09:58:56 +0000 | [diff] [blame] | 607 | exts.append( Extension('gestalt', ['gestaltmodule.c'], |
| 608 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 609 | exts.append( Extension('MacOS', ['macosmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 610 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 611 | exts.append( Extension('icglue', ['icgluemodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 612 | extra_link_args=['-framework', 'Carbon']) ) |
Fred Drake | 38419c0 | 2001-12-06 22:24:47 +0000 | [diff] [blame] | 613 | exts.append( Extension('macfs', |
| 614 | ['macfsmodule.c', |
| 615 | '../Python/getapplbycreator.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 616 | extra_link_args=['-framework', 'Carbon']) ) |
Michael W. Hudson | 0c46c0c | 2002-03-07 09:58:56 +0000 | [diff] [blame] | 617 | exts.append( Extension('_CF', ['cf/_CFmodule.c'], |
| 618 | extra_link_args=['-framework', 'CoreFoundation']) ) |
| 619 | exts.append( Extension('_Res', ['res/_Resmodule.c'], |
| 620 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 621 | exts.append( Extension('_Snd', ['snd/_Sndmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 622 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 2f760c3 | 2001-09-04 21:33:12 +0000 | [diff] [blame] | 623 | if frameworkdir: |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 624 | exts.append( Extension('Nav', ['Nav.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 625 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 626 | exts.append( Extension('_AE', ['ae/_AEmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 627 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 628 | exts.append( Extension('_App', ['app/_Appmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 629 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | dd67a8e | 2001-12-12 23:03:17 +0000 | [diff] [blame] | 630 | exts.append( Extension('_CarbonEvt', ['carbonevt/_CarbonEvtmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 631 | extra_link_args=['-framework', 'Carbon']) ) |
Just van Rossum | e9039b1 | 2001-12-13 13:41:36 +0000 | [diff] [blame] | 632 | exts.append( Extension('_CG', ['cg/_CGmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 633 | extra_link_args=['-framework', 'ApplicationServices', |
Just van Rossum | e9039b1 | 2001-12-13 13:41:36 +0000 | [diff] [blame] | 634 | '-framework', 'Carbon']) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 635 | exts.append( Extension('_Cm', ['cm/_Cmmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 636 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 637 | exts.append( Extension('_Ctl', ['ctl/_Ctlmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 638 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 639 | exts.append( Extension('_Dlg', ['dlg/_Dlgmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 640 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 641 | exts.append( Extension('_Drag', ['drag/_Dragmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 642 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 643 | exts.append( Extension('_Evt', ['evt/_Evtmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 644 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 645 | exts.append( Extension('_Fm', ['fm/_Fmmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 646 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 647 | exts.append( Extension('_Icn', ['icn/_Icnmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 648 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 649 | exts.append( Extension('_List', ['list/_Listmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 650 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 651 | exts.append( Extension('_Menu', ['menu/_Menumodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 652 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 653 | exts.append( Extension('_Mlte', ['mlte/_Mltemodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 654 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 655 | exts.append( Extension('_Qd', ['qd/_Qdmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 656 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 657 | exts.append( Extension('_Qdoffs', ['qdoffs/_Qdoffsmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 658 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 2f760c3 | 2001-09-04 21:33:12 +0000 | [diff] [blame] | 659 | exts.append( Extension('_Qt', ['qt/_Qtmodule.c'], |
Fred Drake | 38419c0 | 2001-12-06 22:24:47 +0000 | [diff] [blame] | 660 | extra_link_args=['-framework', 'QuickTime', |
| 661 | '-framework', 'Carbon']) ) |
Jack Jansen | 796720b | 2002-01-21 23:10:36 +0000 | [diff] [blame] | 662 | exts.append( Extension('_Scrap', ['scrap/_Scrapmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 663 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 664 | exts.append( Extension('_TE', ['te/_TEmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 665 | extra_link_args=['-framework', 'Carbon']) ) |
Jack Jansen | edeea04 | 2001-12-09 23:08:54 +0000 | [diff] [blame] | 666 | # As there is no standardized place (yet) to put user-installed |
| 667 | # Mac libraries on OSX you should put a symlink to your Waste |
| 668 | # installation in the same folder as your python source tree. |
| 669 | # Or modify the next two lines:-) |
| 670 | waste_incs = find_file("WASTE.h", [], ["../waste/C_C++ Headers"]) |
| 671 | waste_libs = find_library_file(self.compiler, "WASTE", [], |
| 672 | ["../waste/Static Libraries"]) |
| 673 | if waste_incs != None and waste_libs != None: |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 674 | exts.append( Extension('waste', |
Jack Jansen | edeea04 | 2001-12-09 23:08:54 +0000 | [diff] [blame] | 675 | ['waste/wastemodule.c', |
| 676 | 'Mac/Wastemods/WEObjectHandlers.c', |
| 677 | 'Mac/Wastemods/WETabHooks.c', |
| 678 | 'Mac/Wastemods/WETabs.c' |
| 679 | ], |
| 680 | include_dirs = waste_incs + ['Mac/Wastemods'], |
| 681 | library_dirs = waste_libs, |
| 682 | libraries = ['WASTE'], |
| 683 | extra_link_args = ['-framework', 'Carbon'], |
| 684 | ) ) |
Jack Jansen | 666b1e7 | 2001-10-31 12:11:48 +0000 | [diff] [blame] | 685 | exts.append( Extension('_Win', ['win/_Winmodule.c'], |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 686 | extra_link_args=['-framework', 'Carbon']) ) |
| 687 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 688 | self.extensions.extend(exts) |
| 689 | |
| 690 | # Call the method for detecting whether _tkinter can be compiled |
| 691 | self.detect_tkinter(inc_dirs, lib_dirs) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 692 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 693 | |
| 694 | def detect_tkinter(self, inc_dirs, lib_dirs): |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 695 | # The _tkinter module. |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 696 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 697 | # 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] | 698 | # The versions with dots are used on Unix, and the versions without |
| 699 | # dots on Windows, for detection by cygwin. |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 700 | tcllib = tklib = tcl_includes = tk_includes = None |
Martin v. Löwis | 3db5b8c | 2001-07-24 06:54:01 +0000 | [diff] [blame] | 701 | for version in ['8.4', '84', '8.3', '83', '8.2', |
| 702 | '82', '8.1', '81', '8.0', '80']: |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 703 | tklib = self.compiler.find_library_file(lib_dirs, |
| 704 | 'tk' + version ) |
| 705 | tcllib = self.compiler.find_library_file(lib_dirs, |
| 706 | 'tcl' + version ) |
| 707 | if tklib and tcllib: |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 708 | # Exit the loop when we've found the Tcl/Tk libraries |
| 709 | break |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 710 | |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 711 | # Now check for the header files |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 712 | if tklib and tcllib: |
| 713 | # Check for the include files on Debian, where |
| 714 | # they're put in /usr/include/{tcl,tk}X.Y |
Andrew M. Kuchling | 9a3fd8c | 2001-02-06 22:15:27 +0000 | [diff] [blame] | 715 | debian_tcl_include = [ '/usr/include/tcl' + version ] |
Fred Drake | 38419c0 | 2001-12-06 22:24:47 +0000 | [diff] [blame] | 716 | debian_tk_include = [ '/usr/include/tk' + version ] + \ |
| 717 | debian_tcl_include |
Andrew M. Kuchling | 9a3fd8c | 2001-02-06 22:15:27 +0000 | [diff] [blame] | 718 | tcl_includes = find_file('tcl.h', inc_dirs, debian_tcl_include) |
| 719 | tk_includes = find_file('tk.h', inc_dirs, debian_tk_include) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 720 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 721 | if (tcllib is None or tklib is None and |
| 722 | tcl_includes is None or tk_includes is None): |
| 723 | # Something's missing, so give up |
| 724 | return |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 725 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 726 | # OK... everything seems to be present for Tcl/Tk. |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 727 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 728 | include_dirs = [] ; libs = [] ; defs = [] ; added_lib_dirs = [] |
| 729 | for dir in tcl_includes + tk_includes: |
| 730 | if dir not in include_dirs: |
| 731 | include_dirs.append(dir) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 732 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 733 | # Check for various platform-specific directories |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 734 | platform = self.get_platform() |
| 735 | if platform == 'sunos5': |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 736 | include_dirs.append('/usr/openwin/include') |
| 737 | added_lib_dirs.append('/usr/openwin/lib') |
| 738 | elif os.path.exists('/usr/X11R6/include'): |
| 739 | include_dirs.append('/usr/X11R6/include') |
| 740 | added_lib_dirs.append('/usr/X11R6/lib') |
| 741 | elif os.path.exists('/usr/X11R5/include'): |
| 742 | include_dirs.append('/usr/X11R5/include') |
| 743 | added_lib_dirs.append('/usr/X11R5/lib') |
| 744 | else: |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 745 | # Assume default location for X11 |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 746 | include_dirs.append('/usr/X11/include') |
| 747 | added_lib_dirs.append('/usr/X11/lib') |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 748 | |
Andrew M. Kuchling | 89fb72d | 2001-09-18 20:32:13 +0000 | [diff] [blame] | 749 | # If Cygwin, then verify that X is installed before proceeding |
| 750 | if platform == 'cygwin': |
| 751 | x11_inc = find_file('X11/Xlib.h', [], inc_dirs) |
| 752 | if x11_inc is None: |
| 753 | # X header files missing, so give up |
| 754 | return |
| 755 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 756 | # Check for BLT extension |
Fred Drake | 38419c0 | 2001-12-06 22:24:47 +0000 | [diff] [blame] | 757 | if self.compiler.find_library_file(lib_dirs + added_lib_dirs, |
| 758 | 'BLT8.0'): |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 759 | defs.append( ('WITH_BLT', 1) ) |
| 760 | libs.append('BLT8.0') |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 761 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 762 | # Add the Tcl/Tk libraries |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 763 | libs.append('tk'+version) |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 764 | libs.append('tcl'+version) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 765 | |
Andrew M. Kuchling | 34febf5 | 2001-01-24 03:31:07 +0000 | [diff] [blame] | 766 | if platform in ['aix3', 'aix4']: |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 767 | libs.append('ld') |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 768 | |
Martin v. Löwis | 3db5b8c | 2001-07-24 06:54:01 +0000 | [diff] [blame] | 769 | # Finally, link with the X11 libraries (not appropriate on cygwin) |
| 770 | if platform != "cygwin": |
| 771 | libs.append('X11') |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 772 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 773 | ext = Extension('_tkinter', ['_tkinter.c', 'tkappinit.c'], |
| 774 | define_macros=[('WITH_APPINIT', 1)] + defs, |
| 775 | include_dirs = include_dirs, |
| 776 | libraries = libs, |
| 777 | library_dirs = added_lib_dirs, |
| 778 | ) |
| 779 | self.extensions.append(ext) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 780 | |
Andrew M. Kuchling | fbe7376 | 2001-01-18 18:44:20 +0000 | [diff] [blame] | 781 | # XXX handle these, but how to detect? |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 782 | # *** Uncomment and edit for PIL (TkImaging) extension only: |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 783 | # -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \ |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 784 | # *** Uncomment and edit for TOGL extension only: |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 785 | # -DWITH_TOGL togl.c \ |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 786 | # *** Uncomment these for TOGL extension only: |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 787 | # -lGL -lGLU -lXext -lXmu \ |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 788 | |
Andrew M. Kuchling | f52d27e | 2001-05-21 20:29:27 +0000 | [diff] [blame] | 789 | class PyBuildInstall(install): |
| 790 | # Suppress the warning about installation into the lib_dynload |
| 791 | # directory, which is not in sys.path when running Python during |
| 792 | # installation: |
| 793 | def initialize_options (self): |
| 794 | install.initialize_options(self) |
| 795 | self.warn_dir=0 |
Michael W. Hudson | 5b10910 | 2002-01-23 15:04:41 +0000 | [diff] [blame] | 796 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 797 | def main(): |
Andrew M. Kuchling | 6268669 | 2001-05-21 20:48:09 +0000 | [diff] [blame] | 798 | # turn off warnings when deprecated modules are imported |
| 799 | import warnings |
| 800 | warnings.filterwarnings("ignore",category=DeprecationWarning) |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 801 | setup(name = 'Python standard library', |
Neil Schemenauer | e7e2ece | 2001-01-17 21:58:00 +0000 | [diff] [blame] | 802 | version = '%d.%d' % sys.version_info[:2], |
Andrew M. Kuchling | f52d27e | 2001-05-21 20:29:27 +0000 | [diff] [blame] | 803 | cmdclass = {'build_ext':PyBuildExt, 'install':PyBuildInstall}, |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 804 | # The struct module is defined here, because build_ext won't be |
| 805 | # called unless there's at least one extension module defined. |
Andrew M. Kuchling | aece427 | 2001-02-28 20:56:49 +0000 | [diff] [blame] | 806 | ext_modules=[Extension('struct', ['structmodule.c'])], |
| 807 | |
| 808 | # Scripts to install |
| 809 | scripts = ['Tools/scripts/pydoc'] |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 810 | ) |
Fredrik Lundh | ade711a | 2001-01-24 08:00:28 +0000 | [diff] [blame] | 811 | |
Andrew M. Kuchling | 00e0f21 | 2001-01-17 15:23:23 +0000 | [diff] [blame] | 812 | # --install-platlib |
| 813 | if __name__ == '__main__': |
| 814 | sysconfig.set_python_build() |
| 815 | main() |