| 
									
										
										
										
											2001-07-18 18:39:56 +00:00
										 |  |  | """Provide access to Python's configuration information.  The specific
 | 
					
						
							|  |  |  | configuration variables available depend heavily on the platform and | 
					
						
							|  |  |  | configuration.  The values may be retrieved using | 
					
						
							|  |  |  | get_config_var(name), and the list of variables is available via | 
					
						
							|  |  |  | get_config_vars().keys().  Additional convenience functions are also | 
					
						
							|  |  |  | available. | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Written by:   Fred L. Drake, Jr. | 
					
						
							|  |  |  | Email:        <fdrake@acm.org> | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-03 00:44:30 +00:00
										 |  |  | __revision__ = "$Id$" | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-06 14:46:06 +00:00
										 |  |  | import os | 
					
						
							|  |  |  | import re | 
					
						
							| 
									
										
										
										
											2002-11-13 17:03:05 +00:00
										 |  |  | import string | 
					
						
							| 
									
										
										
										
											1999-01-06 14:46:06 +00:00
										 |  |  | import sys | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-09 15:54:52 +00:00
										 |  |  | from errors import DistutilsPlatformError | 
					
						
							| 
									
										
										
										
											2000-02-02 00:05:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-15 01:15:08 +00:00
										 |  |  | # These are needed in a couple of spots, so just compute them once. | 
					
						
							| 
									
										
										
										
											2000-04-10 01:15:06 +00:00
										 |  |  | PREFIX = os.path.normpath(sys.prefix) | 
					
						
							|  |  |  | EXEC_PREFIX = os.path.normpath(sys.exec_prefix) | 
					
						
							| 
									
										
										
										
											2000-03-09 15:54:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-04 15:28:21 +00:00
										 |  |  | # python_build: (Boolean) if true, we're either building Python or | 
					
						
							|  |  |  | # building an extension with an un-installed Python, so we use | 
					
						
							|  |  |  | # different (hard-wired) directories. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | argv0_path = os.path.dirname(os.path.abspath(sys.executable)) | 
					
						
							|  |  |  | landmark = os.path.join(argv0_path, "Modules", "Setup") | 
					
						
							| 
									
										
										
										
											2002-07-12 09:16:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | python_build = os.path.isfile(landmark) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-04 15:28:21 +00:00
										 |  |  | del argv0_path, landmark | 
					
						
							| 
									
										
										
										
											2000-03-09 15:54:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-02 20:03:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-14 01:43:00 +00:00
										 |  |  | def get_python_version (): | 
					
						
							|  |  |  |     """Return a string containing the major and minor Python version,
 | 
					
						
							|  |  |  |     leaving off the patchlevel.  Sample return values could be '1.5' | 
					
						
							|  |  |  |     or '2.2'. | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     return sys.version[:3] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-10 01:17:49 +00:00
										 |  |  | def get_python_inc(plat_specific=0, prefix=None): | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  |     """Return the directory containing installed Python header files.
 | 
					
						
							| 
									
										
										
										
											2000-03-09 15:54:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     If 'plat_specific' is false (the default), this is the path to the | 
					
						
							|  |  |  |     non-platform-specific header files, i.e. Python.h and so on; | 
					
						
							|  |  |  |     otherwise, this is the path to platform-specific header files | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  |     (namely pyconfig.h). | 
					
						
							| 
									
										
										
										
											2000-03-09 15:54:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-10 01:17:49 +00:00
										 |  |  |     If 'prefix' is supplied, use it instead of sys.prefix or | 
					
						
							|  |  |  |     sys.exec_prefix -- i.e., ignore 'plat_specific'. | 
					
						
							| 
									
										
										
										
											2001-12-06 20:51:35 +00:00
										 |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2000-04-10 01:17:49 +00:00
										 |  |  |     if prefix is None: | 
					
						
							| 
									
										
										
										
											2001-07-18 18:39:56 +00:00
										 |  |  |         prefix = plat_specific and EXEC_PREFIX or PREFIX | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  |     if os.name == "posix": | 
					
						
							| 
									
										
										
										
											2001-01-17 15:16:52 +00:00
										 |  |  |         if python_build: | 
					
						
							| 
									
										
										
										
											2002-06-04 15:28:21 +00:00
										 |  |  |             base = os.path.dirname(os.path.abspath(sys.executable)) | 
					
						
							|  |  |  |             if plat_specific: | 
					
						
							|  |  |  |                 inc_dir = base | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 inc_dir = os.path.join(base, "Include") | 
					
						
							|  |  |  |                 if not os.path.exists(inc_dir): | 
					
						
							|  |  |  |                     inc_dir = os.path.join(os.path.dirname(base), "Include") | 
					
						
							|  |  |  |             return inc_dir | 
					
						
							| 
									
										
										
										
											2000-04-10 01:15:06 +00:00
										 |  |  |         return os.path.join(prefix, "include", "python" + sys.version[:3]) | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  |     elif os.name == "nt": | 
					
						
							| 
									
										
										
										
											2001-08-02 20:03:12 +00:00
										 |  |  |         return os.path.join(prefix, "include") | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  |     elif os.name == "mac": | 
					
						
							| 
									
										
										
										
											2002-06-26 22:05:33 +00:00
										 |  |  |         if plat_specific: | 
					
						
							| 
									
										
										
										
											2003-10-24 20:09:23 +00:00
										 |  |  |             return os.path.join(prefix, "Mac", "Include") | 
					
						
							| 
									
										
										
										
											2002-06-26 22:05:33 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2003-10-24 20:09:23 +00:00
										 |  |  |             return os.path.join(prefix, "Include") | 
					
						
							| 
									
										
										
										
											2002-01-31 18:56:00 +00:00
										 |  |  |     elif os.name == "os2": | 
					
						
							|  |  |  |         return os.path.join(prefix, "Include") | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2001-07-18 18:39:56 +00:00
										 |  |  |         raise DistutilsPlatformError( | 
					
						
							|  |  |  |             "I don't know where Python installs its C header files " | 
					
						
							|  |  |  |             "on platform '%s'" % os.name) | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-10 01:17:49 +00:00
										 |  |  | def get_python_lib(plat_specific=0, standard_lib=0, prefix=None): | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  |     """Return the directory containing the Python library (standard or
 | 
					
						
							| 
									
										
										
										
											2000-03-09 15:54:52 +00:00
										 |  |  |     site additions). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     If 'plat_specific' is true, return the directory containing | 
					
						
							|  |  |  |     platform-specific modules, i.e. any module from a non-pure-Python | 
					
						
							|  |  |  |     module distribution; otherwise, return the platform-shared library | 
					
						
							|  |  |  |     directory.  If 'standard_lib' is true, return the directory | 
					
						
							|  |  |  |     containing standard Python library modules; otherwise, return the | 
					
						
							|  |  |  |     directory for site-specific modules. | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-10 01:17:49 +00:00
										 |  |  |     If 'prefix' is supplied, use it instead of sys.prefix or | 
					
						
							|  |  |  |     sys.exec_prefix -- i.e., ignore 'plat_specific'. | 
					
						
							| 
									
										
										
										
											2000-03-09 15:54:52 +00:00
										 |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2000-04-10 01:17:49 +00:00
										 |  |  |     if prefix is None: | 
					
						
							| 
									
										
										
										
											2001-07-18 18:39:56 +00:00
										 |  |  |         prefix = plat_specific and EXEC_PREFIX or PREFIX | 
					
						
							| 
									
										
										
										
											2001-08-02 20:03:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  |     if os.name == "posix": | 
					
						
							| 
									
										
										
										
											2000-04-10 01:15:06 +00:00
										 |  |  |         libpython = os.path.join(prefix, | 
					
						
							| 
									
										
										
										
											2002-11-14 01:43:00 +00:00
										 |  |  |                                  "lib", "python" + get_python_version()) | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  |         if standard_lib: | 
					
						
							|  |  |  |             return libpython | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2000-03-09 15:54:52 +00:00
										 |  |  |             return os.path.join(libpython, "site-packages") | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     elif os.name == "nt": | 
					
						
							|  |  |  |         if standard_lib: | 
					
						
							| 
									
										
										
										
											2001-08-02 20:03:12 +00:00
										 |  |  |             return os.path.join(prefix, "Lib") | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2001-08-23 20:53:27 +00:00
										 |  |  |             if sys.version < "2.2": | 
					
						
							|  |  |  |                 return prefix | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 return os.path.join(PREFIX, "Lib", "site-packages") | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     elif os.name == "mac": | 
					
						
							| 
									
										
										
										
											2000-08-02 01:49:40 +00:00
										 |  |  |         if plat_specific: | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  |             if standard_lib: | 
					
						
							| 
									
										
										
										
											2001-09-04 12:01:49 +00:00
										 |  |  |                 return os.path.join(prefix, "Lib", "lib-dynload") | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2001-09-04 12:01:49 +00:00
										 |  |  |                 return os.path.join(prefix, "Lib", "site-packages") | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  |         else: | 
					
						
							|  |  |  |             if standard_lib: | 
					
						
							| 
									
										
										
										
											2001-08-02 20:03:12 +00:00
										 |  |  |                 return os.path.join(prefix, "Lib") | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2001-09-04 12:01:49 +00:00
										 |  |  |                 return os.path.join(prefix, "Lib", "site-packages") | 
					
						
							| 
									
										
										
										
											2002-01-31 18:56:00 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     elif os.name == "os2": | 
					
						
							|  |  |  |         if standard_lib: | 
					
						
							|  |  |  |             return os.path.join(PREFIX, "Lib") | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             return os.path.join(PREFIX, "Lib", "site-packages") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2001-07-18 18:39:56 +00:00
										 |  |  |         raise DistutilsPlatformError( | 
					
						
							|  |  |  |             "I don't know where Python installs its library " | 
					
						
							|  |  |  |             "on platform '%s'" % os.name) | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-18 18:39:56 +00:00
										 |  |  | def customize_compiler(compiler): | 
					
						
							| 
									
										
										
										
											2001-08-02 20:03:12 +00:00
										 |  |  |     """Do any platform-specific customization of a CCompiler instance.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Mainly needed on Unix, so we can plug in the information that | 
					
						
							|  |  |  |     varies across Unices and is stored in Python's Makefile. | 
					
						
							| 
									
										
										
										
											2000-06-25 02:09:14 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |     if compiler.compiler_type == "unix": | 
					
						
							| 
									
										
										
										
											2003-02-10 14:02:33 +00:00
										 |  |  |         (cc, cxx, opt, basecflags, ccshared, ldshared, so_ext) = \ | 
					
						
							|  |  |  |             get_config_vars('CC', 'CXX', 'OPT', 'BASECFLAGS', 'CCSHARED', 'LDSHARED', 'SO') | 
					
						
							| 
									
										
										
										
											2000-09-15 01:15:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-04 19:53:24 +00:00
										 |  |  |         if os.environ.has_key('CC'): | 
					
						
							|  |  |  |             cc = os.environ['CC'] | 
					
						
							| 
									
										
											  
											
												This patch fixes the following bugs:
[#413582] g++ must be called for c++ extensions
[#454030] distutils cannot link C++ code with GCC
topdir = "Lib/distutils"
* bcppcompiler.py
  (BCPPCompiler.create_static_lib): Fixed prototype, removing extra_preargs
  and extra_postargs parameters. Included target_lang parameter.
  (BCPPCompiler.link): Included target_lang parameter.
* msvccompiler.py
  (MSVCCompiler.create_static_lib): Fixed prototype, removing extra_preargs
  and extra_postargs parameters. Included target_lang parameter.
  (MSVCCompiler.link): Included target_lang parameter.
* ccompiler.py
  (CCompiler): New language_map and language_order attributes, used by
  CCompiler.detect_language().
  (CCompiler.detect_language): New method, will return the language of
  a given source, or list of sources. Individual source language is
  detected using the language_map dict. When mixed sources are used,
  language_order will stablish the language precedence.
  (CCompiler.create_static_lib, CCompiler.link, CCompiler.link_executable,
   CCompiler.link_shared_object, CCompiler.link_shared_lib):
  Inlcuded target_lang parameter.
* cygwinccompiler.py
  (CygwinCCompiler.link): Included target_lang parameter.
* emxccompiler.py
  (EMXCCompiler.link): Included target_lang parameter.
* mwerkscompiler.py
  (MWerksCompiler.link): Included target_lang parameter.
* extension.py
  (Extension.__init__): New 'language' parameter/attribute, initialized
  to None by default. If provided will overlap the automatic detection
  made by CCompiler.detect_language(), in build_ext command.
* sysconfig.py
  (customize_compiler): Check Makefile for CXX option, and also the
  environment variable CXX. Use the resulting value in the 'compiler_cxx'
  parameter of compiler.set_executables().
* unixccompiler.py
  (UnixCCompiler): Included 'compiler_cxx' in executables dict, defaulting
  to 'cc'.
  (UnixCCompiler.create_static_lib): Included target_lang parameter.
  (UnixCCompiler.link): Included target_lang parameter, and made
  linker command use compiler_cxx, if target_lang is 'c++'.
* command/build_ext.py
  (build_ext.build_extension): Pass new ext.language attribute
  to compiler.link_shared_object()'s target_lang parameter. If
  ext.language is not provided, detect language using
  compiler.detect_language(sources) instead.
* command/config.py
  (config._link): Pass already available lang parameter as target_lang
  parameter of compiler.link_executable().
											
										 
											2002-11-05 16:12:02 +00:00
										 |  |  |         if os.environ.has_key('CXX'): | 
					
						
							|  |  |  |             cxx = os.environ['CXX'] | 
					
						
							| 
									
										
										
										
											2002-11-04 19:53:24 +00:00
										 |  |  |         if os.environ.has_key('CPP'): | 
					
						
							|  |  |  |             cpp = os.environ['CPP'] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             cpp = cc + " -E"           # not always | 
					
						
							|  |  |  |         if os.environ.has_key('LDFLAGS'): | 
					
						
							|  |  |  |             ldshared = ldshared + ' ' + os.environ['LDFLAGS'] | 
					
						
							| 
									
										
										
										
											2003-02-10 14:02:33 +00:00
										 |  |  |         if basecflags: | 
					
						
							| 
									
										
										
										
											2003-10-24 20:09:23 +00:00
										 |  |  |             opt = basecflags + ' ' + opt | 
					
						
							| 
									
										
										
										
											2002-11-04 19:53:24 +00:00
										 |  |  |         if os.environ.has_key('CFLAGS'): | 
					
						
							|  |  |  |             opt = opt + ' ' + os.environ['CFLAGS'] | 
					
						
							|  |  |  |             ldshared = ldshared + ' ' + os.environ['CFLAGS'] | 
					
						
							|  |  |  |         if os.environ.has_key('CPPFLAGS'): | 
					
						
							|  |  |  |             cpp = cpp + ' ' + os.environ['CPPFLAGS'] | 
					
						
							|  |  |  |             opt = opt + ' ' + os.environ['CPPFLAGS'] | 
					
						
							|  |  |  |             ldshared = ldshared + ' ' + os.environ['CPPFLAGS'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-15 01:15:08 +00:00
										 |  |  |         cc_cmd = cc + ' ' + opt | 
					
						
							| 
									
										
										
										
											2000-06-25 02:09:14 +00:00
										 |  |  |         compiler.set_executables( | 
					
						
							| 
									
										
										
										
											2002-11-04 19:53:24 +00:00
										 |  |  |             preprocessor=cpp, | 
					
						
							| 
									
										
										
										
											2000-06-25 02:09:14 +00:00
										 |  |  |             compiler=cc_cmd, | 
					
						
							| 
									
										
										
										
											2000-09-15 01:15:08 +00:00
										 |  |  |             compiler_so=cc_cmd + ' ' + ccshared, | 
					
						
							| 
									
										
											  
											
												This patch fixes the following bugs:
[#413582] g++ must be called for c++ extensions
[#454030] distutils cannot link C++ code with GCC
topdir = "Lib/distutils"
* bcppcompiler.py
  (BCPPCompiler.create_static_lib): Fixed prototype, removing extra_preargs
  and extra_postargs parameters. Included target_lang parameter.
  (BCPPCompiler.link): Included target_lang parameter.
* msvccompiler.py
  (MSVCCompiler.create_static_lib): Fixed prototype, removing extra_preargs
  and extra_postargs parameters. Included target_lang parameter.
  (MSVCCompiler.link): Included target_lang parameter.
* ccompiler.py
  (CCompiler): New language_map and language_order attributes, used by
  CCompiler.detect_language().
  (CCompiler.detect_language): New method, will return the language of
  a given source, or list of sources. Individual source language is
  detected using the language_map dict. When mixed sources are used,
  language_order will stablish the language precedence.
  (CCompiler.create_static_lib, CCompiler.link, CCompiler.link_executable,
   CCompiler.link_shared_object, CCompiler.link_shared_lib):
  Inlcuded target_lang parameter.
* cygwinccompiler.py
  (CygwinCCompiler.link): Included target_lang parameter.
* emxccompiler.py
  (EMXCCompiler.link): Included target_lang parameter.
* mwerkscompiler.py
  (MWerksCompiler.link): Included target_lang parameter.
* extension.py
  (Extension.__init__): New 'language' parameter/attribute, initialized
  to None by default. If provided will overlap the automatic detection
  made by CCompiler.detect_language(), in build_ext command.
* sysconfig.py
  (customize_compiler): Check Makefile for CXX option, and also the
  environment variable CXX. Use the resulting value in the 'compiler_cxx'
  parameter of compiler.set_executables().
* unixccompiler.py
  (UnixCCompiler): Included 'compiler_cxx' in executables dict, defaulting
  to 'cc'.
  (UnixCCompiler.create_static_lib): Included target_lang parameter.
  (UnixCCompiler.link): Included target_lang parameter, and made
  linker command use compiler_cxx, if target_lang is 'c++'.
* command/build_ext.py
  (build_ext.build_extension): Pass new ext.language attribute
  to compiler.link_shared_object()'s target_lang parameter. If
  ext.language is not provided, detect language using
  compiler.detect_language(sources) instead.
* command/config.py
  (config._link): Pass already available lang parameter as target_lang
  parameter of compiler.link_executable().
											
										 
											2002-11-05 16:12:02 +00:00
										 |  |  |             compiler_cxx=cxx, | 
					
						
							| 
									
										
										
										
											2000-09-15 01:15:08 +00:00
										 |  |  |             linker_so=ldshared, | 
					
						
							|  |  |  |             linker_exe=cc) | 
					
						
							| 
									
										
										
										
											2000-06-25 02:09:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-15 01:15:08 +00:00
										 |  |  |         compiler.shared_lib_extension = so_ext | 
					
						
							| 
									
										
										
										
											2000-06-25 02:09:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-06 14:46:06 +00:00
										 |  |  | def get_config_h_filename(): | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  |     """Return full pathname of installed pyconfig.h file.""" | 
					
						
							| 
									
										
										
										
											2001-08-02 20:03:12 +00:00
										 |  |  |     if python_build: | 
					
						
							|  |  |  |         inc_dir = os.curdir | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         inc_dir = get_python_inc(plat_specific=1) | 
					
						
							| 
									
										
										
										
											2001-07-26 18:06:58 +00:00
										 |  |  |     if sys.version < '2.2': | 
					
						
							|  |  |  |         config_h = 'config.h' | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         # The name of the config.h file changed in 2.2 | 
					
						
							|  |  |  |         config_h = 'pyconfig.h' | 
					
						
							|  |  |  |     return os.path.join(inc_dir, config_h) | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-06 14:46:06 +00:00
										 |  |  | def get_makefile_filename(): | 
					
						
							| 
									
										
										
										
											1999-01-06 16:28:34 +00:00
										 |  |  |     """Return full pathname of installed Makefile from the Python build.""" | 
					
						
							| 
									
										
										
										
											2001-01-17 15:16:52 +00:00
										 |  |  |     if python_build: | 
					
						
							| 
									
										
										
										
											2002-06-04 15:28:21 +00:00
										 |  |  |         return os.path.join(os.path.dirname(sys.executable), "Makefile") | 
					
						
							| 
									
										
										
										
											2000-03-09 15:54:52 +00:00
										 |  |  |     lib_dir = get_python_lib(plat_specific=1, standard_lib=1) | 
					
						
							|  |  |  |     return os.path.join(lib_dir, "config", "Makefile") | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-06 14:46:06 +00:00
										 |  |  | def parse_config_h(fp, g=None): | 
					
						
							| 
									
										
										
										
											2000-03-09 15:54:52 +00:00
										 |  |  |     """Parse a config.h-style file.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     A dictionary containing name/value pairs is returned.  If an | 
					
						
							|  |  |  |     optional dictionary is passed in as the second argument, it is | 
					
						
							|  |  |  |     used instead of a new dictionary. | 
					
						
							| 
									
										
										
										
											1999-01-06 16:28:34 +00:00
										 |  |  |     """
 | 
					
						
							| 
									
										
										
										
											1999-01-06 14:46:06 +00:00
										 |  |  |     if g is None: | 
					
						
							|  |  |  |         g = {} | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  |     define_rx = re.compile("#define ([A-Z][A-Z0-9_]+) (.*)\n") | 
					
						
							|  |  |  |     undef_rx = re.compile("/[*] #undef ([A-Z][A-Z0-9_]+) [*]/\n") | 
					
						
							| 
									
										
										
										
											1999-01-06 14:46:06 +00:00
										 |  |  |     # | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  |     while 1: | 
					
						
							|  |  |  |         line = fp.readline() | 
					
						
							|  |  |  |         if not line: | 
					
						
							|  |  |  |             break | 
					
						
							|  |  |  |         m = define_rx.match(line) | 
					
						
							|  |  |  |         if m: | 
					
						
							|  |  |  |             n, v = m.group(1, 2) | 
					
						
							| 
									
										
										
										
											2002-11-05 20:11:08 +00:00
										 |  |  |             try: v = int(v) | 
					
						
							| 
									
										
										
										
											1998-12-22 12:42:04 +00:00
										 |  |  |             except ValueError: pass | 
					
						
							|  |  |  |             g[n] = v | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  |         else: | 
					
						
							|  |  |  |             m = undef_rx.match(line) | 
					
						
							|  |  |  |             if m: | 
					
						
							|  |  |  |                 g[m.group(1)] = 0 | 
					
						
							| 
									
										
										
										
											1999-01-06 14:46:06 +00:00
										 |  |  |     return g | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-17 00:53:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Regexes needed for parsing Makefile (and similar syntaxes, | 
					
						
							|  |  |  | # like old-style Setup files). | 
					
						
							|  |  |  | _variable_rx = re.compile("([a-zA-Z][a-zA-Z0-9_]+)\s*=\s*(.*)") | 
					
						
							|  |  |  | _findvar1_rx = re.compile(r"\$\(([A-Za-z][A-Za-z0-9_]*)\)") | 
					
						
							|  |  |  | _findvar2_rx = re.compile(r"\${([A-Za-z][A-Za-z0-9_]*)}") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-15 00:03:13 +00:00
										 |  |  | def parse_makefile(fn, g=None): | 
					
						
							| 
									
										
										
										
											2000-03-09 15:54:52 +00:00
										 |  |  |     """Parse a Makefile-style file.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     A dictionary containing name/value pairs is returned.  If an | 
					
						
							|  |  |  |     optional dictionary is passed in as the second argument, it is | 
					
						
							|  |  |  |     used instead of a new dictionary. | 
					
						
							| 
									
										
										
										
											1999-01-06 16:28:34 +00:00
										 |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2000-09-15 00:03:13 +00:00
										 |  |  |     from distutils.text_file import TextFile | 
					
						
							| 
									
										
										
										
											2000-09-17 00:53:02 +00:00
										 |  |  |     fp = TextFile(fn, strip_comments=1, skip_blanks=1, join_lines=1) | 
					
						
							| 
									
										
										
										
											2000-09-15 00:03:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-06 14:46:06 +00:00
										 |  |  |     if g is None: | 
					
						
							|  |  |  |         g = {} | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  |     done = {} | 
					
						
							|  |  |  |     notdone = {} | 
					
						
							| 
									
										
										
										
											2000-09-15 00:03:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  |     while 1: | 
					
						
							|  |  |  |         line = fp.readline() | 
					
						
							| 
									
										
										
										
											2000-09-17 00:53:02 +00:00
										 |  |  |         if line is None:                # eof | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  |             break | 
					
						
							| 
									
										
										
										
											2000-09-17 00:53:02 +00:00
										 |  |  |         m = _variable_rx.match(line) | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  |         if m: | 
					
						
							|  |  |  |             n, v = m.group(1, 2) | 
					
						
							| 
									
										
										
										
											2002-11-13 17:03:05 +00:00
										 |  |  |             v = string.strip(v) | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  |             if "$" in v: | 
					
						
							|  |  |  |                 notdone[n] = v | 
					
						
							|  |  |  |             else: | 
					
						
							| 
									
										
										
										
											2002-11-05 20:11:08 +00:00
										 |  |  |                 try: v = int(v) | 
					
						
							| 
									
										
										
										
											1998-12-22 12:42:04 +00:00
										 |  |  |                 except ValueError: pass | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  |                 done[n] = v | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # do variable interpolation here | 
					
						
							|  |  |  |     while notdone: | 
					
						
							|  |  |  |         for name in notdone.keys(): | 
					
						
							|  |  |  |             value = notdone[name] | 
					
						
							| 
									
										
										
										
											2000-09-17 00:53:02 +00:00
										 |  |  |             m = _findvar1_rx.search(value) or _findvar2_rx.search(value) | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  |             if m: | 
					
						
							|  |  |  |                 n = m.group(1) | 
					
						
							|  |  |  |                 if done.has_key(n): | 
					
						
							|  |  |  |                     after = value[m.end():] | 
					
						
							| 
									
										
										
										
											2001-01-16 16:33:28 +00:00
										 |  |  |                     value = value[:m.start()] + str(done[n]) + after | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  |                     if "$" in after: | 
					
						
							|  |  |  |                         notdone[name] = value | 
					
						
							|  |  |  |                     else: | 
					
						
							| 
									
										
										
										
											2002-11-05 20:11:08 +00:00
										 |  |  |                         try: value = int(value) | 
					
						
							| 
									
										
										
										
											2001-01-16 16:33:28 +00:00
										 |  |  |                         except ValueError: | 
					
						
							| 
									
										
										
										
											2002-11-13 17:03:05 +00:00
										 |  |  |                             done[name] = string.strip(value) | 
					
						
							| 
									
										
										
										
											2001-01-16 16:33:28 +00:00
										 |  |  |                         else: | 
					
						
							|  |  |  |                             done[name] = value | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  |                         del notdone[name] | 
					
						
							|  |  |  |                 elif notdone.has_key(n): | 
					
						
							|  |  |  |                     # get it on a subsequent round | 
					
						
							|  |  |  |                     pass | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     done[n] = "" | 
					
						
							|  |  |  |                     after = value[m.end():] | 
					
						
							|  |  |  |                     value = value[:m.start()] + after | 
					
						
							|  |  |  |                     if "$" in after: | 
					
						
							|  |  |  |                         notdone[name] = value | 
					
						
							|  |  |  |                     else: | 
					
						
							| 
									
										
										
										
											2002-11-05 20:11:08 +00:00
										 |  |  |                         try: value = int(value) | 
					
						
							| 
									
										
										
										
											2001-01-16 16:33:28 +00:00
										 |  |  |                         except ValueError: | 
					
						
							| 
									
										
										
										
											2002-11-13 17:03:05 +00:00
										 |  |  |                             done[name] = string.strip(value) | 
					
						
							| 
									
										
										
										
											2001-01-16 16:33:28 +00:00
										 |  |  |                         else: | 
					
						
							|  |  |  |                             done[name] = value | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  |                         del notdone[name] | 
					
						
							|  |  |  |             else: | 
					
						
							| 
									
										
										
										
											1998-12-22 12:42:04 +00:00
										 |  |  |                 # bogus variable reference; just drop it since we can't deal | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  |                 del notdone[name] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-17 00:53:02 +00:00
										 |  |  |     fp.close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  |     # save the results in the global dictionary | 
					
						
							|  |  |  |     g.update(done) | 
					
						
							| 
									
										
										
										
											1999-01-06 14:46:06 +00:00
										 |  |  |     return g | 
					
						
							| 
									
										
										
										
											1998-12-18 23:46:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-17 00:53:02 +00:00
										 |  |  | def expand_makefile_vars(s, vars): | 
					
						
							|  |  |  |     """Expand Makefile-style variables -- "${foo}" or "$(foo)" -- in
 | 
					
						
							|  |  |  |     'string' according to 'vars' (a dictionary mapping variable names to | 
					
						
							|  |  |  |     values).  Variables not present in 'vars' are silently expanded to the | 
					
						
							|  |  |  |     empty string.  The variable values in 'vars' should not contain further | 
					
						
							|  |  |  |     variable expansions; if 'vars' is the output of 'parse_makefile()', | 
					
						
							|  |  |  |     you're fine.  Returns a variable-expanded version of 's'. | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # This algorithm does multiple expansion, so if vars['foo'] contains | 
					
						
							|  |  |  |     # "${bar}", it will expand ${foo} to ${bar}, and then expand | 
					
						
							|  |  |  |     # ${bar}... and so forth.  This is fine as long as 'vars' comes from | 
					
						
							|  |  |  |     # 'parse_makefile()', which takes care of such expansions eagerly, | 
					
						
							|  |  |  |     # according to make's variable expansion semantics. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while 1: | 
					
						
							|  |  |  |         m = _findvar1_rx.search(s) or _findvar2_rx.search(s) | 
					
						
							|  |  |  |         if m: | 
					
						
							|  |  |  |             (beg, end) = m.span() | 
					
						
							|  |  |  |             s = s[0:beg] + vars.get(m.group(1)) + s[end:] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             break | 
					
						
							|  |  |  |     return s | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-15 01:15:08 +00:00
										 |  |  | _config_vars = None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-06 14:46:06 +00:00
										 |  |  | def _init_posix(): | 
					
						
							| 
									
										
										
										
											1999-01-06 16:28:34 +00:00
										 |  |  |     """Initialize the module as appropriate for POSIX systems.""" | 
					
						
							| 
									
										
										
										
											2000-09-15 01:15:08 +00:00
										 |  |  |     g = {} | 
					
						
							| 
									
										
										
										
											2000-02-02 00:05:14 +00:00
										 |  |  |     # load the installed Makefile: | 
					
						
							| 
									
										
										
										
											2000-05-23 23:14:00 +00:00
										 |  |  |     try: | 
					
						
							|  |  |  |         filename = get_makefile_filename() | 
					
						
							| 
									
										
										
										
											2000-09-15 00:03:13 +00:00
										 |  |  |         parse_makefile(filename, g) | 
					
						
							| 
									
										
										
										
											2000-05-23 23:14:00 +00:00
										 |  |  |     except IOError, msg: | 
					
						
							|  |  |  |         my_msg = "invalid Python installation: unable to open %s" % filename | 
					
						
							|  |  |  |         if hasattr(msg, "strerror"): | 
					
						
							|  |  |  |             my_msg = my_msg + " (%s)" % msg.strerror | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-18 18:39:56 +00:00
										 |  |  |         raise DistutilsPlatformError(my_msg) | 
					
						
							| 
									
										
										
										
											2001-08-02 20:03:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-03 12:41:45 +00:00
										 |  |  |     # On MacOSX we need to check the setting of the environment variable | 
					
						
							|  |  |  |     # MACOSX_DEPLOYMENT_TARGET: configure bases some choices on it so | 
					
						
							|  |  |  |     # it needs to be compatible. | 
					
						
							|  |  |  |     # An alternative would be to force MACOSX_DEPLOYMENT_TARGET to be | 
					
						
							|  |  |  |     # the same as during configure. | 
					
						
							|  |  |  |     if sys.platform == 'darwin' and g.has_key('CONFIGURE_MACOSX_DEPLOYMENT_TARGET'): | 
					
						
							|  |  |  |         cfg_target = g['CONFIGURE_MACOSX_DEPLOYMENT_TARGET'] | 
					
						
							|  |  |  |         cur_target = os.getenv('MACOSX_DEPLOYMENT_TARGET', '') | 
					
						
							|  |  |  |         if cfg_target != cur_target: | 
					
						
							|  |  |  |             my_msg = ('$MACOSX_DEPLOYMENT_TARGET mismatch: now "%s" but "%s" during configure' | 
					
						
							|  |  |  |                 % (cur_target, cfg_target)) | 
					
						
							|  |  |  |             raise DistutilsPlatformError(my_msg) | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-27 01:59:06 +00:00
										 |  |  |     # On AIX, there are wrong paths to the linker scripts in the Makefile | 
					
						
							|  |  |  |     # -- these paths are relative to the Python source, but when installed | 
					
						
							|  |  |  |     # the scripts are in another directory. | 
					
						
							| 
									
										
										
										
											2001-02-16 03:31:13 +00:00
										 |  |  |     if python_build: | 
					
						
							| 
									
										
										
										
											2001-02-28 19:40:27 +00:00
										 |  |  |         g['LDSHARED'] = g['BLDSHARED'] | 
					
						
							| 
									
										
										
										
											2001-12-06 20:51:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-05 12:02:59 +00:00
										 |  |  |     elif sys.version < '2.1': | 
					
						
							|  |  |  |         # The following two branches are for 1.5.2 compatibility. | 
					
						
							|  |  |  |         if sys.platform == 'aix4':          # what about AIX 3.x ? | 
					
						
							|  |  |  |             # Linker script is in the config directory, not in Modules as the | 
					
						
							|  |  |  |             # Makefile says. | 
					
						
							|  |  |  |             python_lib = get_python_lib(standard_lib=1) | 
					
						
							|  |  |  |             ld_so_aix = os.path.join(python_lib, 'config', 'ld_so_aix') | 
					
						
							|  |  |  |             python_exp = os.path.join(python_lib, 'config', 'python.exp') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             g['LDSHARED'] = "%s %s -bI:%s" % (ld_so_aix, g['CC'], python_exp) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         elif sys.platform == 'beos': | 
					
						
							|  |  |  |             # Linker script is in the config directory.  In the Makefile it is | 
					
						
							|  |  |  |             # relative to the srcdir, which after installation no longer makes | 
					
						
							|  |  |  |             # sense. | 
					
						
							|  |  |  |             python_lib = get_python_lib(standard_lib=1) | 
					
						
							| 
									
										
										
										
											2002-11-13 17:03:05 +00:00
										 |  |  |             linkerscript_path = string.split(g['LDSHARED'])[0] | 
					
						
							|  |  |  |             linkerscript_name = os.path.basename(linkerscript_path) | 
					
						
							| 
									
										
										
										
											2002-11-05 20:11:08 +00:00
										 |  |  |             linkerscript = os.path.join(python_lib, 'config', | 
					
						
							|  |  |  |                                         linkerscript_name) | 
					
						
							| 
									
										
										
										
											2001-12-06 20:51:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-05 12:02:59 +00:00
										 |  |  |             # XXX this isn't the right place to do this: adding the Python | 
					
						
							|  |  |  |             # library to the link, if needed, should be in the "build_ext" | 
					
						
							|  |  |  |             # command.  (It's also needed for non-MS compilers on Windows, and | 
					
						
							|  |  |  |             # it's taken care of for them by the 'build_ext.get_libraries()' | 
					
						
							|  |  |  |             # method.) | 
					
						
							|  |  |  |             g['LDSHARED'] = ("%s -L%s/lib -lpython%s" % | 
					
						
							|  |  |  |                              (linkerscript, PREFIX, sys.version[0:3])) | 
					
						
							| 
									
										
										
										
											2001-12-06 20:51:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-15 01:15:08 +00:00
										 |  |  |     global _config_vars | 
					
						
							|  |  |  |     _config_vars = g | 
					
						
							| 
									
										
										
										
											2000-09-01 01:23:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-06 14:46:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-08 01:58:36 +00:00
										 |  |  | def _init_nt(): | 
					
						
							|  |  |  |     """Initialize the module as appropriate for NT""" | 
					
						
							| 
									
										
										
										
											2000-09-15 01:15:08 +00:00
										 |  |  |     g = {} | 
					
						
							| 
									
										
										
										
											1999-06-08 01:58:36 +00:00
										 |  |  |     # set basic install directories | 
					
						
							| 
									
										
										
										
											2000-03-09 15:54:52 +00:00
										 |  |  |     g['LIBDEST'] = get_python_lib(plat_specific=0, standard_lib=1) | 
					
						
							|  |  |  |     g['BINLIBDEST'] = get_python_lib(plat_specific=1, standard_lib=1) | 
					
						
							| 
									
										
										
										
											1999-06-08 01:58:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-08-29 18:22:13 +00:00
										 |  |  |     # XXX hmmm.. a normal install puts include files here | 
					
						
							| 
									
										
										
										
											2000-03-09 15:54:52 +00:00
										 |  |  |     g['INCLUDEPY'] = get_python_inc(plat_specific=0) | 
					
						
							| 
									
										
										
										
											1999-08-29 18:22:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-08 15:55:42 +00:00
										 |  |  |     g['SO'] = '.pyd' | 
					
						
							| 
									
										
										
										
											2000-06-03 00:44:30 +00:00
										 |  |  |     g['EXE'] = ".exe" | 
					
						
							| 
									
										
										
										
											2000-09-15 01:15:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     global _config_vars | 
					
						
							|  |  |  |     _config_vars = g | 
					
						
							| 
									
										
										
										
											2000-06-03 00:44:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-08 15:55:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-07 03:30:09 +00:00
										 |  |  | def _init_mac(): | 
					
						
							|  |  |  |     """Initialize the module as appropriate for Macintosh systems""" | 
					
						
							| 
									
										
										
										
											2000-09-15 01:15:08 +00:00
										 |  |  |     g = {} | 
					
						
							| 
									
										
										
										
											2000-03-07 03:30:09 +00:00
										 |  |  |     # set basic install directories | 
					
						
							| 
									
										
										
										
											2000-03-09 15:54:52 +00:00
										 |  |  |     g['LIBDEST'] = get_python_lib(plat_specific=0, standard_lib=1) | 
					
						
							|  |  |  |     g['BINLIBDEST'] = get_python_lib(plat_specific=1, standard_lib=1) | 
					
						
							| 
									
										
										
										
											2000-03-07 03:30:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # XXX hmmm.. a normal install puts include files here | 
					
						
							| 
									
										
										
										
											2000-03-09 15:54:52 +00:00
										 |  |  |     g['INCLUDEPY'] = get_python_inc(plat_specific=0) | 
					
						
							| 
									
										
										
										
											2000-03-07 03:30:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-17 12:52:01 +00:00
										 |  |  |     import MacOS | 
					
						
							|  |  |  |     if not hasattr(MacOS, 'runtimemodel'): | 
					
						
							| 
									
										
										
										
											2001-05-17 15:03:14 +00:00
										 |  |  |         g['SO'] = '.ppc.slb' | 
					
						
							| 
									
										
										
										
											2001-05-17 12:52:01 +00:00
										 |  |  |     else: | 
					
						
							|  |  |  |         g['SO'] = '.%s.slb' % MacOS.runtimemodel | 
					
						
							| 
									
										
										
										
											2000-03-09 03:16:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # XXX are these used anywhere? | 
					
						
							| 
									
										
										
										
											2000-04-10 01:15:06 +00:00
										 |  |  |     g['install_lib'] = os.path.join(EXEC_PREFIX, "Lib") | 
					
						
							|  |  |  |     g['install_platlib'] = os.path.join(EXEC_PREFIX, "Mac", "Lib") | 
					
						
							| 
									
										
										
										
											2000-03-07 03:30:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-26 15:42:49 +00:00
										 |  |  |     # These are used by the extension module build | 
					
						
							|  |  |  |     g['srcdir'] = ':' | 
					
						
							| 
									
										
										
										
											2000-09-15 01:15:08 +00:00
										 |  |  |     global _config_vars | 
					
						
							|  |  |  |     _config_vars = g | 
					
						
							| 
									
										
										
										
											2000-03-07 03:30:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-06 14:46:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-31 18:56:00 +00:00
										 |  |  | def _init_os2(): | 
					
						
							|  |  |  |     """Initialize the module as appropriate for OS/2""" | 
					
						
							|  |  |  |     g = {} | 
					
						
							|  |  |  |     # set basic install directories | 
					
						
							|  |  |  |     g['LIBDEST'] = get_python_lib(plat_specific=0, standard_lib=1) | 
					
						
							|  |  |  |     g['BINLIBDEST'] = get_python_lib(plat_specific=1, standard_lib=1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # XXX hmmm.. a normal install puts include files here | 
					
						
							|  |  |  |     g['INCLUDEPY'] = get_python_inc(plat_specific=0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     g['SO'] = '.pyd' | 
					
						
							|  |  |  |     g['EXE'] = ".exe" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     global _config_vars | 
					
						
							|  |  |  |     _config_vars = g | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-15 01:15:08 +00:00
										 |  |  | def get_config_vars(*args): | 
					
						
							|  |  |  |     """With no arguments, return a dictionary of all configuration
 | 
					
						
							|  |  |  |     variables relevant for the current platform.  Generally this includes | 
					
						
							|  |  |  |     everything needed to build extensions and install both pure modules and | 
					
						
							|  |  |  |     extensions.  On Unix, this means every variable defined in Python's | 
					
						
							|  |  |  |     installed Makefile; on Windows and Mac OS it's a much smaller set. | 
					
						
							| 
									
										
										
										
											2000-02-08 15:55:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-15 01:15:08 +00:00
										 |  |  |     With arguments, return a list of values that result from looking up | 
					
						
							|  |  |  |     each argument in the configuration variable dictionary. | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     global _config_vars | 
					
						
							|  |  |  |     if _config_vars is None: | 
					
						
							|  |  |  |         func = globals().get("_init_" + os.name) | 
					
						
							|  |  |  |         if func: | 
					
						
							|  |  |  |             func() | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             _config_vars = {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Normalized versions of prefix and exec_prefix are handy to have; | 
					
						
							|  |  |  |         # in fact, these are the standard versions used most places in the | 
					
						
							|  |  |  |         # Distutils. | 
					
						
							|  |  |  |         _config_vars['prefix'] = PREFIX | 
					
						
							|  |  |  |         _config_vars['exec_prefix'] = EXEC_PREFIX | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if args: | 
					
						
							|  |  |  |         vals = [] | 
					
						
							|  |  |  |         for name in args: | 
					
						
							|  |  |  |             vals.append(_config_vars.get(name)) | 
					
						
							|  |  |  |         return vals | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         return _config_vars | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def get_config_var(name): | 
					
						
							|  |  |  |     """Return the value of a single variable using the dictionary
 | 
					
						
							|  |  |  |     returned by 'get_config_vars()'.  Equivalent to | 
					
						
							| 
									
										
										
										
											2001-08-02 20:03:12 +00:00
										 |  |  |     get_config_vars().get(name) | 
					
						
							| 
									
										
										
										
											2000-09-15 01:15:08 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |     return get_config_vars().get(name) |