From 4f1cd8bdcbd20bb0acdbe9e240f28c09dd38370f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Thu, 26 Jul 2001 13:41:06 +0000 Subject: Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774. --- Doc/ext/ext.tex | 4 +- Doc/lib/libexcs.tex | 2 +- Doc/lib/libsys.tex | 4 +- Include/Python.h | 2 +- Include/pgenheaders.h | 2 +- Include/pyport.h | 2 +- Lib/distutils/command/build_ext.py | 4 +- Lib/distutils/cygwinccompiler.py | 16 +- Lib/distutils/sysconfig.py | 6 +- Makefile.pre.in | 10 +- Misc/Porting | 4 +- Modules/_testcapimodule.c | 2 +- Modules/getbuildinfo.c | 2 +- Modules/posixmodule.c | 2 +- PC/config.h | 661 ---------------------------------- PC/dl_nt.c | 2 +- PC/os2vacpp/config.h | 202 ----------- PC/os2vacpp/makefile | 272 +++++++------- PC/os2vacpp/makefile.omk | 274 +++++++------- PC/os2vacpp/pyconfig.h | 202 +++++++++++ PC/pyconfig.h | 661 ++++++++++++++++++++++++++++++++++ PCbuild/python20.wse | 6 +- Python/atof.c | 2 +- Python/fmod.c | 2 +- Python/getmtime.c | 2 +- Python/hypot.c | 2 +- Python/pyfpe.c | 2 +- Python/strtod.c | 2 +- Python/thread.c | 2 +- RISCOS/config.h | 488 ------------------------- RISCOS/pyconfig.h | 488 +++++++++++++++++++++++++ config.h.in | 706 ------------------------------------- configure | 6 +- configure.in | 2 +- pyconfig.h.in | 706 +++++++++++++++++++++++++++++++++++++ 35 files changed, 2376 insertions(+), 2376 deletions(-) delete mode 100644 PC/config.h delete mode 100644 PC/os2vacpp/config.h create mode 100644 PC/os2vacpp/pyconfig.h create mode 100644 PC/pyconfig.h delete mode 100644 RISCOS/config.h create mode 100644 RISCOS/pyconfig.h delete mode 100644 config.h.in create mode 100644 pyconfig.h.in diff --git a/Doc/ext/ext.tex b/Doc/ext/ext.tex index cc5af6c..61e423e 100644 --- a/Doc/ext/ext.tex +++ b/Doc/ext/ext.tex @@ -2380,10 +2380,10 @@ Windows. Grab the binary installer from \url{http://www.python.org/} and install Python. The binary installer has all of the required header -files except for \file{config.h}. +files except for \file{pyconfig.h}. Get the source distribution and extract it into a convenient location. -Copy the \file{config.h} from the \file{PC/} directory into the +Copy the \file{pyconfig.h} from the \file{PC/} directory into the \file{include/} directory created by the installer. Create a \file{Setup} file for your extension module, as described in diff --git a/Doc/lib/libexcs.tex b/Doc/lib/libexcs.tex index b9a31cc..58d929a 100644 --- a/Doc/lib/libexcs.tex +++ b/Doc/lib/libexcs.tex @@ -140,7 +140,7 @@ Raised when an \keyword{assert} statement fails. always defined, but can only be raised when Python is configured with the \longprogramopt{with-fpectl} option, or the \constant{WANT_SIGFPE_HANDLER} symbol is defined in the - \file{config.h} file. + \file{pyconfig.h} file. \end{excdesc} \begin{excdesc}{IOError} diff --git a/Doc/lib/libsys.tex b/Doc/lib/libsys.tex index 53c8c42..9f9cb0e 100644 --- a/Doc/lib/libsys.tex +++ b/Doc/lib/libsys.tex @@ -129,7 +129,7 @@ It is always available. also \code{'/usr/local'}. This can be set at build time with the \longprogramopt{exec-prefix} argument to the \program{configure} script. Specifically, all configuration files (e.g. the - \file{config.h} header file) are installed in the directory + \file{pyconfig.h} header file) are installed in the directory \code{exec_prefix + '/lib/python\var{version}/config'}, and shared library modules are installed in \code{exec_prefix + '/lib/python\var{version}/lib-dynload'}, where \var{version} is @@ -298,7 +298,7 @@ else: the \longprogramopt{prefix} argument to the \program{configure} script. The main collection of Python library modules is installed in the directory \code{prefix + '/lib/python\var{version}'} while - the platform independent header files (all except \file{config.h}) + the platform independent header files (all except \file{pyconfig.h}) are stored in \code{prefix + '/include/python\var{version}'}, where \var{version} is equal to \code{version[:3]}. \end{datadesc} diff --git a/Include/Python.h b/Include/Python.h index 24d33b2..17ac374 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -21,7 +21,7 @@ /* Include nearly all Python header files */ #include "patchlevel.h" -#include "config.h" +#include "pyconfig.h" #ifdef HAVE_LIMITS_H #include diff --git a/Include/pgenheaders.h b/Include/pgenheaders.h index dcd3c5e..6807c64 100644 --- a/Include/pgenheaders.h +++ b/Include/pgenheaders.h @@ -7,7 +7,7 @@ extern "C" { /* Include files and extern declarations used by most of the parser. */ -#include "config.h" +#include "pyconfig.h" /* config.h may or may not define DL_IMPORT */ #ifndef DL_IMPORT /* declarations for DLL import/export */ diff --git a/Include/pyport.h b/Include/pyport.h index 2a59fa1..5767aab 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -1,7 +1,7 @@ #ifndef Py_PYPORT_H #define Py_PYPORT_H -#include "config.h" /* include for defines */ +#include "pyconfig.h" /* include for defines */ /************************************************************************** Symbols and macros to supply platform-independent interfaces to basic diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index f732373..259a844 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -125,7 +125,7 @@ class build_ext (Command): self.extensions = self.distribution.ext_modules - # Make sure Python's include directories (for Python.h, config.h, + # Make sure Python's include directories (for Python.h, pyconfig.h, # etc.) are in the include search path. py_include = sysconfig.get_python_inc() plat_py_include = sysconfig.get_python_inc(plat_specific=1) @@ -592,7 +592,7 @@ class build_ext (Command): """ # The python library is always needed on Windows. For MSVC, this # is redundant, since the library is mentioned in a pragma in - # config.h that MSVC groks. The other Windows compilers all seem + # pyconfig.h that MSVC groks. The other Windows compilers all seem # to need it mentioned explicitly, though, so that's what we do. # Append '_d' to the python import library on debug builds. from distutils.msvccompiler import MSVCCompiler diff --git a/Lib/distutils/cygwinccompiler.py b/Lib/distutils/cygwinccompiler.py index 92def16..07e1665 100644 --- a/Lib/distutils/cygwinccompiler.py +++ b/Lib/distutils/cygwinccompiler.py @@ -73,7 +73,7 @@ class CygwinCCompiler (UnixCCompiler): (status, details)) if status is not CONFIG_H_OK: self.warn( - "Python's config.h doesn't seem to support your compiler. " + + "Python's pyconfig.h doesn't seem to support your compiler. " + ("Reason: %s." % details) + "Compiling may fail because of undefined preprocessor macros.") @@ -335,7 +335,7 @@ class Mingw32CCompiler (CygwinCCompiler): # class Mingw32CCompiler -# Because these compilers aren't configured in Python's config.h file by +# Because these compilers aren't configured in Python's pyconfig.h file by # default, we should at least warn the user if he is using a unmodified # version. @@ -345,7 +345,7 @@ CONFIG_H_UNCERTAIN = "uncertain" def check_config_h(): - """Check if the current Python installation (specifically, config.h) + """Check if the current Python installation (specifically, pyconfig.h) appears amenable to building extensions with GCC. Returns a tuple (status, details), where 'status' is one of the following constants: CONFIG_H_OK @@ -353,21 +353,21 @@ def check_config_h(): CONFIG_H_NOTOK doesn't look good CONFIG_H_UNCERTAIN - not sure -- unable to read config.h + not sure -- unable to read pyconfig.h 'details' is a human-readable string explaining the situation. Note there are two ways to conclude "OK": either 'sys.version' contains the string "GCC" (implying that this Python was built with GCC), or the - installed "config.h" contains the string "__GNUC__". + installed "pyconfig.h" contains the string "__GNUC__". """ # XXX since this function also checks sys.version, it's not strictly a - # "config.h" check -- should probably be renamed... + # "pyconfig.h" check -- should probably be renamed... from distutils import sysconfig import string # if sys.version contains GCC then python was compiled with - # GCC, and the config.h file should be OK + # GCC, and the pyconfig.h file should be OK if string.find(sys.version,"GCC") >= 0: return (CONFIG_H_OK, "sys.version mentions 'GCC'") @@ -386,7 +386,7 @@ def check_config_h(): "couldn't read '%s': %s" % (fn, exc.strerror)) else: - # "config.h" contains an "#ifdef __GNUC__" or something similar + # "pyconfig.h" contains an "#ifdef __GNUC__" or something similar if string.find(s,"__GNUC__") >= 0: return (CONFIG_H_OK, "'%s' mentions '__GNUC__'" % fn) else: diff --git a/Lib/distutils/sysconfig.py b/Lib/distutils/sysconfig.py index 16e8023..529d0e6 100644 --- a/Lib/distutils/sysconfig.py +++ b/Lib/distutils/sysconfig.py @@ -43,7 +43,7 @@ def get_python_inc(plat_specific=0, prefix=None): 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 - (namely config.h). + (namely pyconfig.h). If 'prefix' is supplied, use it instead of sys.prefix or sys.exec_prefix -- i.e., ignore 'plat_specific'. @@ -137,10 +137,10 @@ def customize_compiler(compiler): def get_config_h_filename(): - """Return full pathname of installed config.h file.""" + """Return full pathname of installed pyconfig.h file.""" if python_build: inc_dir = '.' else: inc_dir = get_python_inc(plat_specific=1) - return os.path.join(inc_dir, "config.h") + return os.path.join(inc_dir, "pyconfig.h") def get_makefile_filename(): diff --git a/Makefile.pre.in b/Makefile.pre.in index 139be8b..3ca3397 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -118,7 +118,7 @@ SRCDIRS= @SRCDIRS@ SUBDIRSTOO= Include Lib Misc Demo # Files and directories to be distributed -CONFIGFILES= configure configure.in acconfig.h config.h.in Makefile.pre.in +CONFIGFILES= configure configure.in acconfig.h pyconfig.h.in Makefile.pre.in DISTFILES= README ChangeLog $(CONFIGFILES) DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy DIST= $(DISTFILES) $(DISTDIRS) @@ -417,7 +417,7 @@ Mac/Python/macglue.o: $(srcdir)/Mac/Python/macglue.c PYTHON_HEADERS= \ Include/Python.h \ - config.h \ + pyconfig.h \ Include/patchlevel.h \ Include/pyport.h \ Include/pymem.h \ @@ -650,7 +650,7 @@ inclinstall: echo $(INSTALL_DATA) $$i $(INCLUDEPY); \ $(INSTALL_DATA) $$i $(INCLUDEPY); \ done - $(INSTALL_DATA) config.h $(CONFINCLUDEPY)/config.h + $(INSTALL_DATA) pyconfig.h $(CONFINCLUDEPY)/pyconfig.h # Install the library and miscellaneous stuff needed for extending/embedding # This goes into $(exec_prefix) @@ -732,7 +732,7 @@ recheck: $(SHELL) config.status --recheck $(SHELL) config.status -# Rebuild the configure script from configure.in; also rebuild config.h.in +# Rebuild the configure script from configure.in; also rebuild pyconfig.h.in autoconf: (cd $(srcdir); autoconf) (cd $(srcdir); autoheader) @@ -762,7 +762,7 @@ clean: clobber: clean -rm -f $(PYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \ tags TAGS \ - config.cache config.log config.h Modules/config.c + config.cache config.log pyconfig.h Modules/config.c -rm -rf build platform # Make things extra clean, before making a distribution: diff --git a/Misc/Porting b/Misc/Porting index 570eaff..60ce9a8 100644 --- a/Misc/Porting +++ b/Misc/Porting @@ -19,8 +19,8 @@ for Python. Not all source files are relevant -- some are platform specific, others are only used in emergencies (e.g. getopt.c). The Makefiles tell the story. -You'll also need a config.h file tailored for your platform. You can -start with config.h.in, read the comments and turn on definitions that +You'll also need a pyconfig.h file tailored for your platform. You can +start with pyconfig.h.in, read the comments and turn on definitions that apply to your platform. And you'll need a config.c file, which lists the built-in modules you diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 6ff32b5..e8db847 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -25,7 +25,7 @@ raiseTestError(const char* test_name, const char* msg) return NULL; } -/* Test #defines from config.h (particularly the SIZEOF_* defines). +/* Test #defines from pyconfig.h (particularly the SIZEOF_* defines). The ones derived from autoconf on the UNIX-like OSes can be relied upon (in the absence of sloppy cross-compiling), but the Windows diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c index 8c710f8..a4e9977 100644 --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -1,4 +1,4 @@ -#include "config.h" +#include "pyconfig.h" #ifdef macintosh #include "macbuildno.h" diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 8ff353f..0f4148b 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -46,7 +46,7 @@ corresponding Unix manual entries for more information on calls."; #endif /* HAVE_UNISTD_H */ /* Various compilers have only certain posix functions */ -/* XXX Gosh I wish these were all moved into config.h */ +/* XXX Gosh I wish these were all moved into pyconfig.h */ #if defined(PYCC_VACPP) && defined(PYOS_OS2) #include #else diff --git a/PC/config.h b/PC/config.h deleted file mode 100644 index d0a8907..0000000 --- a/PC/config.h +++ /dev/null @@ -1,661 +0,0 @@ -#ifndef Py_CONFIG_H -#define Py_CONFIG_H - -/* config.h. NOT Generated automatically by configure. - -This is a manually maintained version used for the Watcom, -Borland and and Microsoft Visual C++ compilers. It is a -standard part of the Python distribution. - -WINDOWS DEFINES: -The code specific to Windows should be wrapped around one of -the following #defines - -MS_WIN64 - Code specific to the MS Win64 API -MS_WIN32 - Code specific to the MS Win32 (and Win64) API -MS_WIN16 - Code specific to the old 16 bit Windows API. -MS_WINDOWS - Code specific to Windows, but all versions. -MS_COREDLL - Code if the Python core is built as a DLL. - -Note that the old defines "NT" and "WIN32" are still supported, but -will soon be dropped. - -Also note that neither "_M_IX86" or "_MSC_VER" should be used for -any purpose other than "Windows Intel x86 specific" and "Microsoft -compiler specific". Therefore, these should be very rare. - -*/ - - -/* - Some systems require special declarations for data items imported - or exported from dynamic link libraries. Note that the definition - of DL_IMPORT covers both cases. Define USE_DL_IMPORT for the client - of a DLL. Define USE_DL_EXPORT when making a DLL. -*/ - -#include -#define HAVE_LIMITS_H -#define HAVE_SYS_UTIME_H -#define HAVE_HYPOT -#define HAVE_TEMPNAM -#define HAVE_TMPFILE -#define HAVE_TMPNAM -#define DONT_HAVE_SIG_ALARM -#define DONT_HAVE_SIG_PAUSE -#define LONG_BIT 32 -#define PREFIX "" -#define EXEC_PREFIX "" - -/* Microsoft C defines _MSC_VER */ -#ifdef _MSC_VER - -/* MSVC defines _WINxx to differentiate the windows platform types - - Note that for compatibility reasons _WIN32 is defined on Win32 - *and* on Win64. For the same reasons, in Python, MS_WIN32 is - defined on Win32 *and* Win64. Win32 only code must therefore be - guarded as follows: - #if defined(MS_WIN32) && !defined(MS_WIN64) -*/ -#ifdef _WIN64 -#define MS_WIN64 -#endif -#ifdef _WIN32 -#define NT /* NT is obsolete - please use MS_WIN32 instead */ -#define MS_WIN32 -#endif -#ifdef _WIN16 -#define MS_WIN16 -#endif -#define MS_WINDOWS - -/* set the COMPILER */ -#ifdef MS_WIN64 -#ifdef _M_IX86 -#define COMPILER "[MSC 64 bit (Intel)]" -#elif defined(_M_ALPHA) -#define COMPILER "[MSC 64 bit (Alpha)]" -#else -#define COMPILER "[MSC 64 bit (Unknown)]" -#endif -#endif /* MS_WIN64 */ - -#if defined(MS_WIN32) && !defined(MS_WIN64) -#ifdef _M_IX86 -#define COMPILER "[MSC 32 bit (Intel)]" -#elif defined(_M_ALPHA) -#define COMPILER "[MSC 32 bit (Alpha)]" -#else -#define COMPILER "[MSC (Unknown)]" -#endif -#endif /* MS_WIN32 && !MS_WIN64 */ - -#endif /* _MSC_VER */ - -#if defined(_MSC_VER) && _MSC_VER > 850 -/* Start of defines for MS_WIN32 using VC++ 2.0 and up */ - -/* For NT the Python core is in a DLL by default. Test the -standard macro MS_COREDLL to find out. If you have an exception -you must define MS_NO_COREDLL (do not test this macro) */ -#ifndef MS_NO_COREDLL -#define MS_COREDLL /* Python core is in a DLL */ -#ifndef USE_DL_EXPORT -#define USE_DL_IMPORT -#endif /* !USE_DL_EXPORT */ -#endif /* !MS_NO_COREDLL */ - -#define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk" -typedef int pid_t; -#define WORD_BIT 32 -#pragma warning(disable:4113) -#define hypot _hypot -#include -#define HAVE_CLOCK -#define HAVE_STRFTIME -#define HAVE_STRERROR -#define NT_THREADS -#define WITH_THREAD -#ifndef NETSCAPE_PI -#define USE_SOCKET -#endif -#ifdef USE_DL_IMPORT -#define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE -#endif -#ifdef USE_DL_EXPORT -#define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE -#define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE -#endif - -#define HAVE_LONG_LONG 1 -#define LONG_LONG __int64 -#endif /* _MSC_VER && > 850 */ - -/* The Borland compiler defines __BORLANDC__ */ -/* XXX These defines are likely incomplete, but should be easy to fix. */ -#ifdef __BORLANDC__ -#define COMPILER "[Borland]" -#define HAVE_CLOCK -#define HAVE_STRFTIME - -#ifdef _WIN32 - -/* tested with BCC 5.5 (__BORLANDC__ >= 0x0550) - */ -#define NT /* NT is obsolete - please use MS_WIN32 instead */ -#define MS_WIN32 -#define MS_WINDOWS - -/* For NT the Python core is in a DLL by default. Test the -standard macro MS_COREDLL to find out. If you have an exception -you must define MS_NO_COREDLL (do not test this macro) */ -#ifndef MS_NO_COREDLL -#define MS_COREDLL /* Python core is in a DLL */ -#ifndef USE_DL_EXPORT -#define USE_DL_IMPORT -#endif /* !USE_DL_EXPORT */ -#endif /* !MS_NO_COREDLL */ - -#define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk" -typedef int pid_t; -#define WORD_BIT 32 -#include -#define HAVE_STRERROR -#define NT_THREADS -#define WITH_THREAD -#ifndef NETSCAPE_PI -#define USE_SOCKET -#endif -/* BCC55 seems to understand __declspec(dllimport), it is used in its - own header files (winnt.h, ...) */ -#ifdef USE_DL_IMPORT -#define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE -#endif -#ifdef USE_DL_EXPORT -#define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE -#define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE -#endif - -#define HAVE_LONG_LONG 1 -#define LONG_LONG __int64 - -#undef HAVE_HYPOT -#undef HAVE_SYS_UTIME_H -#define HAVE_UTIME_H -#define HAVE_DIRENT_H -#define HAVE_CLOCK - -#else /* !_WIN32 */ -#error "Only Win32 and later are supported" -#endif /* !_WIN32 */ - -#endif /* BORLANDC */ - -/* egcs/gnu-win32 defines __GNUC__ and _WIN32 */ -#if defined(__GNUC__) && defined(_WIN32) -/* XXX These defines are likely incomplete, but should be easy to fix. - They should be complete enough to build extension modules. */ -/* Suggested by Rene Liebscher to avoid a GCC 2.91.* - bug that requires structure imports. More recent versions of the - compiler don't exhibit this bug. -*/ -#if (__GNUC__==2) && (__GNUC_MINOR__<=91) -#warning "Please use an up-to-date version of gcc! (>2.91 recommended)" -#endif - -#define NT /* NT is obsolete - please use MS_WIN32 instead */ -#define MS_WIN32 -#define MS_WINDOWS - -/* For NT the Python core is in a DLL by default. Test the -standard macro MS_COREDLL to find out. If you have an exception -you must define MS_NO_COREDLL (do not test this macro) */ -#ifndef MS_NO_COREDLL -#define MS_COREDLL /* Python core is in a DLL */ -#ifndef USE_DL_EXPORT -#define USE_DL_IMPORT -#endif /* !USE_DL_EXPORT */ -#endif /* !MS_NO_COREDLL */ - -#define COMPILER "[gcc]" -#define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk" -#define WORD_BIT 32 -#define hypot _hypot -#include -#define HAVE_CLOCK -#define HAVE_STRFTIME -#define HAVE_STRERROR -#define NT_THREADS -#define WITH_THREAD -#ifndef NETSCAPE_PI -#define USE_SOCKET -#endif -#ifdef USE_DL_IMPORT -#define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE -#endif -#ifdef USE_DL_EXPORT -#define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE -#define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE -#endif - -#define HAVE_LONG_LONG 1 -#define LONG_LONG long long -#endif /* GNUC */ - -/* lcc-win32 defines __LCC__ */ - -#if defined(__LCC__) -/* XXX These defines are likely incomplete, but should be easy to fix. - They should be complete enough to build extension modules. */ - -#define NT /* NT is obsolete - please use MS_WIN32 instead */ -#define MS_WIN32 -#define MS_WINDOWS - -/* For NT the Python core is in a DLL by default. Test the -standard macro MS_COREDLL to find out. If you have an exception -you must define MS_NO_COREDLL (do not test this macro) */ -#ifndef MS_NO_COREDLL -#define MS_COREDLL /* Python core is in a DLL */ -#ifndef USE_DL_EXPORT -#define USE_DL_IMPORT -#endif /* !USE_DL_EXPORT */ -#endif /* !MS_NO_COREDLL */ - -#define COMPILER "[lcc-win32]" -#define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk" -typedef int pid_t; -#define WORD_BIT 32 -#include -#define HAVE_CLOCK -#define HAVE_STRFTIME -#define HAVE_STRERROR -#define NT_THREADS -#define WITH_THREAD -#ifndef NETSCAPE_PI -#define USE_SOCKET -#endif -#ifdef USE_DL_IMPORT -#define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE -#endif -#ifdef USE_DL_EXPORT -#define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE -#define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE -#endif - -#define HAVE_LONG_LONG 1 -#define LONG_LONG __int64 -#endif /* LCC */ - -/* End of compilers - finish up */ - -/* define some ANSI types that are not defined in earlier Win headers */ -#if _MSC_VER >= 1200 /* This file only exists in VC 6.0 or higher */ -#include -#endif -#if defined(MS_WINDOWS) && !defined(MS_WIN64) -typedef long intptr_t; -typedef unsigned long uintptr_t; -#endif - -#if defined(MS_WIN64) -/* maintain "win32" sys.platform for backward compatibility of Python code, - the Win64 API should be close enough to the Win32 API to make this - preferable */ -# define PLATFORM "win32" -# define SIZEOF_VOID_P 8 -# define SIZEOF_TIME_T 8 -# define SIZEOF_OFF_T 4 -# define SIZEOF_FPOS_T 8 -# define SIZEOF_HKEY 8 -/* configure.in defines HAVE_LARGEFILE_SUPPORT iff HAVE_LONG_LONG, - sizeof(off_t) > sizeof(long), and sizeof(LONG_LONG) >= sizeof(off_t). - On Win64 the second condition is not true, but if fpos_t replaces off_t - then this is true. The uses of HAVE_LARGEFILE_SUPPORT imply that Win64 - should define this. */ -# define HAVE_LARGEFILE_SUPPORT -#elif defined(MS_WIN32) -# define PLATFORM "win32" -# ifdef _M_ALPHA -# define SIZEOF_VOID_P 8 -# define SIZEOF_TIME_T 8 -# else -# define SIZEOF_VOID_P 4 -# define SIZEOF_TIME_T 4 -# define SIZEOF_OFF_T 4 -# define SIZEOF_FPOS_T 8 -# define SIZEOF_HKEY 4 -# endif -#endif - - -#ifdef MS_WIN32 - -#if !defined(USE_DL_EXPORT) && defined(_MSC_VER) -/* So nobody using MSVC needs to specify the .lib in their Makefile any - more (other compilers will still need to do so, but that's taken care - of by the Distutils, so it's not a problem). */ -#ifdef _DEBUG -#pragma comment(lib,"python22_d.lib") -#else -#pragma comment(lib,"python22.lib") -#endif -#endif /* USE_DL_EXPORT */ - -#ifdef _DEBUG -#define Py_DEBUG -#endif - -#define SIZEOF_SHORT 2 -#define SIZEOF_INT 4 -#define SIZEOF_LONG 4 -#define SIZEOF_LONG_LONG 8 - -#endif - -/* Fairly standard from here! */ - -/* Define if on AIX 3. - System headers sometimes define this. - We just want to avoid a redefinition error message. */ -#ifndef _ALL_SOURCE -/* #undef _ALL_SOURCE */ -#endif - -/* Define to empty if the keyword does not work. */ -/* #define const */ - -/* Define if you have dirent.h. */ -/* #define DIRENT 1 */ - -/* Define to the type of elements in the array set by `getgroups'. - Usually this is either `int' or `gid_t'. */ -/* #undef GETGROUPS_T */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct tm has tm_zone. */ -/* #undef HAVE_TM_ZONE */ - -/* Define if you don't have tm_zone but do have the external array - tzname. */ -#define HAVE_TZNAME - -/* Define if on MINIX. */ -/* #undef _MINIX */ - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define if you don't have dirent.h, but have ndir.h. */ -/* #undef NDIR */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define if the system does not provide POSIX.1 features except - with this defined. */ -/* #undef _POSIX_1_SOURCE */ - -/* Define if you need to in order for stat and other things to work. */ -/* #undef _POSIX_SOURCE */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define to `int' if doesn't define. */ -#define socklen_t int - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you don't have dirent.h, but have sys/dir.h. */ -/* #undef SYSDIR */ - -/* Define if you don't have dirent.h, but have sys/ndir.h. */ -/* #undef SYSNDIR */ - -/* Define if you can safely include both and . */ -/* #undef TIME_WITH_SYS_TIME */ - -/* Define if your declares struct tm. */ -/* #define TM_IN_SYS_TIME 1 */ - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if the closedir function returns void instead of int. */ -/* #undef VOID_CLOSEDIR */ - -/* Define if your contains bad prototypes for exec*() - (as it does on SGI IRIX 4.x) */ -/* #undef BAD_EXEC_PROTOTYPES */ - -/* Define if your compiler botches static forward declarations - (as it does on SCI ODT 3.0) */ -#define BAD_STATIC_FORWARD 1 - -/* Define if getpgrp() must be called as getpgrp(0) - and (consequently) setpgrp() as setpgrp(0, 0). */ -/* #undef GETPGRP_HAVE_ARGS */ - -/* Define this if your time.h defines altzone */ -/* #define HAVE_ALTZONE */ - -/* Define if you have the putenv function. */ -#ifdef MS_WIN32 -/* Does this exist on Win16? */ -#define HAVE_PUTENV -#endif - -/* Define if your compiler supports function prototypes */ -#define HAVE_PROTOTYPES - -/* Define if you can safely include both and - (which you can't on SCO ODT 3.0). */ -/* #undef SYS_SELECT_WITH_SYS_TIME */ - -/* Define if you want to use SGI (IRIX 4) dynamic linking. - This requires the "dl" library by Jack Jansen, - ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z. - Don't bother on IRIX 5, it already has dynamic linking using SunOS - style shared libraries */ -/* #undef WITH_SGI_DL */ - -/* Define if you want to emulate SGI (IRIX 4) dynamic linking. - This is rumoured to work on VAX (Ultrix), Sun3 (SunOS 3.4), - Sequent Symmetry (Dynix), and Atari ST. - This requires the "dl-dld" library, - ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z, - as well as the "GNU dld" library, - ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z. - Don't bother on SunOS 4 or 5, they already have dynamic linking using - shared libraries */ -/* #undef WITH_DL_DLD */ - -/* Define if you want to compile in rudimentary thread support */ -/* #undef WITH_THREAD */ - -/* Define if you want to use the GNU readline library */ -/* #define WITH_READLINE 1 */ - -/* Define if you want to have a Unicode type. */ -#define Py_USING_UNICODE - -/* Define as the integral type used for Unicode representation. */ -#define PY_UNICODE_TYPE unsigned short - -/* Define as the size of the unicode type. */ -#define Py_UNICODE_SIZE SIZEOF_SHORT - -/* Define if you have a useable wchar_t type defined in wchar.h; useable - means wchar_t must be 16-bit unsigned type. (see - Include/unicodeobject.h). */ -#if Py_UNICODE_SIZE == 2 -#define HAVE_USABLE_WCHAR_T -#endif - -/* Define if you want cycle garbage collection */ -#define WITH_CYCLE_GC 1 - -/* Define if you have clock. */ -/* #define HAVE_CLOCK */ - -/* Define when any dynamic module loading is enabled */ -#define HAVE_DYNAMIC_LOADING - -/* Define if you have ftime. */ -#define HAVE_FTIME - -/* Define if you have getpeername. */ -#define HAVE_GETPEERNAME - -/* Define if you have getpgrp. */ -/* #undef HAVE_GETPGRP */ - -/* Define if you have getpid. */ -#define HAVE_GETPID - -/* Define if you have gettimeofday. */ -/* #undef HAVE_GETTIMEOFDAY */ - -/* Define if you have getwd. */ -/* #undef HAVE_GETWD */ - -/* Define if you have lstat. */ -/* #undef HAVE_LSTAT */ - -/* Define if you have the mktime function. */ -#define HAVE_MKTIME - -/* Define if you have nice. */ -/* #undef HAVE_NICE */ - -/* Define if you have readlink. */ -/* #undef HAVE_READLINK */ - -/* Define if you have select. */ -/* #undef HAVE_SELECT */ - -/* Define if you have setpgid. */ -/* #undef HAVE_SETPGID */ - -/* Define if you have setpgrp. */ -/* #undef HAVE_SETPGRP */ - -/* Define if you have setsid. */ -/* #undef HAVE_SETSID */ - -/* Define if you have setvbuf. */ -#define HAVE_SETVBUF - -/* Define if you have siginterrupt. */ -/* #undef HAVE_SIGINTERRUPT */ - -/* Define if you have symlink. */ -/* #undef HAVE_SYMLINK */ - -/* Define if you have tcgetpgrp. */ -/* #undef HAVE_TCGETPGRP */ - -/* Define if you have tcsetpgrp. */ -/* #undef HAVE_TCSETPGRP */ - -/* Define if you have times. */ -/* #undef HAVE_TIMES */ - -/* Define if you have uname. */ -/* #undef HAVE_UNAME */ - -/* Define if you have waitpid. */ -/* #undef HAVE_WAITPID */ - -/* Define if you have the header file. */ -/* #undef HAVE_DLFCN_H */ - -/* Define if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SIGNAL_H 1 - -/* Define if you have the header file. */ -#define HAVE_STDARG_H 1 - -/* Define if you have the prototypes. */ -#define HAVE_STDARG_PROTOTYPES - -/* Define if you have the header file. */ -#define HAVE_STDDEF_H 1 - -/* Define if you have the header file. */ -#define HAVE_STDLIB_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_SYS_AUDIOIO_H */ - -/* Define if you have the header file. */ -/* #define HAVE_SYS_PARAM_H 1 */ - -/* Define if you have the header file. */ -/* #define HAVE_SYS_SELECT_H 1 */ - -/* Define if you have the header file. */ -/* #define HAVE_SYS_TIME_H 1 */ - -/* Define if you have the header file. */ -/* #define HAVE_SYS_TIMES_H 1 */ - -/* Define if you have the header file. */ -/* #define HAVE_SYS_UN_H 1 */ - -/* Define if you have the header file. */ -/* #define HAVE_SYS_UTIME_H 1 */ - -/* Define if you have the header file. */ -/* #define HAVE_SYS_UTSNAME_H 1 */ - -/* Define if you have the header file. */ -/* #undef HAVE_THREAD_H */ - -/* Define if you have the header file. */ -/* #define HAVE_UNISTD_H 1 */ - -/* Define if you have the header file. */ -/* #define HAVE_UTIME_H 1 */ - -/* Define if you have the dl library (-ldl). */ -/* #undef HAVE_LIBDL */ - -/* Define if you have the mpc library (-lmpc). */ -/* #undef HAVE_LIBMPC */ - -/* Define if you have the nsl library (-lnsl). */ -#define HAVE_LIBNSL 1 - -/* Define if you have the seq library (-lseq). */ -/* #undef HAVE_LIBSEQ */ - -/* Define if you have the socket library (-lsocket). */ -#define HAVE_LIBSOCKET 1 - -/* Define if you have the sun library (-lsun). */ -/* #undef HAVE_LIBSUN */ - -/* Define if you have the termcap library (-ltermcap). */ -/* #undef HAVE_LIBTERMCAP */ - -/* Define if you have the termlib library (-ltermlib). */ -/* #undef HAVE_LIBTERMLIB */ - -/* Define if you have the thread library (-lthread). */ -/* #undef HAVE_LIBTHREAD */ -#endif /* !Py_CONFIG_H */ diff --git a/PC/dl_nt.c b/PC/dl_nt.c index 6e77851..2608f7e 100644 --- a/PC/dl_nt.c +++ b/PC/dl_nt.c @@ -10,7 +10,7 @@ forgotten) from the programmer. #include "windows.h" /* NT and Python share these */ -#include "config.h" +#include "pyconfig.h" #include "Python.h" char dllVersionBuffer[16] = ""; // a private buffer diff --git a/PC/os2vacpp/config.h b/PC/os2vacpp/config.h deleted file mode 100644 index e7901e3..0000000 --- a/PC/os2vacpp/config.h +++ /dev/null @@ -1,202 +0,0 @@ -#ifndef Py_CONFIG_H -#define Py_CONFIG_H - -/********************************************************************** - * config.h. NOT Generated automatically by configure. - * - * This is a manually maintained version used for the IBM VisualAge - * C/C++ compiler on the OS/2 platform. It is a standard part of - * the Python distribution. - * - * FILESYSTEM DEFINES: - * The code specific to a particular way of naming files and - * directory paths should be wrapped around one of the following - * #defines: - * - * DOSFILESYS PCDOS-Style (for PCDOS, Windows and OS/2) - * MACFILESYS Macintosh-Style - * UNIXFILESYS Unix-Style - * AMIGAFILESYS AmigaDOS-Style - * - * Because of the different compilers and operating systems in - * use on the Intel platform, neither the compiler name nor - * the operating system name is sufficient. - * - * OS/2 DEFINES: - * The code specific to OS/2's Program API should be wrapped around - * - * __TOS_OS2__ Target Operating System, OS/2 - * - * Any code specific to the compiler itself should be wrapped with - * - * __IBMC__ IBM C Compiler - * __IBMCPP__ IBM C++ Compiler - * - * Note that since the VisualAge C/C++ compiler is also available - * for the Windows platform, it may be necessary to use both a - * __TOS_OS2__ and a __IBMC__ to select a very specific environment. - * - **********************************************************************/ - -/* - * Some systems require special declarations for data items imported - * or exported from dynamic link libraries. Note that the definition - * of DL_IMPORT covers both cases. Define USE_DL_IMPORT for the client - * of a DLL. Define USE_DL_EXPORT when making a DLL. - */ - -#include - -/* Configuration Options for Finding Modules */ -#define PREFIX "" -#define EXEC_PREFIX "" - -/* Provide a default library so writers of extension modules - * won't have to explicitly specify it anymore - */ -#pragma library("Python15.lib") - -/***************************************************/ -/* 32-Bit IBM VisualAge C/C++ v3.0 for OS/2 */ -/* (Convert Compiler Flags into Useful Switches) */ -/***************************************************/ -#define PLATFORM "os2" -#define COMPILER "[VisualAge C/C++]" -#define PYOS_OS2 /* Define Indicator of Operating System */ -#define PYCC_VACPP /* Define Indicator of C Compiler */ - - /* Platform Filesystem */ -#define PYTHONPATH ".;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk" -#define DOSFILESYS /* OS/2 Uses the DOS File Naming Conventions */ -/* #define IMPORT_8x3_NAMES (let's move up to long filenames) */ - - /* Platform CPU-Mode Dependencies */ -#define WORD_BIT 32 /* OS/2 is a 32-Bit Operating System */ -#define LONG_BIT 32 -#define SIZEOF_INT 4 /* Count of Bytes in an (int) */ -#define SIZEOF_LONG 4 /* Count of Bytes in a (long) */ -#define SIZEOF_VOID_P 4 /* Count of Bytes in a (void *) */ -/* #define HAVE_LONG_LONG 1 */ /* VAC++ does not support (long long) */ -/* #define SIZEOF_LONG_LONG 8 */ /* Count of Bytes in a (long long) */ - -/* Define if type char is unsigned and you are not using gcc. */ -#ifndef __CHAR_UNSIGNED__ -/* #undef __CHAR_UNSIGNED__ */ -#endif - -typedef int mode_t; -typedef int uid_t; -typedef int gid_t; -typedef int pid_t; - -#if defined(__MULTI__) /* If Compiler /Gt+ Multithread Option Enabled, */ - #define WITH_THREAD 1 /* Enable Threading Throughout Python */ - #define OS2_THREADS 1 /* And Use the OS/2 Flavor of Threads */ -/* #define _REENTRANT 1 */ /* Use thread-safe errno, h_errno, and other fns */ -#endif - - /* Compiler Runtime Library Capabilities */ -#include -#include -/* #undef BAD_STATIC_FORWARD */ /* if compiler botches static fwd decls */ - -#define STDC_HEADERS 1 /* VAC++ is an ANSI C Compiler */ -#define HAVE_LIMITS_H 1 /* #include */ -#define HAVE_STDLIB_H 1 /* #include */ -#define HAVE_HYPOT 1 /* hypot() */ -#define HAVE_PUTENV 1 /* putenv() */ -#define HAVE_STDDEF_H 1 /* #include */ -/* #define VA_LIST_IS_ARRAY 1 */ /* if va_list is an array of some kind */ - - /* Variable-Arguments/Prototypes */ -#define HAVE_PROTOTYPES 1 /* VAC++ supports C Function Prototypes */ -#define HAVE_STDARG_H 1 /* #include */ -#define HAVE_STDARG_PROTOTYPES 1 /* Our has prototypes */ - - /* String/Memory/Locale Operations */ -#define HAVE_STRDUP 1 /* strdup() */ -#define HAVE_MEMMOVE 1 /* memmove() */ -#define HAVE_STRERROR 1 /* strerror() */ -#define HAVE_SETLOCALE 1 /* setlocale() */ -#define HAVE_LOCALE_H 1 /* #include */ -#define MALLOC_ZERO_RETURNS_NULL 1 /* Our malloc(0) returns a NULL ptr */ - - /* Signal Handling */ -#define RETSIGTYPE void /* Return type of handlers (int or void) */ -#define HAVE_SIGNAL_H 1 /* #include */ -/* #undef WANT_SIGFPE_HANDLER */ /* Handle SIGFPE (see Include/pyfpe.h) */ -/* #define HAVE_ALARM 1 */ /* alarm() */ -/* #define HAVE_SIGINTERRUPT 1 */ /* siginterrupt() */ -/* #define HAVE_SIGRELSE 1 */ /* sigrelse() */ -#define DONT_HAVE_SIG_ALARM 1 -#define DONT_HAVE_SIG_PAUSE 1 - - /* Clock/Time Support */ -#define HAVE_FTIME 1 /* We have ftime() in */ -#define HAVE_CLOCK 1 /* clock() */ -#define HAVE_STRFTIME 1 /* strftime() */ -#define HAVE_STRPTIME 1 /* strptime() */ -#define HAVE_MKTIME 1 /* mktime() */ -#define HAVE_TZNAME 1 /* No tm_zone but do have tzname[] */ -#define HAVE_TIMES 1 /* #include */ -#define HAVE_SYS_UTIME_H 1 /* #include */ -/* #define HAVE_UTIME_H 1 */ /* #include */ -#define HAVE_SYS_TIME_H 1 /* #include */ -/* #define TM_IN_SYS_TIME 1 */ /* declares struct tm */ -#define HAVE_GETTIMEOFDAY 1 /* gettimeofday() */ -/* #define GETTIMEOFDAY_NO_TZ 1 */ /* gettimeofday() does not have 2nd arg */ -/* #define HAVE_TIMEGM 1 */ /* timegm() */ -#define TIME_WITH_SYS_TIME 1 /* Mix and */ -#define SYS_SELECT_WITH_SYS_TIME 1 /* Mix and */ -/* #define HAVE_ALTZONE 1 */ /* if defines altzone */ - - /* Network/Sockets Support */ -#define HAVE_SYS_SELECT_H 1 /* #include */ -#define BSD_SELECT 1 /* Use BSD versus OS/2 form of select() */ -#define HAVE_SELECT 1 /* select() */ -#define HAVE_GETPEERNAME 1 /* getpeername() */ -/* #undef HAVE_GETHOSTNAME_R 1 */ /* gethostname_r() */ - - /* File I/O */ -#define HAVE_DUP2 1 /* dup2() */ -#define HAVE_EXECV 1 /* execv() */ -#define HAVE_SETVBUF 1 /* setvbuf() */ -#define HAVE_GETCWD 1 /* getcwd() */ -#define HAVE_PIPE 1 /* pipe() [OS/2-specific code added] */ -#define HAVE_FCNTL_H 1 /* #include */ -/* #define HAVE_FLOCK 1 */ /* flock() */ -/* #define HAVE_TRUNCATE 1 */ /* truncate() */ -/* #define HAVE_FTRUNCATE 1 */ /* ftruncate() */ -/* #define HAVE_LSTAT 1 */ /* lstat() */ -/* #define HAVE_DIRENT_H 1 */ /* #include */ -/* #define HAVE_OPENDIR 1 */ /* opendir() */ - - /* Process Operations */ -#define HAVE_GETPID 1 /* getpid() */ -#define HAVE_SYSTEM 1 /* system() */ -#define HAVE_WAIT 1 /* wait() */ -#define HAVE_KILL 1 /* kill() [OS/2-specific code added] */ -#define HAVE_POPEN 1 /* popen() [OS/2-specific code added] */ -/* #define HAVE_GETPPID 1 */ /* getppid() */ -/* #define HAVE_WAITPID 1 */ /* waitpid() */ -/* #define HAVE_FORK 1 */ /* fork() */ - - /* User/Group ID Queries */ -/* #define HAVE_GETEGID 1 */ -/* #define HAVE_GETEUID 1 */ -/* #define HAVE_GETGID 1 */ -/* #define HAVE_GETUID 1 */ - - /* Unix-Specific */ -#define HAVE_SYS_UN_H 1 /* #include */ -/* #define HAVE_SYS_UTSNAME_H 1 */ /* #include */ -/* #define HAVE_SYS_WAIT_H 1 */ /* #include */ -/* #define HAVE_UNISTD_H 1 */ /* #include */ -/* #define HAVE_UNAME 1 */ /* uname () */ - -#ifdef USE_DL_EXPORT - #define DL_IMPORT(RTYPE) RTYPE _System -#endif - -#endif /* !Py_CONFIG_H */ - diff --git a/PC/os2vacpp/makefile b/PC/os2vacpp/makefile index c60cd80..66dfc32 100644 --- a/PC/os2vacpp/makefile +++ b/PC/os2vacpp/makefile @@ -342,7 +342,7 @@ depend: ### OPUS MKMF: Do not remove this line! Generated dependencies follow. _tkinter.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -355,7 +355,7 @@ _tkinter.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\class $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h almodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -369,7 +369,7 @@ almodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\class arraymodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -382,7 +382,7 @@ arraymodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\tupleobject.h audioop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -396,7 +396,7 @@ audioop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classo $(PY_INCLUDE)\tupleobject.h binascii.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -410,7 +410,7 @@ binascii.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\class bsddbmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -423,7 +423,7 @@ bsddbmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\tupleobject.h cdmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -437,7 +437,7 @@ cdmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\class cgensupport.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_MODULES)\cgensupport.h $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h \ - $(PY_INCLUDE)\complexobject.h config.h $(PY_INCLUDE)\dictobject.h \ + $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \ $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \ $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \ $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -450,7 +450,7 @@ cgensupport.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h clmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -464,7 +464,7 @@ clmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\class cmathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -477,7 +477,7 @@ cmathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\tupleobject.h cpickle.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\cstringio.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ @@ -492,7 +492,7 @@ cpickle.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classo cryptmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -505,7 +505,7 @@ cryptmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\tupleobject.h cstringio.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\cstringio.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ @@ -520,7 +520,7 @@ cstringio.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\clas cursesmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -533,7 +533,7 @@ cursesmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\tupleobject.h dbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -546,7 +546,7 @@ dbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\clas $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h dlmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -559,7 +559,7 @@ dlmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\class $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h errno.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -573,7 +573,7 @@ errno.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobj errnomodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -587,7 +587,7 @@ errnomodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ fcntlmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\ioctl.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -600,7 +600,7 @@ fcntlmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\ioctl.h $(PY_I $(PY_INCLUDE)\tupleobject.h flmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -614,7 +614,7 @@ flmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\class $(PY_INCLUDE)\tupleobject.h fmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -628,7 +628,7 @@ fmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\class fpectlmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -642,7 +642,7 @@ fpectlmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ fpetestmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -655,7 +655,7 @@ fpetestmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\tupleobject.h gdbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -667,10 +667,10 @@ gdbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\cla $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h -getbuildinfo.obj: config.h +getbuildinfo.obj: pyconfig.h getpath.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -685,7 +685,7 @@ getpath.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classo glmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_MODULES)\cgensupport.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -698,7 +698,7 @@ glmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_MODULES)\cgens $(PY_INCLUDE)\tupleobject.h grpmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(OS2TCPIP)\Include\grp.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ @@ -712,7 +712,7 @@ grpmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\clas $(PY_INCLUDE)\tupleobject.h imageop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -725,7 +725,7 @@ imageop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classo $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h imgfile.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -738,7 +738,7 @@ imgfile.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classo $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h main.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -751,7 +751,7 @@ main.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobje $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h mathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -764,10 +764,10 @@ mathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\cla $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ $(PY_INCLUDE)\tupleobject.h -md5c.obj: config.h $(PY_MODULES)\md5.h +md5c.obj: pyconfig.h $(PY_MODULES)\md5.h md5module.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -781,7 +781,7 @@ md5module.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\clas mpzmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_PARSER)\assert.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h \ @@ -795,7 +795,7 @@ mpzmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_PARSER)\assert.h $(PY_INCLUDE)\ceva newmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -809,7 +809,7 @@ newmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\clas nismodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -822,7 +822,7 @@ nismodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCL $(PY_INCLUDE)\tupleobject.h operator.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -836,7 +836,7 @@ operator.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\class parsermodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \ - $(PY_INCLUDE)\complexobject.h config.h $(PY_INCLUDE)\dictobject.h \ + $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \ $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \ $(PY_INCLUDE)\graminit.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -850,7 +850,7 @@ parsermodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h pcremodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -864,7 +864,7 @@ pcremodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\cla $(PY_INCLUDE)\tupleobject.h posix.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -879,7 +879,7 @@ posix.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobj posixmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -892,7 +892,7 @@ posixmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\tupleobject.h puremodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -905,7 +905,7 @@ puremodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\cla $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h pwdmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -919,7 +919,7 @@ pwdmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\clas $(PY_INCLUDE)\tupleobject.h pypcre.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\graminit.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ @@ -933,7 +933,7 @@ pypcre.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classob $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h readline.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -947,7 +947,7 @@ readline.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\class regexmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -961,7 +961,7 @@ regexmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ regexpr.obj: $(PY_INCLUDE)\abstract.h $(PY_PARSER)\assert.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -975,7 +975,7 @@ regexpr.obj: $(PY_INCLUDE)\abstract.h $(PY_PARSER)\assert.h $(PY_INCLUDE)\ceval. resource.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -989,7 +989,7 @@ resource.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLU rgbimgmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1003,7 +1003,7 @@ rgbimgmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ rotormodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1017,7 +1017,7 @@ rotormodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ selectmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1030,7 +1030,7 @@ selectmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h sgimodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1044,7 +1044,7 @@ sgimodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\clas signalmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1058,7 +1058,7 @@ signalmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ socketmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\netinet\in.h \ $(OS2TCPIP)\Include\sys\socket.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1072,7 +1072,7 @@ socketmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\netinet\in.h \ $(PY_INCLUDE)\tupleobject.h soundex.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1086,7 +1086,7 @@ soundex.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classo stdwinmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1100,7 +1100,7 @@ stdwinmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ stropmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1114,7 +1114,7 @@ stropmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ structmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1128,7 +1128,7 @@ structmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ sunaudiodev.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\ioctl.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1142,7 +1142,7 @@ sunaudiodev.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\ioctl.h $(PY_I svmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \ - $(PY_INCLUDE)\complexobject.h config.h $(PY_INCLUDE)\dictobject.h \ + $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \ $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \ $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \ $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1157,7 +1157,7 @@ svmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLU syslogmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1170,7 +1170,7 @@ syslogmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h termios.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1184,7 +1184,7 @@ termios.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classo threadmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1197,7 +1197,7 @@ threadmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h timemodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1212,7 +1212,7 @@ timemodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\cla timingmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1225,7 +1225,7 @@ timingmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h xxmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1240,7 +1240,7 @@ xxmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\class yuvconvert.obj: $(PY_MODULES)\yuv.h zlibmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1253,7 +1253,7 @@ zlibmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\cla $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h abstract.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1267,7 +1267,7 @@ abstract.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\class classobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1280,7 +1280,7 @@ classobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h cobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1294,7 +1294,7 @@ cobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classo complexobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1307,7 +1307,7 @@ complexobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\tupleobject.h dictobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1320,7 +1320,7 @@ dictobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\cla $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h fileobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1335,7 +1335,7 @@ fileobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\cla floatobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1349,7 +1349,7 @@ floatobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ frameobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \ - $(PY_INCLUDE)\complexobject.h config.h $(PY_INCLUDE)\dictobject.h \ + $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \ $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\frameobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ @@ -1364,7 +1364,7 @@ frameobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ funcobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1377,7 +1377,7 @@ funcobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\cla $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h intobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1390,7 +1390,7 @@ intobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\clas $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h listobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1404,7 +1404,7 @@ listobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\cla longobject.obj: $(PY_INCLUDE)\abstract.h $(PY_PARSER)\assert.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h \ @@ -1419,7 +1419,7 @@ longobject.obj: $(PY_INCLUDE)\abstract.h $(PY_PARSER)\assert.h $(PY_INCLUDE)\cev methodobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1433,7 +1433,7 @@ methodobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ moduleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1446,7 +1446,7 @@ moduleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\tupleobject.h object.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1460,7 +1460,7 @@ object.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classob rangeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1474,7 +1474,7 @@ rangeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ sliceobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1488,7 +1488,7 @@ sliceobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ stringobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1502,7 +1502,7 @@ stringobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ tupleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1515,7 +1515,7 @@ tupleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\tupleobject.h typeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1528,7 +1528,7 @@ typeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\cla $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h xxobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1540,77 +1540,77 @@ xxobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\class $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h -acceler.obj: $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\grammar.h \ +acceler.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \ $(PY_PARSER)\parser.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \ $(PY_INCLUDE)\token.h -bitset.obj: $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\mymalloc.h \ +bitset.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\mymalloc.h \ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h -firstsets.obj: $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\grammar.h \ +firstsets.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h -grammar.obj: $(PY_PARSER)\assert.h $(PY_INCLUDE)\bitset.h config.h \ +grammar.obj: $(PY_PARSER)\assert.h $(PY_INCLUDE)\bitset.h pyconfig.h \ $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h -grammar1.obj: $(PY_PARSER)\assert.h $(PY_INCLUDE)\bitset.h config.h \ +grammar1.obj: $(PY_PARSER)\assert.h $(PY_INCLUDE)\bitset.h pyconfig.h \ $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h -intrcheck.obj: config.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \ +intrcheck.obj: pyconfig.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \ $(PY_INCLUDE)\myproto.h -listnode.obj: config.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ +listnode.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ $(PY_INCLUDE)\node.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \ $(PY_INCLUDE)\token.h -metagrammar.obj: $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\grammar.h \ +metagrammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h -myreadline.obj: config.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \ +myreadline.obj: pyconfig.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \ $(PY_INCLUDE)\myproto.h -node.obj: config.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \ +node.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \ $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h -parser.obj: $(PY_PARSER)\assert.h $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\errcode.h \ +parser.obj: $(PY_PARSER)\assert.h $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\errcode.h \ $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ $(PY_INCLUDE)\node.h $(PY_PARSER)\parser.h $(PY_INCLUDE)\pgenheaders.h \ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h -parsetok.obj: $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\errcode.h \ +parsetok.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\errcode.h \ $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ $(PY_INCLUDE)\node.h $(PY_PARSER)\parser.h $(PY_INCLUDE)\parsetok.h \ $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h \ $(PY_PARSER)\tokenizer.h -pgen.obj: $(PY_PARSER)\assert.h $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\grammar.h \ +pgen.obj: $(PY_PARSER)\assert.h $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ $(PY_INCLUDE)\node.h $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h \ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h -pgenmain.obj: $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\grammar.h \ +pgenmain.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \ $(PY_INCLUDE)\parsetok.h $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h \ $(PY_INCLUDE)\pydebug.h -printgrammar.obj: $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\grammar.h \ +printgrammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \ $(PY_INCLUDE)\pydebug.h -tokenizer.obj: config.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\mymalloc.h \ +tokenizer.obj: pyconfig.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\mymalloc.h \ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \ $(PY_INCLUDE)\token.h $(PY_PARSER)\tokenizer.h -atof.obj: config.h +atof.obj: pyconfig.h bltinmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \ - $(PY_INCLUDE)\complexobject.h config.h $(PY_INCLUDE)\dictobject.h \ + $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \ $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1625,7 +1625,7 @@ bltinmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ ceval.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\eval.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\eval.h \ $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\frameobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ @@ -1640,7 +1640,7 @@ ceval.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobj compile.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\graminit.h \ $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \ $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1655,7 +1655,7 @@ compile.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classo $(PY_INCLUDE)\tupleobject.h errors.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1667,10 +1667,10 @@ errors.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classob $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h -fmod.obj: config.h $(PY_INCLUDE)\mymath.h +fmod.obj: pyconfig.h $(PY_INCLUDE)\mymath.h frozen.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1683,7 +1683,7 @@ frozen.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classob $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h frozenmain.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1696,7 +1696,7 @@ frozenmain.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\cla $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h getargs.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1710,7 +1710,7 @@ getargs.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classo getcompiler.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1724,7 +1724,7 @@ getcompiler.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ getcopyright.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1736,11 +1736,11 @@ getcopyright.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ $(PY_INCLUDE)\tupleobject.h -getmtime.obj: config.h +getmtime.obj: pyconfig.h getplatform.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1753,7 +1753,7 @@ getplatform.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\tupleobject.h getversion.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1766,15 +1766,15 @@ getversion.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\cla $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ $(PY_INCLUDE)\tupleobject.h -graminit.obj: $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\grammar.h \ +graminit.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \ $(PY_INCLUDE)\pydebug.h -hypot.obj: config.h $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h +hypot.obj: pyconfig.h $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h import.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h \ $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \ $(PY_INCLUDE)\import.h $(PY_PYTHON)\importdl.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1788,7 +1788,7 @@ import.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classob $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h importdl.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_PYTHON)\importdl.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ @@ -1803,7 +1803,7 @@ importdl.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\class marshal.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\marshal.h \ @@ -1816,7 +1816,7 @@ marshal.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classo $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h modsupport.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1828,12 +1828,12 @@ modsupport.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\cla $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h -mystrtoul.obj: config.h +mystrtoul.obj: pyconfig.h -pyfpe.obj: config.h $(PY_INCLUDE)\pyfpe.h +pyfpe.obj: pyconfig.h $(PY_INCLUDE)\pyfpe.h pystate.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1847,7 +1847,7 @@ pystate.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classo pythonrun.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\bitset.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \ - $(PY_INCLUDE)\complexobject.h config.h $(PY_INCLUDE)\dictobject.h \ + $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \ $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\grammar.h \ $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \ @@ -1862,7 +1862,7 @@ pythonrun.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\bitset.h $(PY_INCLUDE)\cev $(PY_INCLUDE)\tupleobject.h sigcheck.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1874,13 +1874,13 @@ sigcheck.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\class $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h -strdup.obj: config.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h +strdup.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h -strtod.obj: config.h +strtod.obj: pyconfig.h structmember.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ @@ -1893,7 +1893,7 @@ structmember.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h sysmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ - $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \ + $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ @@ -1906,11 +1906,11 @@ sysmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\clas $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ $(PY_INCLUDE)\tupleobject.h -thread.obj: config.h $(PY_INCLUDE)\thread.h +thread.obj: pyconfig.h $(PY_INCLUDE)\thread.h traceback.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \ - config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ + pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\frameobject.h \ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ diff --git a/PC/os2vacpp/makefile.omk b/PC/os2vacpp/makefile.omk index 38e1906..d359726 100644 --- a/PC/os2vacpp/makefile.omk +++ b/PC/os2vacpp/makefile.omk @@ -352,7 +352,7 @@ depend: ### OPUS MKMF: Do not remove this line! Generated dependencies follow. _tkinter.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -360,7 +360,7 @@ _tkinter.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h almodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -368,7 +368,7 @@ almodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h arraymodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -376,7 +376,7 @@ arraymodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h audioop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -384,7 +384,7 @@ audioop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h binascii.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -392,7 +392,7 @@ binascii.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h bsddbmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -400,7 +400,7 @@ bsddbmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h cdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -408,7 +408,7 @@ cdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h cgensupport.obj: abstract.h ceval.h cgensupport.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -416,7 +416,7 @@ cgensupport.obj: abstract.h ceval.h cgensupport.h classobject.h cobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h clmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -424,7 +424,7 @@ clmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h cmathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -432,7 +432,7 @@ cmathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h cpickle.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h cstringio.h dictobject.h fileobject.h floatobject.h \ + pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -440,7 +440,7 @@ cpickle.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h cryptmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -448,7 +448,7 @@ cryptmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h cstringio.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h cstringio.h dictobject.h fileobject.h floatobject.h \ + pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -456,7 +456,7 @@ cstringio.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h cursesmodule.obj: abstract.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -464,7 +464,7 @@ cursesmodule.obj: abstract.h ceval.h classobject.h cobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h dbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -472,7 +472,7 @@ dbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h dlmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -480,7 +480,7 @@ dlmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h errno.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -488,7 +488,7 @@ errno.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h errnomodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -496,7 +496,7 @@ errnomodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h fcntlmodule.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \ - classobject.h cobject.h complexobject.h config.h dictobject.h \ + classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \ fileobject.h floatobject.h funcobject.h import.h intobject.h \ intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \ moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ @@ -504,7 +504,7 @@ fcntlmodule.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \ sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h flmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -512,7 +512,7 @@ flmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ structmember.h sysmodule.h traceback.h tupleobject.h fmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -520,7 +520,7 @@ fmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h fpectlmodule.obj: abstract.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -528,7 +528,7 @@ fpectlmodule.obj: abstract.h ceval.h classobject.h cobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h fpetestmodule.obj: abstract.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -536,17 +536,17 @@ fpetestmodule.obj: abstract.h ceval.h classobject.h cobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h gdbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ traceback.h tupleobject.h -getbuildinfo.obj: config.h +getbuildinfo.obj: pyconfig.h getpath.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \ @@ -554,7 +554,7 @@ getpath.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ sysmodule.h traceback.h tupleobject.h glmodule.obj: abstract.h ceval.h cgensupport.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -562,7 +562,7 @@ glmodule.obj: abstract.h ceval.h cgensupport.h classobject.h cobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h grpmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ grp.h import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -570,7 +570,7 @@ grpmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h imageop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -578,7 +578,7 @@ imageop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h imgfile.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -586,7 +586,7 @@ imgfile.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h main.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -594,17 +594,17 @@ main.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h mathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h -md5c.obj: config.h md5.h +md5c.obj: pyconfig.h md5.h md5module.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h md5.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -612,7 +612,7 @@ md5module.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h mpzmodule.obj: abstract.h assert.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longintrepr.h longobject.h methodobject.h modsupport.h \ moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ @@ -620,7 +620,7 @@ mpzmodule.obj: abstract.h assert.h ceval.h classobject.h cobject.h \ sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h newmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -628,7 +628,7 @@ newmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ stringobject.h sysmodule.h traceback.h tupleobject.h nismodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \ - cobject.h complexobject.h config.h dictobject.h fileobject.h \ + cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \ floatobject.h funcobject.h import.h intobject.h intrcheck.h \ listobject.h longobject.h methodobject.h modsupport.h \ moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ @@ -636,7 +636,7 @@ nismodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \ sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h operator.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -644,7 +644,7 @@ operator.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h parsermodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h graminit.h import.h intobject.h intrcheck.h \ listobject.h longobject.h methodobject.h modsupport.h \ moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \ @@ -653,7 +653,7 @@ parsermodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ traceback.h tupleobject.h pcremodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pcre-internal.h pcre.h pydebug.h pyerrors.h \ @@ -661,7 +661,7 @@ pcremodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h posix.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \ @@ -669,7 +669,7 @@ posix.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ sysmodule.h traceback.h tupleobject.h posixmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \ @@ -677,7 +677,7 @@ posixmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ sysmodule.h traceback.h tupleobject.h puremodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -685,7 +685,7 @@ puremodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h pwdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pwd.h pydebug.h pyerrors.h pyfpe.h pystate.h \ @@ -693,7 +693,7 @@ pwdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ sysmodule.h traceback.h tupleobject.h pypcre.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ graminit.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pcre-internal.h pcre.h pydebug.h \ @@ -701,7 +701,7 @@ pypcre.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h readline.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -709,7 +709,7 @@ readline.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h regexmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -717,7 +717,7 @@ regexmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ sysmodule.h traceback.h tupleobject.h regexpr.obj: abstract.h assert.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -725,7 +725,7 @@ regexpr.obj: abstract.h assert.h ceval.h classobject.h cobject.h \ sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h reopmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -733,7 +733,7 @@ reopmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ sysmodule.h traceback.h tupleobject.h resource.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \ - cobject.h complexobject.h config.h dictobject.h fileobject.h \ + cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \ floatobject.h funcobject.h import.h intobject.h intrcheck.h \ listobject.h longobject.h methodobject.h modsupport.h \ moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ @@ -741,7 +741,7 @@ resource.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \ sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h rgbimgmodule.obj: abstract.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -749,7 +749,7 @@ rgbimgmodule.obj: abstract.h ceval.h classobject.h cobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h rotormodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -757,7 +757,7 @@ rotormodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h selectmodule.obj: abstract.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h myselect.h mytime.h object.h objimpl.h pydebug.h \ @@ -765,7 +765,7 @@ selectmodule.obj: abstract.h ceval.h classobject.h cobject.h \ sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h sgimodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -773,7 +773,7 @@ sgimodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h signalmodule.obj: abstract.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -782,7 +782,7 @@ signalmodule.obj: abstract.h ceval.h classobject.h cobject.h \ socketmodule.obj: abstract.h c:\mptn\include\netinet\in.h \ c:\mptn\include\sys\socket.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h mytime.h netdb.h object.h objimpl.h pydebug.h pyerrors.h \ @@ -790,7 +790,7 @@ socketmodule.obj: abstract.h c:\mptn\include\netinet\in.h \ stringobject.h sysmodule.h traceback.h tupleobject.h soundex.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -798,7 +798,7 @@ soundex.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h stdwinmodule.obj: abstract.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -806,7 +806,7 @@ stdwinmodule.obj: abstract.h ceval.h classobject.h cobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h stropmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -814,7 +814,7 @@ stropmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h structmodule.obj: abstract.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -822,7 +822,7 @@ structmodule.obj: abstract.h ceval.h classobject.h cobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h sunaudiodev.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \ - classobject.h cobject.h complexobject.h config.h dictobject.h \ + classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \ fileobject.h floatobject.h funcobject.h import.h intobject.h \ intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \ moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ @@ -831,7 +831,7 @@ sunaudiodev.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \ traceback.h tupleobject.h svmodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \ - cobject.h compile.h complexobject.h config.h dictobject.h \ + cobject.h compile.h complexobject.h pyconfig.h dictobject.h \ fileobject.h floatobject.h funcobject.h import.h intobject.h \ intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \ moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ @@ -840,7 +840,7 @@ svmodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \ yuv.h syslogmodule.obj: abstract.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -848,7 +848,7 @@ syslogmodule.obj: abstract.h ceval.h classobject.h cobject.h \ stringobject.h syslog.h sysmodule.h traceback.h tupleobject.h termios.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -856,7 +856,7 @@ termios.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h threadmodule.obj: abstract.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -864,7 +864,7 @@ threadmodule.obj: abstract.h ceval.h classobject.h cobject.h \ stringobject.h sysmodule.h thread.h traceback.h tupleobject.h timemodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \ @@ -872,7 +872,7 @@ timemodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ sysmodule.h traceback.h tupleobject.h timingmodule.obj: abstract.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -880,7 +880,7 @@ timingmodule.obj: abstract.h ceval.h classobject.h cobject.h \ stringobject.h sysmodule.h timing.h traceback.h tupleobject.h xxmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -890,7 +890,7 @@ xxmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ yuvconvert.obj: yuv.h zlibmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -898,7 +898,7 @@ zlibmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h abstract.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -906,7 +906,7 @@ abstract.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h classobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -914,7 +914,7 @@ classobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ structmember.h sysmodule.h traceback.h tupleobject.h cobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -922,7 +922,7 @@ cobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h complexobject.obj: abstract.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -930,7 +930,7 @@ complexobject.obj: abstract.h ceval.h classobject.h cobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h dictobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -938,7 +938,7 @@ dictobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h fileobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -946,7 +946,7 @@ fileobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ structmember.h sysmodule.h traceback.h tupleobject.h floatobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -954,7 +954,7 @@ floatobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h frameobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ frameobject.h funcobject.h import.h intobject.h intrcheck.h \ listobject.h longobject.h methodobject.h modsupport.h \ moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \ @@ -963,7 +963,7 @@ frameobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ sysmodule.h traceback.h tupleobject.h funcobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -972,7 +972,7 @@ funcobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ tupleobject.h intobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -980,7 +980,7 @@ intobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h listobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -988,7 +988,7 @@ listobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h longobject.obj: abstract.h assert.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longintrepr.h longobject.h methodobject.h modsupport.h \ moduleobject.h mymalloc.h mymath.h myproto.h object.h objimpl.h \ @@ -997,7 +997,7 @@ longobject.obj: abstract.h assert.h ceval.h classobject.h cobject.h \ tupleobject.h methodobject.obj: abstract.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -1005,7 +1005,7 @@ methodobject.obj: abstract.h ceval.h classobject.h cobject.h \ stringobject.h sysmodule.h token.h traceback.h tupleobject.h moduleobject.obj: abstract.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -1013,7 +1013,7 @@ moduleobject.obj: abstract.h ceval.h classobject.h cobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h object.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -1021,7 +1021,7 @@ object.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h rangeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -1029,7 +1029,7 @@ rangeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h sliceobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -1037,7 +1037,7 @@ sliceobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h stringobject.obj: abstract.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -1045,7 +1045,7 @@ stringobject.obj: abstract.h ceval.h classobject.h cobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h tupleobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -1053,7 +1053,7 @@ tupleobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h typeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -1061,62 +1061,62 @@ typeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h xxobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ traceback.h tupleobject.h -acceler.obj: bitset.h config.h grammar.h mymalloc.h myproto.h node.h \ +acceler.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \ parser.h pgenheaders.h pydebug.h token.h -bitset.obj: bitset.h config.h mymalloc.h myproto.h pgenheaders.h pydebug.h +bitset.obj: bitset.h pyconfig.h mymalloc.h myproto.h pgenheaders.h pydebug.h -firstsets.obj: bitset.h config.h grammar.h mymalloc.h myproto.h \ +firstsets.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \ pgenheaders.h pydebug.h token.h -grammar.obj: assert.h bitset.h config.h grammar.h mymalloc.h myproto.h \ +grammar.obj: assert.h bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \ pgenheaders.h pydebug.h token.h -grammar1.obj: assert.h bitset.h config.h grammar.h mymalloc.h myproto.h \ +grammar1.obj: assert.h bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \ pgenheaders.h pydebug.h token.h -intrcheck.obj: config.h intrcheck.h mymalloc.h myproto.h +intrcheck.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h -listnode.obj: config.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h \ +listnode.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h \ token.h -metagrammar.obj: bitset.h config.h grammar.h metagrammar.h mymalloc.h \ +metagrammar.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \ myproto.h pgen.h pgenheaders.h pydebug.h -myreadline.obj: config.h intrcheck.h mymalloc.h myproto.h +myreadline.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h -node.obj: config.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h +node.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h -parser.obj: assert.h bitset.h config.h errcode.h grammar.h mymalloc.h \ +parser.obj: assert.h bitset.h pyconfig.h errcode.h grammar.h mymalloc.h \ myproto.h node.h parser.h pgenheaders.h pydebug.h token.h -parsetok.obj: bitset.h config.h errcode.h grammar.h mymalloc.h myproto.h \ +parsetok.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h myproto.h \ node.h parser.h parsetok.h pgenheaders.h pydebug.h token.h \ tokenizer.h -pgen.obj: assert.h bitset.h config.h grammar.h metagrammar.h mymalloc.h \ +pgen.obj: assert.h bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \ myproto.h node.h pgen.h pgenheaders.h pydebug.h token.h -pgenmain.obj: bitset.h config.h grammar.h mymalloc.h myproto.h node.h \ +pgenmain.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \ parsetok.h pgen.h pgenheaders.h pydebug.h -printgrammar.obj: bitset.h config.h grammar.h mymalloc.h myproto.h \ +printgrammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \ pgenheaders.h pydebug.h -tokenizer.obj: config.h errcode.h mymalloc.h myproto.h pgenheaders.h \ +tokenizer.obj: pyconfig.h errcode.h mymalloc.h myproto.h pgenheaders.h \ pydebug.h token.h tokenizer.h -atof.obj: config.h +atof.obj: pyconfig.h bltinmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ - complexobject.h config.h dictobject.h eval.h fileobject.h \ + complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \ floatobject.h funcobject.h import.h intobject.h intrcheck.h \ listobject.h longobject.h methodobject.h modsupport.h \ moduleobject.h mymalloc.h mymath.h myproto.h node.h object.h \ @@ -1125,7 +1125,7 @@ bltinmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ traceback.h tupleobject.h ceval.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ - complexobject.h config.h dictobject.h eval.h fileobject.h \ + complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \ floatobject.h frameobject.h funcobject.h import.h intobject.h \ intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \ moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \ @@ -1134,7 +1134,7 @@ ceval.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ tupleobject.h compile.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h graminit.h import.h intobject.h intrcheck.h \ listobject.h longobject.h methodobject.h modsupport.h \ moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \ @@ -1143,17 +1143,17 @@ compile.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ structmember.h sysmodule.h token.h traceback.h tupleobject.h errors.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ traceback.h tupleobject.h -fmod.obj: config.h mymath.h +fmod.obj: pyconfig.h mymath.h frozen.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -1161,7 +1161,7 @@ frozen.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h frozenmain.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -1169,7 +1169,7 @@ frozenmain.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h getargs.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -1177,7 +1177,7 @@ getargs.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h getcompiler.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -1185,17 +1185,17 @@ getcompiler.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h getcopyright.obj: abstract.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h -getmtime.obj: config.h +getmtime.obj: pyconfig.h getplatform.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -1203,20 +1203,20 @@ getplatform.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h getversion.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h patchlevel.h pydebug.h pyerrors.h pyfpe.h \ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h -graminit.obj: bitset.h config.h grammar.h mymalloc.h myproto.h \ +graminit.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \ pgenheaders.h pydebug.h -hypot.obj: config.h mymath.h myproto.h +hypot.obj: pyconfig.h mymath.h myproto.h import.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ - complexobject.h config.h dictobject.h errcode.h eval.h \ + complexobject.h pyconfig.h dictobject.h errcode.h eval.h \ fileobject.h floatobject.h funcobject.h import.h importdl.h \ intobject.h intrcheck.h listobject.h longobject.h marshal.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ @@ -1225,7 +1225,7 @@ import.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ stringobject.h sysmodule.h token.h traceback.h tupleobject.h importdl.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h importdl.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \ @@ -1233,7 +1233,7 @@ importdl.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h marshal.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longintrepr.h longobject.h marshal.h methodobject.h modsupport.h \ moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ @@ -1241,19 +1241,19 @@ marshal.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h modsupport.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ traceback.h tupleobject.h -mystrtoul.obj: config.h +mystrtoul.obj: pyconfig.h -pyfpe.obj: config.h pyfpe.h +pyfpe.obj: pyconfig.h pyfpe.h pystate.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ @@ -1261,7 +1261,7 @@ pystate.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ traceback.h tupleobject.h pythonrun.obj: abstract.h bitset.h ceval.h classobject.h cobject.h \ - compile.h complexobject.h config.h dictobject.h errcode.h eval.h \ + compile.h complexobject.h pyconfig.h dictobject.h errcode.h eval.h \ fileobject.h floatobject.h funcobject.h grammar.h import.h \ intobject.h intrcheck.h listobject.h longobject.h marshal.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ @@ -1270,19 +1270,19 @@ pythonrun.obj: abstract.h bitset.h ceval.h classobject.h cobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h sigcheck.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ traceback.h tupleobject.h -strdup.obj: config.h mymalloc.h myproto.h +strdup.obj: pyconfig.h mymalloc.h myproto.h -strtod.obj: config.h +strtod.obj: pyconfig.h structmember.obj: abstract.h ceval.h classobject.h cobject.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ funcobject.h import.h intobject.h intrcheck.h listobject.h \ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ @@ -1291,17 +1291,17 @@ structmember.obj: abstract.h ceval.h classobject.h cobject.h \ tupleobject.h sysmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ - config.h dictobject.h fileobject.h floatobject.h funcobject.h \ + pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ import.h intobject.h intrcheck.h listobject.h longobject.h \ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \ python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ sysmodule.h traceback.h tupleobject.h -thread.obj: config.h thread.h +thread.obj: pyconfig.h thread.h traceback.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ - complexobject.h config.h dictobject.h fileobject.h floatobject.h \ + complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ frameobject.h funcobject.h import.h intobject.h intrcheck.h \ listobject.h longobject.h methodobject.h modsupport.h \ moduleobject.h mymalloc.h myproto.h object.h objimpl.h osdefs.h \ diff --git a/PC/os2vacpp/pyconfig.h b/PC/os2vacpp/pyconfig.h new file mode 100644 index 0000000..e7901e3 --- /dev/null +++ b/PC/os2vacpp/pyconfig.h @@ -0,0 +1,202 @@ +#ifndef Py_CONFIG_H +#define Py_CONFIG_H + +/********************************************************************** + * config.h. NOT Generated automatically by configure. + * + * This is a manually maintained version used for the IBM VisualAge + * C/C++ compiler on the OS/2 platform. It is a standard part of + * the Python distribution. + * + * FILESYSTEM DEFINES: + * The code specific to a particular way of naming files and + * directory paths should be wrapped around one of the following + * #defines: + * + * DOSFILESYS PCDOS-Style (for PCDOS, Windows and OS/2) + * MACFILESYS Macintosh-Style + * UNIXFILESYS Unix-Style + * AMIGAFILESYS AmigaDOS-Style + * + * Because of the different compilers and operating systems in + * use on the Intel platform, neither the compiler name nor + * the operating system name is sufficient. + * + * OS/2 DEFINES: + * The code specific to OS/2's Program API should be wrapped around + * + * __TOS_OS2__ Target Operating System, OS/2 + * + * Any code specific to the compiler itself should be wrapped with + * + * __IBMC__ IBM C Compiler + * __IBMCPP__ IBM C++ Compiler + * + * Note that since the VisualAge C/C++ compiler is also available + * for the Windows platform, it may be necessary to use both a + * __TOS_OS2__ and a __IBMC__ to select a very specific environment. + * + **********************************************************************/ + +/* + * Some systems require special declarations for data items imported + * or exported from dynamic link libraries. Note that the definition + * of DL_IMPORT covers both cases. Define USE_DL_IMPORT for the client + * of a DLL. Define USE_DL_EXPORT when making a DLL. + */ + +#include + +/* Configuration Options for Finding Modules */ +#define PREFIX "" +#define EXEC_PREFIX "" + +/* Provide a default library so writers of extension modules + * won't have to explicitly specify it anymore + */ +#pragma library("Python15.lib") + +/***************************************************/ +/* 32-Bit IBM VisualAge C/C++ v3.0 for OS/2 */ +/* (Convert Compiler Flags into Useful Switches) */ +/***************************************************/ +#define PLATFORM "os2" +#define COMPILER "[VisualAge C/C++]" +#define PYOS_OS2 /* Define Indicator of Operating System */ +#define PYCC_VACPP /* Define Indicator of C Compiler */ + + /* Platform Filesystem */ +#define PYTHONPATH ".;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk" +#define DOSFILESYS /* OS/2 Uses the DOS File Naming Conventions */ +/* #define IMPORT_8x3_NAMES (let's move up to long filenames) */ + + /* Platform CPU-Mode Dependencies */ +#define WORD_BIT 32 /* OS/2 is a 32-Bit Operating System */ +#define LONG_BIT 32 +#define SIZEOF_INT 4 /* Count of Bytes in an (int) */ +#define SIZEOF_LONG 4 /* Count of Bytes in a (long) */ +#define SIZEOF_VOID_P 4 /* Count of Bytes in a (void *) */ +/* #define HAVE_LONG_LONG 1 */ /* VAC++ does not support (long long) */ +/* #define SIZEOF_LONG_LONG 8 */ /* Count of Bytes in a (long long) */ + +/* Define if type char is unsigned and you are not using gcc. */ +#ifndef __CHAR_UNSIGNED__ +/* #undef __CHAR_UNSIGNED__ */ +#endif + +typedef int mode_t; +typedef int uid_t; +typedef int gid_t; +typedef int pid_t; + +#if defined(__MULTI__) /* If Compiler /Gt+ Multithread Option Enabled, */ + #define WITH_THREAD 1 /* Enable Threading Throughout Python */ + #define OS2_THREADS 1 /* And Use the OS/2 Flavor of Threads */ +/* #define _REENTRANT 1 */ /* Use thread-safe errno, h_errno, and other fns */ +#endif + + /* Compiler Runtime Library Capabilities */ +#include +#include +/* #undef BAD_STATIC_FORWARD */ /* if compiler botches static fwd decls */ + +#define STDC_HEADERS 1 /* VAC++ is an ANSI C Compiler */ +#define HAVE_LIMITS_H 1 /* #include */ +#define HAVE_STDLIB_H 1 /* #include */ +#define HAVE_HYPOT 1 /* hypot() */ +#define HAVE_PUTENV 1 /* putenv() */ +#define HAVE_STDDEF_H 1 /* #include */ +/* #define VA_LIST_IS_ARRAY 1 */ /* if va_list is an array of some kind */ + + /* Variable-Arguments/Prototypes */ +#define HAVE_PROTOTYPES 1 /* VAC++ supports C Function Prototypes */ +#define HAVE_STDARG_H 1 /* #include */ +#define HAVE_STDARG_PROTOTYPES 1 /* Our has prototypes */ + + /* String/Memory/Locale Operations */ +#define HAVE_STRDUP 1 /* strdup() */ +#define HAVE_MEMMOVE 1 /* memmove() */ +#define HAVE_STRERROR 1 /* strerror() */ +#define HAVE_SETLOCALE 1 /* setlocale() */ +#define HAVE_LOCALE_H 1 /* #include */ +#define MALLOC_ZERO_RETURNS_NULL 1 /* Our malloc(0) returns a NULL ptr */ + + /* Signal Handling */ +#define RETSIGTYPE void /* Return type of handlers (int or void) */ +#define HAVE_SIGNAL_H 1 /* #include */ +/* #undef WANT_SIGFPE_HANDLER */ /* Handle SIGFPE (see Include/pyfpe.h) */ +/* #define HAVE_ALARM 1 */ /* alarm() */ +/* #define HAVE_SIGINTERRUPT 1 */ /* siginterrupt() */ +/* #define HAVE_SIGRELSE 1 */ /* sigrelse() */ +#define DONT_HAVE_SIG_ALARM 1 +#define DONT_HAVE_SIG_PAUSE 1 + + /* Clock/Time Support */ +#define HAVE_FTIME 1 /* We have ftime() in */ +#define HAVE_CLOCK 1 /* clock() */ +#define HAVE_STRFTIME 1 /* strftime() */ +#define HAVE_STRPTIME 1 /* strptime() */ +#define HAVE_MKTIME 1 /* mktime() */ +#define HAVE_TZNAME 1 /* No tm_zone but do have tzname[] */ +#define HAVE_TIMES 1 /* #include */ +#define HAVE_SYS_UTIME_H 1 /* #include */ +/* #define HAVE_UTIME_H 1 */ /* #include */ +#define HAVE_SYS_TIME_H 1 /* #include */ +/* #define TM_IN_SYS_TIME 1 */ /* declares struct tm */ +#define HAVE_GETTIMEOFDAY 1 /* gettimeofday() */ +/* #define GETTIMEOFDAY_NO_TZ 1 */ /* gettimeofday() does not have 2nd arg */ +/* #define HAVE_TIMEGM 1 */ /* timegm() */ +#define TIME_WITH_SYS_TIME 1 /* Mix and */ +#define SYS_SELECT_WITH_SYS_TIME 1 /* Mix and */ +/* #define HAVE_ALTZONE 1 */ /* if defines altzone */ + + /* Network/Sockets Support */ +#define HAVE_SYS_SELECT_H 1 /* #include */ +#define BSD_SELECT 1 /* Use BSD versus OS/2 form of select() */ +#define HAVE_SELECT 1 /* select() */ +#define HAVE_GETPEERNAME 1 /* getpeername() */ +/* #undef HAVE_GETHOSTNAME_R 1 */ /* gethostname_r() */ + + /* File I/O */ +#define HAVE_DUP2 1 /* dup2() */ +#define HAVE_EXECV 1 /* execv() */ +#define HAVE_SETVBUF 1 /* setvbuf() */ +#define HAVE_GETCWD 1 /* getcwd() */ +#define HAVE_PIPE 1 /* pipe() [OS/2-specific code added] */ +#define HAVE_FCNTL_H 1 /* #include */ +/* #define HAVE_FLOCK 1 */ /* flock() */ +/* #define HAVE_TRUNCATE 1 */ /* truncate() */ +/* #define HAVE_FTRUNCATE 1 */ /* ftruncate() */ +/* #define HAVE_LSTAT 1 */ /* lstat() */ +/* #define HAVE_DIRENT_H 1 */ /* #include */ +/* #define HAVE_OPENDIR 1 */ /* opendir() */ + + /* Process Operations */ +#define HAVE_GETPID 1 /* getpid() */ +#define HAVE_SYSTEM 1 /* system() */ +#define HAVE_WAIT 1 /* wait() */ +#define HAVE_KILL 1 /* kill() [OS/2-specific code added] */ +#define HAVE_POPEN 1 /* popen() [OS/2-specific code added] */ +/* #define HAVE_GETPPID 1 */ /* getppid() */ +/* #define HAVE_WAITPID 1 */ /* waitpid() */ +/* #define HAVE_FORK 1 */ /* fork() */ + + /* User/Group ID Queries */ +/* #define HAVE_GETEGID 1 */ +/* #define HAVE_GETEUID 1 */ +/* #define HAVE_GETGID 1 */ +/* #define HAVE_GETUID 1 */ + + /* Unix-Specific */ +#define HAVE_SYS_UN_H 1 /* #include */ +/* #define HAVE_SYS_UTSNAME_H 1 */ /* #include */ +/* #define HAVE_SYS_WAIT_H 1 */ /* #include */ +/* #define HAVE_UNISTD_H 1 */ /* #include */ +/* #define HAVE_UNAME 1 */ /* uname () */ + +#ifdef USE_DL_EXPORT + #define DL_IMPORT(RTYPE) RTYPE _System +#endif + +#endif /* !Py_CONFIG_H */ + diff --git a/PC/pyconfig.h b/PC/pyconfig.h new file mode 100644 index 0000000..d0a8907 --- /dev/null +++ b/PC/pyconfig.h @@ -0,0 +1,661 @@ +#ifndef Py_CONFIG_H +#define Py_CONFIG_H + +/* config.h. NOT Generated automatically by configure. + +This is a manually maintained version used for the Watcom, +Borland and and Microsoft Visual C++ compilers. It is a +standard part of the Python distribution. + +WINDOWS DEFINES: +The code specific to Windows should be wrapped around one of +the following #defines + +MS_WIN64 - Code specific to the MS Win64 API +MS_WIN32 - Code specific to the MS Win32 (and Win64) API +MS_WIN16 - Code specific to the old 16 bit Windows API. +MS_WINDOWS - Code specific to Windows, but all versions. +MS_COREDLL - Code if the Python core is built as a DLL. + +Note that the old defines "NT" and "WIN32" are still supported, but +will soon be dropped. + +Also note that neither "_M_IX86" or "_MSC_VER" should be used for +any purpose other than "Windows Intel x86 specific" and "Microsoft +compiler specific". Therefore, these should be very rare. + +*/ + + +/* + Some systems require special declarations for data items imported + or exported from dynamic link libraries. Note that the definition + of DL_IMPORT covers both cases. Define USE_DL_IMPORT for the client + of a DLL. Define USE_DL_EXPORT when making a DLL. +*/ + +#include +#define HAVE_LIMITS_H +#define HAVE_SYS_UTIME_H +#define HAVE_HYPOT +#define HAVE_TEMPNAM +#define HAVE_TMPFILE +#define HAVE_TMPNAM +#define DONT_HAVE_SIG_ALARM +#define DONT_HAVE_SIG_PAUSE +#define LONG_BIT 32 +#define PREFIX "" +#define EXEC_PREFIX "" + +/* Microsoft C defines _MSC_VER */ +#ifdef _MSC_VER + +/* MSVC defines _WINxx to differentiate the windows platform types + + Note that for compatibility reasons _WIN32 is defined on Win32 + *and* on Win64. For the same reasons, in Python, MS_WIN32 is + defined on Win32 *and* Win64. Win32 only code must therefore be + guarded as follows: + #if defined(MS_WIN32) && !defined(MS_WIN64) +*/ +#ifdef _WIN64 +#define MS_WIN64 +#endif +#ifdef _WIN32 +#define NT /* NT is obsolete - please use MS_WIN32 instead */ +#define MS_WIN32 +#endif +#ifdef _WIN16 +#define MS_WIN16 +#endif +#define MS_WINDOWS + +/* set the COMPILER */ +#ifdef MS_WIN64 +#ifdef _M_IX86 +#define COMPILER "[MSC 64 bit (Intel)]" +#elif defined(_M_ALPHA) +#define COMPILER "[MSC 64 bit (Alpha)]" +#else +#define COMPILER "[MSC 64 bit (Unknown)]" +#endif +#endif /* MS_WIN64 */ + +#if defined(MS_WIN32) && !defined(MS_WIN64) +#ifdef _M_IX86 +#define COMPILER "[MSC 32 bit (Intel)]" +#elif defined(_M_ALPHA) +#define COMPILER "[MSC 32 bit (Alpha)]" +#else +#define COMPILER "[MSC (Unknown)]" +#endif +#endif /* MS_WIN32 && !MS_WIN64 */ + +#endif /* _MSC_VER */ + +#if defined(_MSC_VER) && _MSC_VER > 850 +/* Start of defines for MS_WIN32 using VC++ 2.0 and up */ + +/* For NT the Python core is in a DLL by default. Test the +standard macro MS_COREDLL to find out. If you have an exception +you must define MS_NO_COREDLL (do not test this macro) */ +#ifndef MS_NO_COREDLL +#define MS_COREDLL /* Python core is in a DLL */ +#ifndef USE_DL_EXPORT +#define USE_DL_IMPORT +#endif /* !USE_DL_EXPORT */ +#endif /* !MS_NO_COREDLL */ + +#define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk" +typedef int pid_t; +#define WORD_BIT 32 +#pragma warning(disable:4113) +#define hypot _hypot +#include +#define HAVE_CLOCK +#define HAVE_STRFTIME +#define HAVE_STRERROR +#define NT_THREADS +#define WITH_THREAD +#ifndef NETSCAPE_PI +#define USE_SOCKET +#endif +#ifdef USE_DL_IMPORT +#define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE +#endif +#ifdef USE_DL_EXPORT +#define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE +#define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE +#endif + +#define HAVE_LONG_LONG 1 +#define LONG_LONG __int64 +#endif /* _MSC_VER && > 850 */ + +/* The Borland compiler defines __BORLANDC__ */ +/* XXX These defines are likely incomplete, but should be easy to fix. */ +#ifdef __BORLANDC__ +#define COMPILER "[Borland]" +#define HAVE_CLOCK +#define HAVE_STRFTIME + +#ifdef _WIN32 + +/* tested with BCC 5.5 (__BORLANDC__ >= 0x0550) + */ +#define NT /* NT is obsolete - please use MS_WIN32 instead */ +#define MS_WIN32 +#define MS_WINDOWS + +/* For NT the Python core is in a DLL by default. Test the +standard macro MS_COREDLL to find out. If you have an exception +you must define MS_NO_COREDLL (do not test this macro) */ +#ifndef MS_NO_COREDLL +#define MS_COREDLL /* Python core is in a DLL */ +#ifndef USE_DL_EXPORT +#define USE_DL_IMPORT +#endif /* !USE_DL_EXPORT */ +#endif /* !MS_NO_COREDLL */ + +#define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk" +typedef int pid_t; +#define WORD_BIT 32 +#include +#define HAVE_STRERROR +#define NT_THREADS +#define WITH_THREAD +#ifndef NETSCAPE_PI +#define USE_SOCKET +#endif +/* BCC55 seems to understand __declspec(dllimport), it is used in its + own header files (winnt.h, ...) */ +#ifdef USE_DL_IMPORT +#define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE +#endif +#ifdef USE_DL_EXPORT +#define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE +#define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE +#endif + +#define HAVE_LONG_LONG 1 +#define LONG_LONG __int64 + +#undef HAVE_HYPOT +#undef HAVE_SYS_UTIME_H +#define HAVE_UTIME_H +#define HAVE_DIRENT_H +#define HAVE_CLOCK + +#else /* !_WIN32 */ +#error "Only Win32 and later are supported" +#endif /* !_WIN32 */ + +#endif /* BORLANDC */ + +/* egcs/gnu-win32 defines __GNUC__ and _WIN32 */ +#if defined(__GNUC__) && defined(_WIN32) +/* XXX These defines are likely incomplete, but should be easy to fix. + They should be complete enough to build extension modules. */ +/* Suggested by Rene Liebscher to avoid a GCC 2.91.* + bug that requires structure imports. More recent versions of the + compiler don't exhibit this bug. +*/ +#if (__GNUC__==2) && (__GNUC_MINOR__<=91) +#warning "Please use an up-to-date version of gcc! (>2.91 recommended)" +#endif + +#define NT /* NT is obsolete - please use MS_WIN32 instead */ +#define MS_WIN32 +#define MS_WINDOWS + +/* For NT the Python core is in a DLL by default. Test the +standard macro MS_COREDLL to find out. If you have an exception +you must define MS_NO_COREDLL (do not test this macro) */ +#ifndef MS_NO_COREDLL +#define MS_COREDLL /* Python core is in a DLL */ +#ifndef USE_DL_EXPORT +#define USE_DL_IMPORT +#endif /* !USE_DL_EXPORT */ +#endif /* !MS_NO_COREDLL */ + +#define COMPILER "[gcc]" +#define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk" +#define WORD_BIT 32 +#define hypot _hypot +#include +#define HAVE_CLOCK +#define HAVE_STRFTIME +#define HAVE_STRERROR +#define NT_THREADS +#define WITH_THREAD +#ifndef NETSCAPE_PI +#define USE_SOCKET +#endif +#ifdef USE_DL_IMPORT +#define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE +#endif +#ifdef USE_DL_EXPORT +#define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE +#define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE +#endif + +#define HAVE_LONG_LONG 1 +#define LONG_LONG long long +#endif /* GNUC */ + +/* lcc-win32 defines __LCC__ */ + +#if defined(__LCC__) +/* XXX These defines are likely incomplete, but should be easy to fix. + They should be complete enough to build extension modules. */ + +#define NT /* NT is obsolete - please use MS_WIN32 instead */ +#define MS_WIN32 +#define MS_WINDOWS + +/* For NT the Python core is in a DLL by default. Test the +standard macro MS_COREDLL to find out. If you have an exception +you must define MS_NO_COREDLL (do not test this macro) */ +#ifndef MS_NO_COREDLL +#define MS_COREDLL /* Python core is in a DLL */ +#ifndef USE_DL_EXPORT +#define USE_DL_IMPORT +#endif /* !USE_DL_EXPORT */ +#endif /* !MS_NO_COREDLL */ + +#define COMPILER "[lcc-win32]" +#define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk" +typedef int pid_t; +#define WORD_BIT 32 +#include +#define HAVE_CLOCK +#define HAVE_STRFTIME +#define HAVE_STRERROR +#define NT_THREADS +#define WITH_THREAD +#ifndef NETSCAPE_PI +#define USE_SOCKET +#endif +#ifdef USE_DL_IMPORT +#define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE +#endif +#ifdef USE_DL_EXPORT +#define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE +#define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE +#endif + +#define HAVE_LONG_LONG 1 +#define LONG_LONG __int64 +#endif /* LCC */ + +/* End of compilers - finish up */ + +/* define some ANSI types that are not defined in earlier Win headers */ +#if _MSC_VER >= 1200 /* This file only exists in VC 6.0 or higher */ +#include +#endif +#if defined(MS_WINDOWS) && !defined(MS_WIN64) +typedef long intptr_t; +typedef unsigned long uintptr_t; +#endif + +#if defined(MS_WIN64) +/* maintain "win32" sys.platform for backward compatibility of Python code, + the Win64 API should be close enough to the Win32 API to make this + preferable */ +# define PLATFORM "win32" +# define SIZEOF_VOID_P 8 +# define SIZEOF_TIME_T 8 +# define SIZEOF_OFF_T 4 +# define SIZEOF_FPOS_T 8 +# define SIZEOF_HKEY 8 +/* configure.in defines HAVE_LARGEFILE_SUPPORT iff HAVE_LONG_LONG, + sizeof(off_t) > sizeof(long), and sizeof(LONG_LONG) >= sizeof(off_t). + On Win64 the second condition is not true, but if fpos_t replaces off_t + then this is true. The uses of HAVE_LARGEFILE_SUPPORT imply that Win64 + should define this. */ +# define HAVE_LARGEFILE_SUPPORT +#elif defined(MS_WIN32) +# define PLATFORM "win32" +# ifdef _M_ALPHA +# define SIZEOF_VOID_P 8 +# define SIZEOF_TIME_T 8 +# else +# define SIZEOF_VOID_P 4 +# define SIZEOF_TIME_T 4 +# define SIZEOF_OFF_T 4 +# define SIZEOF_FPOS_T 8 +# define SIZEOF_HKEY 4 +# endif +#endif + + +#ifdef MS_WIN32 + +#if !defined(USE_DL_EXPORT) && defined(_MSC_VER) +/* So nobody using MSVC needs to specify the .lib in their Makefile any + more (other compilers will still need to do so, but that's taken care + of by the Distutils, so it's not a problem). */ +#ifdef _DEBUG +#pragma comment(lib,"python22_d.lib") +#else +#pragma comment(lib,"python22.lib") +#endif +#endif /* USE_DL_EXPORT */ + +#ifdef _DEBUG +#define Py_DEBUG +#endif + +#define SIZEOF_SHORT 2 +#define SIZEOF_INT 4 +#define SIZEOF_LONG 4 +#define SIZEOF_LONG_LONG 8 + +#endif + +/* Fairly standard from here! */ + +/* Define if on AIX 3. + System headers sometimes define this. + We just want to avoid a redefinition error message. */ +#ifndef _ALL_SOURCE +/* #undef _ALL_SOURCE */ +#endif + +/* Define to empty if the keyword does not work. */ +/* #define const */ + +/* Define if you have dirent.h. */ +/* #define DIRENT 1 */ + +/* Define to the type of elements in the array set by `getgroups'. + Usually this is either `int' or `gid_t'. */ +/* #undef GETGROUPS_T */ + +/* Define to `int' if doesn't define. */ +/* #undef gid_t */ + +/* Define if your struct tm has tm_zone. */ +/* #undef HAVE_TM_ZONE */ + +/* Define if you don't have tm_zone but do have the external array + tzname. */ +#define HAVE_TZNAME + +/* Define if on MINIX. */ +/* #undef _MINIX */ + +/* Define to `int' if doesn't define. */ +/* #undef mode_t */ + +/* Define if you don't have dirent.h, but have ndir.h. */ +/* #undef NDIR */ + +/* Define to `long' if doesn't define. */ +/* #undef off_t */ + +/* Define to `int' if doesn't define. */ +/* #undef pid_t */ + +/* Define if the system does not provide POSIX.1 features except + with this defined. */ +/* #undef _POSIX_1_SOURCE */ + +/* Define if you need to in order for stat and other things to work. */ +/* #undef _POSIX_SOURCE */ + +/* Define as the return type of signal handlers (int or void). */ +#define RETSIGTYPE void + +/* Define to `unsigned' if doesn't define. */ +/* #undef size_t */ + +/* Define to `int' if doesn't define. */ +#define socklen_t int + +/* Define if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* Define if you don't have dirent.h, but have sys/dir.h. */ +/* #undef SYSDIR */ + +/* Define if you don't have dirent.h, but have sys/ndir.h. */ +/* #undef SYSNDIR */ + +/* Define if you can safely include both and . */ +/* #undef TIME_WITH_SYS_TIME */ + +/* Define if your declares struct tm. */ +/* #define TM_IN_SYS_TIME 1 */ + +/* Define to `int' if doesn't define. */ +/* #undef uid_t */ + +/* Define if the closedir function returns void instead of int. */ +/* #undef VOID_CLOSEDIR */ + +/* Define if your contains bad prototypes for exec*() + (as it does on SGI IRIX 4.x) */ +/* #undef BAD_EXEC_PROTOTYPES */ + +/* Define if your compiler botches static forward declarations + (as it does on SCI ODT 3.0) */ +#define BAD_STATIC_FORWARD 1 + +/* Define if getpgrp() must be called as getpgrp(0) + and (consequently) setpgrp() as setpgrp(0, 0). */ +/* #undef GETPGRP_HAVE_ARGS */ + +/* Define this if your time.h defines altzone */ +/* #define HAVE_ALTZONE */ + +/* Define if you have the putenv function. */ +#ifdef MS_WIN32 +/* Does this exist on Win16? */ +#define HAVE_PUTENV +#endif + +/* Define if your compiler supports function prototypes */ +#define HAVE_PROTOTYPES + +/* Define if you can safely include both and + (which you can't on SCO ODT 3.0). */ +/* #undef SYS_SELECT_WITH_SYS_TIME */ + +/* Define if you want to use SGI (IRIX 4) dynamic linking. + This requires the "dl" library by Jack Jansen, + ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z. + Don't bother on IRIX 5, it already has dynamic linking using SunOS + style shared libraries */ +/* #undef WITH_SGI_DL */ + +/* Define if you want to emulate SGI (IRIX 4) dynamic linking. + This is rumoured to work on VAX (Ultrix), Sun3 (SunOS 3.4), + Sequent Symmetry (Dynix), and Atari ST. + This requires the "dl-dld" library, + ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z, + as well as the "GNU dld" library, + ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z. + Don't bother on SunOS 4 or 5, they already have dynamic linking using + shared libraries */ +/* #undef WITH_DL_DLD */ + +/* Define if you want to compile in rudimentary thread support */ +/* #undef WITH_THREAD */ + +/* Define if you want to use the GNU readline library */ +/* #define WITH_READLINE 1 */ + +/* Define if you want to have a Unicode type. */ +#define Py_USING_UNICODE + +/* Define as the integral type used for Unicode representation. */ +#define PY_UNICODE_TYPE unsigned short + +/* Define as the size of the unicode type. */ +#define Py_UNICODE_SIZE SIZEOF_SHORT + +/* Define if you have a useable wchar_t type defined in wchar.h; useable + means wchar_t must be 16-bit unsigned type. (see + Include/unicodeobject.h). */ +#if Py_UNICODE_SIZE == 2 +#define HAVE_USABLE_WCHAR_T +#endif + +/* Define if you want cycle garbage collection */ +#define WITH_CYCLE_GC 1 + +/* Define if you have clock. */ +/* #define HAVE_CLOCK */ + +/* Define when any dynamic module loading is enabled */ +#define HAVE_DYNAMIC_LOADING + +/* Define if you have ftime. */ +#define HAVE_FTIME + +/* Define if you have getpeername. */ +#define HAVE_GETPEERNAME + +/* Define if you have getpgrp. */ +/* #undef HAVE_GETPGRP */ + +/* Define if you have getpid. */ +#define HAVE_GETPID + +/* Define if you have gettimeofday. */ +/* #undef HAVE_GETTIMEOFDAY */ + +/* Define if you have getwd. */ +/* #undef HAVE_GETWD */ + +/* Define if you have lstat. */ +/* #undef HAVE_LSTAT */ + +/* Define if you have the mktime function. */ +#define HAVE_MKTIME + +/* Define if you have nice. */ +/* #undef HAVE_NICE */ + +/* Define if you have readlink. */ +/* #undef HAVE_READLINK */ + +/* Define if you have select. */ +/* #undef HAVE_SELECT */ + +/* Define if you have setpgid. */ +/* #undef HAVE_SETPGID */ + +/* Define if you have setpgrp. */ +/* #undef HAVE_SETPGRP */ + +/* Define if you have setsid. */ +/* #undef HAVE_SETSID */ + +/* Define if you have setvbuf. */ +#define HAVE_SETVBUF + +/* Define if you have siginterrupt. */ +/* #undef HAVE_SIGINTERRUPT */ + +/* Define if you have symlink. */ +/* #undef HAVE_SYMLINK */ + +/* Define if you have tcgetpgrp. */ +/* #undef HAVE_TCGETPGRP */ + +/* Define if you have tcsetpgrp. */ +/* #undef HAVE_TCSETPGRP */ + +/* Define if you have times. */ +/* #undef HAVE_TIMES */ + +/* Define if you have uname. */ +/* #undef HAVE_UNAME */ + +/* Define if you have waitpid. */ +/* #undef HAVE_WAITPID */ + +/* Define if you have the header file. */ +/* #undef HAVE_DLFCN_H */ + +/* Define if you have the header file. */ +#define HAVE_FCNTL_H 1 + +/* Define if you have the header file. */ +#define HAVE_SIGNAL_H 1 + +/* Define if you have the header file. */ +#define HAVE_STDARG_H 1 + +/* Define if you have the prototypes. */ +#define HAVE_STDARG_PROTOTYPES + +/* Define if you have the header file. */ +#define HAVE_STDDEF_H 1 + +/* Define if you have the header file. */ +#define HAVE_STDLIB_H 1 + +/* Define if you have the header file. */ +/* #undef HAVE_SYS_AUDIOIO_H */ + +/* Define if you have the header file. */ +/* #define HAVE_SYS_PARAM_H 1 */ + +/* Define if you have the header file. */ +/* #define HAVE_SYS_SELECT_H 1 */ + +/* Define if you have the header file. */ +/* #define HAVE_SYS_TIME_H 1 */ + +/* Define if you have the header file. */ +/* #define HAVE_SYS_TIMES_H 1 */ + +/* Define if you have the header file. */ +/* #define HAVE_SYS_UN_H 1 */ + +/* Define if you have the header file. */ +/* #define HAVE_SYS_UTIME_H 1 */ + +/* Define if you have the header file. */ +/* #define HAVE_SYS_UTSNAME_H 1 */ + +/* Define if you have the header file. */ +/* #undef HAVE_THREAD_H */ + +/* Define if you have the header file. */ +/* #define HAVE_UNISTD_H 1 */ + +/* Define if you have the header file. */ +/* #define HAVE_UTIME_H 1 */ + +/* Define if you have the dl library (-ldl). */ +/* #undef HAVE_LIBDL */ + +/* Define if you have the mpc library (-lmpc). */ +/* #undef HAVE_LIBMPC */ + +/* Define if you have the nsl library (-lnsl). */ +#define HAVE_LIBNSL 1 + +/* Define if you have the seq library (-lseq). */ +/* #undef HAVE_LIBSEQ */ + +/* Define if you have the socket library (-lsocket). */ +#define HAVE_LIBSOCKET 1 + +/* Define if you have the sun library (-lsun). */ +/* #undef HAVE_LIBSUN */ + +/* Define if you have the termcap library (-ltermcap). */ +/* #undef HAVE_LIBTERMCAP */ + +/* Define if you have the termlib library (-ltermlib). */ +/* #undef HAVE_LIBTERMLIB */ + +/* Define if you have the thread library (-lthread). */ +/* #undef HAVE_LIBTHREAD */ +#endif /* !Py_CONFIG_H */ diff --git a/PCbuild/python20.wse b/PCbuild/python20.wse index 448ae88..0ebcd8f 100644 --- a/PCbuild/python20.wse +++ b/PCbuild/python20.wse @@ -926,9 +926,9 @@ item: Install File Flags=0000000000000010 end item: Install File - Source=%_SRC_%\PC\config.h - Destination=%MAINDIR%\include\config.h - Description=Header files (config.h) + Source=%_SRC_%\PC\pyconfig.h + Destination=%MAINDIR%\include\pyconfig.h + Description=Header files (pyconfig.h) Flags=0000000000000010 end item: Install File diff --git a/Python/atof.c b/Python/atof.c index ae690e1..8fbde38 100644 --- a/Python/atof.c +++ b/Python/atof.c @@ -4,7 +4,7 @@ and is slow and inaccurate. But it's good enough for the occasional string literal... */ -#include "config.h" +#include "pyconfig.h" #include diff --git a/Python/fmod.c b/Python/fmod.c index de88f83..919c6cc 100644 --- a/Python/fmod.c +++ b/Python/fmod.c @@ -1,7 +1,7 @@ /* Portable fmod(x, y) implementation for systems that don't have it */ -#include "config.h" +#include "pyconfig.h" #include "pyport.h" #include diff --git a/Python/getmtime.c b/Python/getmtime.c index c77782d..f0ac899 100644 --- a/Python/getmtime.c +++ b/Python/getmtime.c @@ -4,7 +4,7 @@ /* (A separate file because this may be OS dependent) */ #include "Python.h" -#include "config.h" +#include "pyconfig.h" time_t PyOS_GetLastModificationTime(char *path, FILE *fp) diff --git a/Python/hypot.c b/Python/hypot.c index 939dedd..755d0c3 100644 --- a/Python/hypot.c +++ b/Python/hypot.c @@ -1,6 +1,6 @@ /* hypot() replacement */ -#include "config.h" +#include "pyconfig.h" #include "pyport.h" double hypot(double x, double y) diff --git a/Python/pyfpe.c b/Python/pyfpe.c index 77f2dea..4b7f5ba 100644 --- a/Python/pyfpe.c +++ b/Python/pyfpe.c @@ -1,4 +1,4 @@ -#include "config.h" +#include "pyconfig.h" #include "pyfpe.h" /* * The signal handler for SIGFPE is actually declared in an external diff --git a/Python/strtod.c b/Python/strtod.c index c6a1dbd..7911a94 100644 --- a/Python/strtod.c +++ b/Python/strtod.c @@ -1,4 +1,4 @@ -#include "config.h" +#include "pyconfig.h" /* comp.sources.misc strtod(), as posted in comp.lang.tcl, with bugfix for "123000.0" and acceptance of space after 'e' sign nuked. diff --git a/Python/thread.c b/Python/thread.c index b5d99ef..0b0316a 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -5,7 +5,7 @@ which is included by this file dependent on config settings. Stuff shared by all thread_*.h files is collected here. */ -#include "config.h" +#include "pyconfig.h" /* config.h may or may not define DL_IMPORT */ #ifndef DL_IMPORT /* declarations for DLL import/export */ diff --git a/RISCOS/config.h b/RISCOS/config.h deleted file mode 100644 index 11a294c..0000000 --- a/RISCOS/config.h +++ /dev/null @@ -1,488 +0,0 @@ -/* config.h.in. Generated automatically from configure.in by autoheader. */ - -/* Define if on AIX 3. - System headers sometimes define this. - We just want to avoid a redefinition error message. */ -#ifndef _ALL_SOURCE -#undef _ALL_SOURCE -#endif - -/* Define if type char is unsigned and you are not using gcc. */ -#undef __CHAR_UNSIGNED__ - -/* Define to empty if the keyword does not work. */ -#undef const - -/* Define to `int' if doesn't define. */ -#define gid_t int - -/* Define if your struct tm has tm_zone. */ -#undef HAVE_TM_ZONE - -/* Define if you don't have tm_zone but do have the external array - tzname. */ -#undef HAVE_TZNAME - -/* Define if on MINIX. */ -#undef _MINIX - -/* Define to `int' if doesn't define. */ -#define mode_t int - -/* Define to `long' if doesn't define. */ -#define off_t long - -/* Define to `int' if doesn't define. */ -#define pid_t int - -/* Define if the system does not provide POSIX.1 features except - with this defined. */ -#undef _POSIX_1_SOURCE - -/* Define if you need to in order for stat and other things to work. */ -#undef _POSIX_SOURCE - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -#undef size_t - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you can safely include both and . */ -#undef TIME_WITH_SYS_TIME - -/* Define if your declares struct tm. */ -#define TM_IN_SYS_TIME 1 - -/* Define to `int' if doesn't define. */ -#define uid_t int - -/* Define if your contains bad prototypes for exec*() - (as it does on SGI IRIX 4.x) */ -#undef BAD_EXEC_PROTOTYPES - -/* Define if your compiler botches static forward declarations - (as it does on SCI ODT 3.0) */ -#undef BAD_STATIC_FORWARD - -/* Define this if you have BeOS threads */ -#undef BEOS_THREADS - -/* Define if you have the Mach cthreads package */ -#undef C_THREADS - -/* Define to `long' if doesn't define. */ -#undef clock_t - -/* Used for BeOS configuration */ -#undef DL_EXPORT_HEADER -#ifdef DL_EXPORT_HEADER -#include DL_EXPORT_HEADER -#endif - -/* Define if getpgrp() must be called as getpgrp(0). */ -#undef GETPGRP_HAVE_ARG - -/* Define if gettimeofday() does not have second (timezone) argument - This is the case on Motorola V4 (R40V4.2) */ -#undef GETTIMEOFDAY_NO_TZ - -/* Define this if your time.h defines altzone */ -#undef HAVE_ALTZONE - -/* Define this if you have some version of gethostbyname_r() */ -#undef HAVE_GETHOSTBYNAME_R - -/* Define this if you have the 3-arg version of gethostbyname_r() */ -#undef HAVE_GETHOSTBYNAME_R_3_ARG - -/* Define this if you have the 5-arg version of gethostbyname_r() */ -#undef HAVE_GETHOSTBYNAME_R_5_ARG - -/* Define this if you have the 6-arg version of gethostbyname_r() */ -#undef HAVE_GETHOSTBYNAME_R_6_ARG - -/* Define this if you have the type long long */ -#undef HAVE_LONG_LONG - -/* Define this if you have a K&R style C preprocessor */ -#undef HAVE_OLD_CPP - -/* Define if your compiler supports function prototypes */ -#define HAVE_PROTOTYPES 1 - -/* Define if your compiler supports variable length function prototypes - (e.g. void fprintf(FILE *, char *, ...);) *and* */ -#define HAVE_STDARG_PROTOTYPES 1 - -/* Define if malloc(0) returns a NULL pointer */ -#undef MALLOC_ZERO_RETURNS_NULL - -/* Define if you have POSIX threads */ -#undef _POSIX_THREADS - -/* Define to force use of thread-safe errno, h_errno, and other functions */ -#undef _REENTRANT - -/* Define if setpgrp() must be called as setpgrp(0, 0). */ -#undef SETPGRP_HAVE_ARG - -/* Define to empty if the keyword does not work. */ -#undef signed - -/* Define if you can safely include both and - (which you can't on SCO ODT 3.0). */ -#undef SYS_SELECT_WITH_SYS_TIME - -/* Define if a va_list is an array of some kind */ -#define VA_LIST_IS_ARRAY 1 - -/* Define to empty if the keyword does not work. */ -#undef volatile - -/* Define if you want SIGFPE handled (see Include/pyfpe.h). */ -#undef WANT_SIGFPE_HANDLER - -/* Define if you want to use SGI (IRIX 4) dynamic linking. - This requires the "dl" library by Jack Jansen, - ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z. - Don't bother on IRIX 5, it already has dynamic linking using SunOS - style shared libraries */ -#undef WITH_SGI_DL - -/* Define if you want to emulate SGI (IRIX 4) dynamic linking. - This is rumoured to work on VAX (Ultrix), Sun3 (SunOS 3.4), - Sequent Symmetry (Dynix), and Atari ST. - This requires the "dl-dld" library, - ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z, - as well as the "GNU dld" library, - ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z. - Don't bother on SunOS 4 or 5, they already have dynamic linking using - shared libraries */ -#undef WITH_DL_DLD - -/* Define if you want to use the new-style (Openstep, Rhapsody, MacOS) - dynamic linker (dyld) instead of the old-style (NextStep) dynamic - linker (rld). Dyld is necessary to support frameworks. */ -#undef WITH_DYLD - -/* Define if you want to compile in rudimentary thread support */ -#undef WITH_THREAD - -/* Define if you want to produce an OpenStep/Rhapsody framework - (shared library plus accessory files). */ -#undef WITH_NEXT_FRAMEWORK - -/* The number of bytes in an off_t. */ -#undef SIZEOF_OFF_T - -/* Defined to enable large file support when an off_t is bigger than a long - and long long is available and at least as big as an off_t. You may need - to add some flags for configuration and compilation to enable this mode. - E.g, for Solaris 2.7: - CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" OPT="-O2 $CFLAGS" \ - configure -*/ -#undef HAVE_LARGEFILE_SUPPORT - -/* The number of bytes in a time_t. */ -#define SIZEOF_TIME_T 4 - -/* The number of bytes in a int. */ -#define SIZEOF_INT 4 - -/* The number of bytes in a long. */ -#define SIZEOF_LONG 4 - -/* The number of bytes in a long long. */ -#undef SIZEOF_LONG_LONG - -/* The number of bytes in a void *. */ -#define SIZEOF_VOID_P 4 - -/* Define if you have the alarm function. */ -#undef HAVE_ALARM - -/* Define if you have the chown function. */ -#undef HAVE_CHOWN - -/* Define if you have the clock function. */ -#define HAVE_CLOCK 1 - -/* Define if you have the dlopen function. */ -#undef HAVE_DLOPEN - -/* Define if you have the dup2 function. */ -#undef HAVE_DUP2 - -/* Define if you have the execv function. */ -#undef HAVE_EXECV - -/* Define if you have the fdatasync function. */ -#undef HAVE_FDATASYNC - -/* Define if you have the flock function. */ -#undef HAVE_FLOCK - -/* Define if you have the fork function. */ -#undef HAVE_FORK - -/* Define if you have the fseek64 function. */ -#undef HAVE_FSEEK64 - -/* Define if you have the fseeko function. */ -#undef HAVE_FSEEKO - -/* Define if you have the fstatvfs function. */ -#undef HAVE_FSTATVFS - -/* Define if you have the fsync function. */ -#undef HAVE_FSYNC - -/* Define if you have the ftell64 function. */ -#undef HAVE_FTELL64 - -/* Define if you have the ftello function. */ -#undef HAVE_FTELLO - -/* Define if you have the ftime function. */ -#undef HAVE_FTIME - -/* Define if you have the ftruncate function. */ -#undef HAVE_FTRUNCATE - -/* Define if you have the getcwd function. */ -#undef HAVE_GETCWD - -/* Define if you have the getpeername function. */ -#undef HAVE_GETPEERNAME - -/* Define if you have the getpgrp function. */ -#undef HAVE_GETPGRP - -/* Define if you have the getpid function. */ -#undef HAVE_GETPID - -/* Define if you have the getpwent function. */ -#undef HAVE_GETPWENT - -/* Define if you have the gettimeofday function. */ -#undef HAVE_GETTIMEOFDAY - -/* Define if you have the getwd function. */ -#undef HAVE_GETWD - -/* Define if you have the hypot function. */ -#undef HAVE_HYPOT - -/* Define if you have the kill function. */ -#undef HAVE_KILL - -/* Define if you have the link function. */ -#undef HAVE_LINK - -/* Define if you have the lstat function. */ -#undef HAVE_LSTAT - -/* Define if you have the memmove function. */ -#define HAVE_MEMMOVE 1 - -/* Define if you have the mkfifo function. */ -#undef HAVE_MKFIFO - -/* Define if you have the mktime function. */ -#define HAVE_MKTIME 1 - -/* Define if you have the nice function. */ -#undef HAVE_NICE - -/* Define if you have the pause function. */ -#undef HAVE_PAUSE - -/* Define if you have the plock function. */ -#undef HAVE_PLOCK - -/* Define if you have the pthread_init function. */ -#undef HAVE_PTHREAD_INIT - -/* Define if you have the putenv function. */ -#undef HAVE_PUTENV - -/* Define if you have the readlink function. */ -#undef HAVE_READLINK - -/* Define if you have the select function. */ -#undef HAVE_SELECT - -/* Define if you have the setgid function. */ -#undef HAVE_SETGID - -/* Define if you have the setlocale function. */ -#undef HAVE_SETLOCALE - -/* Define if you have the setpgid function. */ -#undef HAVE_SETPGID - -/* Define if you have the setpgrp function. */ -#undef HAVE_SETPGRP - -/* Define if you have the setsid function. */ -#undef HAVE_SETSID - -/* Define if you have the setuid function. */ -#undef HAVE_SETUID - -/* Define if you have the setvbuf function. */ -#undef HAVE_SETVBUF - -/* Define if you have the sigaction function. */ -#undef HAVE_SIGACTION - -/* Define if you have the siginterrupt function. */ -#undef HAVE_SIGINTERRUPT - -/* Define if you have the sigrelse function. */ -#undef HAVE_SIGRELSE - -/* Define if you have the statvfs function. */ -#undef HAVE_STATVFS - -/* Define if you have the strdup function. */ -#undef HAVE_STRDUP - -/* Define if you have the strerror function. */ -#define HAVE_STRERROR 1 - -/* Define if you have the strftime function. */ -#define HAVE_STRFTIME 1 - -/* Define if you have the strptime function. */ -#undef HAVE_STRPTIME - -/* Define if you have the symlink function. */ -#undef HAVE_SYMLINK - -/* Define if you have the tcgetpgrp function. */ -#undef HAVE_TCGETPGRP - -/* Define if you have the tcsetpgrp function. */ -#undef HAVE_TCSETPGRP - -/* Define if you have the timegm function. */ -#undef HAVE_TIMEGM - -/* Define if you have the times function. */ -#undef HAVE_TIMES - -/* Define if you have the truncate function. */ -#undef HAVE_TRUNCATE - -/* Define if you have the uname function. */ -#undef HAVE_UNAME - -/* Define if you have the waitpid function. */ -#undef HAVE_WAITPID - -/* Define if you have the header file. */ -#undef HAVE_DIRENT_H - -/* Define if you have the header file. */ -#undef HAVE_DLFCN_H - -/* Define if you have the header file. */ -#undef HAVE_FCNTL_H - -/* Define if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the header file. */ -#define HAVE_LOCALE_H 1 - -/* Define if you have the header file. */ -#undef HAVE_NCURSES_H - -/* Define if you have the header file. */ -#undef HAVE_NDIR_H - -/* Define if you have the header file. */ -#undef HAVE_PTHREAD_H - -/* Define if you have the header file. */ -#define HAVE_SIGNAL_H 1 - -/* Define if you have the header file. */ -#define HAVE_STDARG_H 1 - -/* Define if you have the header file. */ -#define HAVE_STDDEF_H 1 - -/* Define if you have the header file. */ -#define HAVE_STDLIB_H 1 - -/* Define if you have the header file. */ -#undef HAVE_SYS_AUDIOIO_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_DIR_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_FILE_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_LOCK_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_NDIR_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_PARAM_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_SELECT_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_TIME_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_TIMES_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_UN_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_UTSNAME_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_WAIT_H - -/* Define if you have the header file. */ -#undef HAVE_THREAD_H - -/* Define if you have the header file. */ -#undef HAVE_UNISTD_H - -/* Define if you have the header file. */ -#undef HAVE_UTIME_H - -/* Define if you have the dl library (-ldl). */ -#undef HAVE_LIBDL - -/* Define if you have the dld library (-ldld). */ -#undef HAVE_LIBDLD - -/* Define if you have the ieee library (-lieee). */ -#undef HAVE_LIBIEEE - -#define DONT_HAVE_SYS_TYPES_H 1 - -#define DONT_HAVE_FSTAT 1 -#define DONT_HAVE_STAT 1 -#define DONT_HAVE_SYS_STAT_H 1 - -#define PLATFORM "RISCOS" - -#define socklen_t int -#define HAVE_DYNAMIC_LOADING diff --git a/RISCOS/pyconfig.h b/RISCOS/pyconfig.h new file mode 100644 index 0000000..11a294c --- /dev/null +++ b/RISCOS/pyconfig.h @@ -0,0 +1,488 @@ +/* config.h.in. Generated automatically from configure.in by autoheader. */ + +/* Define if on AIX 3. + System headers sometimes define this. + We just want to avoid a redefinition error message. */ +#ifndef _ALL_SOURCE +#undef _ALL_SOURCE +#endif + +/* Define if type char is unsigned and you are not using gcc. */ +#undef __CHAR_UNSIGNED__ + +/* Define to empty if the keyword does not work. */ +#undef const + +/* Define to `int' if doesn't define. */ +#define gid_t int + +/* Define if your struct tm has tm_zone. */ +#undef HAVE_TM_ZONE + +/* Define if you don't have tm_zone but do have the external array + tzname. */ +#undef HAVE_TZNAME + +/* Define if on MINIX. */ +#undef _MINIX + +/* Define to `int' if doesn't define. */ +#define mode_t int + +/* Define to `long' if doesn't define. */ +#define off_t long + +/* Define to `int' if doesn't define. */ +#define pid_t int + +/* Define if the system does not provide POSIX.1 features except + with this defined. */ +#undef _POSIX_1_SOURCE + +/* Define if you need to in order for stat and other things to work. */ +#undef _POSIX_SOURCE + +/* Define as the return type of signal handlers (int or void). */ +#define RETSIGTYPE void + +/* Define to `unsigned' if doesn't define. */ +#undef size_t + +/* Define if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* Define if you can safely include both and . */ +#undef TIME_WITH_SYS_TIME + +/* Define if your declares struct tm. */ +#define TM_IN_SYS_TIME 1 + +/* Define to `int' if doesn't define. */ +#define uid_t int + +/* Define if your contains bad prototypes for exec*() + (as it does on SGI IRIX 4.x) */ +#undef BAD_EXEC_PROTOTYPES + +/* Define if your compiler botches static forward declarations + (as it does on SCI ODT 3.0) */ +#undef BAD_STATIC_FORWARD + +/* Define this if you have BeOS threads */ +#undef BEOS_THREADS + +/* Define if you have the Mach cthreads package */ +#undef C_THREADS + +/* Define to `long' if doesn't define. */ +#undef clock_t + +/* Used for BeOS configuration */ +#undef DL_EXPORT_HEADER +#ifdef DL_EXPORT_HEADER +#include DL_EXPORT_HEADER +#endif + +/* Define if getpgrp() must be called as getpgrp(0). */ +#undef GETPGRP_HAVE_ARG + +/* Define if gettimeofday() does not have second (timezone) argument + This is the case on Motorola V4 (R40V4.2) */ +#undef GETTIMEOFDAY_NO_TZ + +/* Define this if your time.h defines altzone */ +#undef HAVE_ALTZONE + +/* Define this if you have some version of gethostbyname_r() */ +#undef HAVE_GETHOSTBYNAME_R + +/* Define this if you have the 3-arg version of gethostbyname_r() */ +#undef HAVE_GETHOSTBYNAME_R_3_ARG + +/* Define this if you have the 5-arg version of gethostbyname_r() */ +#undef HAVE_GETHOSTBYNAME_R_5_ARG + +/* Define this if you have the 6-arg version of gethostbyname_r() */ +#undef HAVE_GETHOSTBYNAME_R_6_ARG + +/* Define this if you have the type long long */ +#undef HAVE_LONG_LONG + +/* Define this if you have a K&R style C preprocessor */ +#undef HAVE_OLD_CPP + +/* Define if your compiler supports function prototypes */ +#define HAVE_PROTOTYPES 1 + +/* Define if your compiler supports variable length function prototypes + (e.g. void fprintf(FILE *, char *, ...);) *and* */ +#define HAVE_STDARG_PROTOTYPES 1 + +/* Define if malloc(0) returns a NULL pointer */ +#undef MALLOC_ZERO_RETURNS_NULL + +/* Define if you have POSIX threads */ +#undef _POSIX_THREADS + +/* Define to force use of thread-safe errno, h_errno, and other functions */ +#undef _REENTRANT + +/* Define if setpgrp() must be called as setpgrp(0, 0). */ +#undef SETPGRP_HAVE_ARG + +/* Define to empty if the keyword does not work. */ +#undef signed + +/* Define if you can safely include both and + (which you can't on SCO ODT 3.0). */ +#undef SYS_SELECT_WITH_SYS_TIME + +/* Define if a va_list is an array of some kind */ +#define VA_LIST_IS_ARRAY 1 + +/* Define to empty if the keyword does not work. */ +#undef volatile + +/* Define if you want SIGFPE handled (see Include/pyfpe.h). */ +#undef WANT_SIGFPE_HANDLER + +/* Define if you want to use SGI (IRIX 4) dynamic linking. + This requires the "dl" library by Jack Jansen, + ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z. + Don't bother on IRIX 5, it already has dynamic linking using SunOS + style shared libraries */ +#undef WITH_SGI_DL + +/* Define if you want to emulate SGI (IRIX 4) dynamic linking. + This is rumoured to work on VAX (Ultrix), Sun3 (SunOS 3.4), + Sequent Symmetry (Dynix), and Atari ST. + This requires the "dl-dld" library, + ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z, + as well as the "GNU dld" library, + ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z. + Don't bother on SunOS 4 or 5, they already have dynamic linking using + shared libraries */ +#undef WITH_DL_DLD + +/* Define if you want to use the new-style (Openstep, Rhapsody, MacOS) + dynamic linker (dyld) instead of the old-style (NextStep) dynamic + linker (rld). Dyld is necessary to support frameworks. */ +#undef WITH_DYLD + +/* Define if you want to compile in rudimentary thread support */ +#undef WITH_THREAD + +/* Define if you want to produce an OpenStep/Rhapsody framework + (shared library plus accessory files). */ +#undef WITH_NEXT_FRAMEWORK + +/* The number of bytes in an off_t. */ +#undef SIZEOF_OFF_T + +/* Defined to enable large file support when an off_t is bigger than a long + and long long is available and at least as big as an off_t. You may need + to add some flags for configuration and compilation to enable this mode. + E.g, for Solaris 2.7: + CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" OPT="-O2 $CFLAGS" \ + configure +*/ +#undef HAVE_LARGEFILE_SUPPORT + +/* The number of bytes in a time_t. */ +#define SIZEOF_TIME_T 4 + +/* The number of bytes in a int. */ +#define SIZEOF_INT 4 + +/* The number of bytes in a long. */ +#define SIZEOF_LONG 4 + +/* The number of bytes in a long long. */ +#undef SIZEOF_LONG_LONG + +/* The number of bytes in a void *. */ +#define SIZEOF_VOID_P 4 + +/* Define if you have the alarm function. */ +#undef HAVE_ALARM + +/* Define if you have the chown function. */ +#undef HAVE_CHOWN + +/* Define if you have the clock function. */ +#define HAVE_CLOCK 1 + +/* Define if you have the dlopen function. */ +#undef HAVE_DLOPEN + +/* Define if you have the dup2 function. */ +#undef HAVE_DUP2 + +/* Define if you have the execv function. */ +#undef HAVE_EXECV + +/* Define if you have the fdatasync function. */ +#undef HAVE_FDATASYNC + +/* Define if you have the flock function. */ +#undef HAVE_FLOCK + +/* Define if you have the fork function. */ +#undef HAVE_FORK + +/* Define if you have the fseek64 function. */ +#undef HAVE_FSEEK64 + +/* Define if you have the fseeko function. */ +#undef HAVE_FSEEKO + +/* Define if you have the fstatvfs function. */ +#undef HAVE_FSTATVFS + +/* Define if you have the fsync function. */ +#undef HAVE_FSYNC + +/* Define if you have the ftell64 function. */ +#undef HAVE_FTELL64 + +/* Define if you have the ftello function. */ +#undef HAVE_FTELLO + +/* Define if you have the ftime function. */ +#undef HAVE_FTIME + +/* Define if you have the ftruncate function. */ +#undef HAVE_FTRUNCATE + +/* Define if you have the getcwd function. */ +#undef HAVE_GETCWD + +/* Define if you have the getpeername function. */ +#undef HAVE_GETPEERNAME + +/* Define if you have the getpgrp function. */ +#undef HAVE_GETPGRP + +/* Define if you have the getpid function. */ +#undef HAVE_GETPID + +/* Define if you have the getpwent function. */ +#undef HAVE_GETPWENT + +/* Define if you have the gettimeofday function. */ +#undef HAVE_GETTIMEOFDAY + +/* Define if you have the getwd function. */ +#undef HAVE_GETWD + +/* Define if you have the hypot function. */ +#undef HAVE_HYPOT + +/* Define if you have the kill function. */ +#undef HAVE_KILL + +/* Define if you have the link function. */ +#undef HAVE_LINK + +/* Define if you have the lstat function. */ +#undef HAVE_LSTAT + +/* Define if you have the memmove function. */ +#define HAVE_MEMMOVE 1 + +/* Define if you have the mkfifo function. */ +#undef HAVE_MKFIFO + +/* Define if you have the mktime function. */ +#define HAVE_MKTIME 1 + +/* Define if you have the nice function. */ +#undef HAVE_NICE + +/* Define if you have the pause function. */ +#undef HAVE_PAUSE + +/* Define if you have the plock function. */ +#undef HAVE_PLOCK + +/* Define if you have the pthread_init function. */ +#undef HAVE_PTHREAD_INIT + +/* Define if you have the putenv function. */ +#undef HAVE_PUTENV + +/* Define if you have the readlink function. */ +#undef HAVE_READLINK + +/* Define if you have the select function. */ +#undef HAVE_SELECT + +/* Define if you have the setgid function. */ +#undef HAVE_SETGID + +/* Define if you have the setlocale function. */ +#undef HAVE_SETLOCALE + +/* Define if you have the setpgid function. */ +#undef HAVE_SETPGID + +/* Define if you have the setpgrp function. */ +#undef HAVE_SETPGRP + +/* Define if you have the setsid function. */ +#undef HAVE_SETSID + +/* Define if you have the setuid function. */ +#undef HAVE_SETUID + +/* Define if you have the setvbuf function. */ +#undef HAVE_SETVBUF + +/* Define if you have the sigaction function. */ +#undef HAVE_SIGACTION + +/* Define if you have the siginterrupt function. */ +#undef HAVE_SIGINTERRUPT + +/* Define if you have the sigrelse function. */ +#undef HAVE_SIGRELSE + +/* Define if you have the statvfs function. */ +#undef HAVE_STATVFS + +/* Define if you have the strdup function. */ +#undef HAVE_STRDUP + +/* Define if you have the strerror function. */ +#define HAVE_STRERROR 1 + +/* Define if you have the strftime function. */ +#define HAVE_STRFTIME 1 + +/* Define if you have the strptime function. */ +#undef HAVE_STRPTIME + +/* Define if you have the symlink function. */ +#undef HAVE_SYMLINK + +/* Define if you have the tcgetpgrp function. */ +#undef HAVE_TCGETPGRP + +/* Define if you have the tcsetpgrp function. */ +#undef HAVE_TCSETPGRP + +/* Define if you have the timegm function. */ +#undef HAVE_TIMEGM + +/* Define if you have the times function. */ +#undef HAVE_TIMES + +/* Define if you have the truncate function. */ +#undef HAVE_TRUNCATE + +/* Define if you have the uname function. */ +#undef HAVE_UNAME + +/* Define if you have the waitpid function. */ +#undef HAVE_WAITPID + +/* Define if you have the header file. */ +#undef HAVE_DIRENT_H + +/* Define if you have the header file. */ +#undef HAVE_DLFCN_H + +/* Define if you have the header file. */ +#undef HAVE_FCNTL_H + +/* Define if you have the header file. */ +#define HAVE_LIMITS_H 1 + +/* Define if you have the header file. */ +#define HAVE_LOCALE_H 1 + +/* Define if you have the header file. */ +#undef HAVE_NCURSES_H + +/* Define if you have the header file. */ +#undef HAVE_NDIR_H + +/* Define if you have the header file. */ +#undef HAVE_PTHREAD_H + +/* Define if you have the header file. */ +#define HAVE_SIGNAL_H 1 + +/* Define if you have the header file. */ +#define HAVE_STDARG_H 1 + +/* Define if you have the header file. */ +#define HAVE_STDDEF_H 1 + +/* Define if you have the header file. */ +#define HAVE_STDLIB_H 1 + +/* Define if you have the header file. */ +#undef HAVE_SYS_AUDIOIO_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_DIR_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_FILE_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_LOCK_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_NDIR_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_PARAM_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_SELECT_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_TIME_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_TIMES_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_UN_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_UTSNAME_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_WAIT_H + +/* Define if you have the header file. */ +#undef HAVE_THREAD_H + +/* Define if you have the header file. */ +#undef HAVE_UNISTD_H + +/* Define if you have the header file. */ +#undef HAVE_UTIME_H + +/* Define if you have the dl library (-ldl). */ +#undef HAVE_LIBDL + +/* Define if you have the dld library (-ldld). */ +#undef HAVE_LIBDLD + +/* Define if you have the ieee library (-lieee). */ +#undef HAVE_LIBIEEE + +#define DONT_HAVE_SYS_TYPES_H 1 + +#define DONT_HAVE_FSTAT 1 +#define DONT_HAVE_STAT 1 +#define DONT_HAVE_SYS_STAT_H 1 + +#define PLATFORM "RISCOS" + +#define socklen_t int +#define HAVE_DYNAMIC_LOADING diff --git a/config.h.in b/config.h.in deleted file mode 100644 index f945535..0000000 --- a/config.h.in +++ /dev/null @@ -1,706 +0,0 @@ -/* config.h.in. Generated automatically from configure.in by autoheader. */ - -/* Define if on AIX 3. - System headers sometimes define this. - We just want to avoid a redefinition error message. */ -#ifndef _ALL_SOURCE -#undef _ALL_SOURCE -#endif - -/* Define if type char is unsigned and you are not using gcc. */ -#ifndef __CHAR_UNSIGNED__ -#undef __CHAR_UNSIGNED__ -#endif - -/* Define to empty if the keyword does not work. */ -#undef const - -/* Define to `int' if doesn't define. */ -#undef gid_t - -/* Define if your struct tm has tm_zone. */ -#undef HAVE_TM_ZONE - -/* Define if you don't have tm_zone but do have the external array - tzname. */ -#undef HAVE_TZNAME - -/* Define if on MINIX. */ -#undef _MINIX - -/* Define to `int' if doesn't define. */ -#undef mode_t - -/* Define to `long' if doesn't define. */ -#undef off_t - -/* Define to `int' if doesn't define. */ -#undef pid_t - -/* Define if the system does not provide POSIX.1 features except - with this defined. */ -#undef _POSIX_1_SOURCE - -/* Define if you need to in order for stat and other things to work. */ -#undef _POSIX_SOURCE - -/* Define as the return type of signal handlers (int or void). */ -#undef RETSIGTYPE - -/* Define to `unsigned' if doesn't define. */ -#undef size_t - -/* Define if you have the ANSI C header files. */ -#undef STDC_HEADERS - -/* Define if you can safely include both and . */ -#undef TIME_WITH_SYS_TIME - -/* Define if your declares struct tm. */ -#undef TM_IN_SYS_TIME - -/* Define to `int' if doesn't define. */ -#undef uid_t - -/* Define if your processor stores words with the most significant - byte first (like Motorola and SPARC, unlike Intel and VAX). */ -#undef WORDS_BIGENDIAN - -/* Define for AIX if your compiler is a genuine IBM xlC/xlC_r - and you want support for AIX C++ shared extension modules. */ -#undef AIX_GENUINE_CPLUSPLUS - -/* Define if your contains bad prototypes for exec*() - (as it does on SGI IRIX 4.x) */ -#undef BAD_EXEC_PROTOTYPES - -/* Define if your compiler botches static forward declarations - (as it does on SCI ODT 3.0) */ -#undef BAD_STATIC_FORWARD - -/* Define this if you have BeOS threads */ -#undef BEOS_THREADS - -/* Define if you have the Mach cthreads package */ -#undef C_THREADS - -/* Define to `long' if doesn't define. */ -#undef clock_t - -/* Defined on Solaris to see additional function prototypes. */ -#undef __EXTENSIONS__ - -/* Define if getpgrp() must be called as getpgrp(0). */ -#undef GETPGRP_HAVE_ARG - -/* Define if gettimeofday() does not have second (timezone) argument - This is the case on Motorola V4 (R40V4.2) */ -#undef GETTIMEOFDAY_NO_TZ - -/* Define this if your time.h defines altzone */ -#undef HAVE_ALTZONE - -/* Define if --enable-ipv6 is specified */ -#undef ENABLE_IPV6 - -/* Define if sockaddr has sa_len member */ -#undef HAVE_SOCKADDR_SA_LEN - -/* struct addrinfo (netdb.h) */ -#undef HAVE_ADDRINFO - -/* struct sockaddr_storage (sys/socket.h) */ -#undef HAVE_SOCKADDR_STORAGE - -/* Defined when any dynamic module loading is enabled */ -#undef HAVE_DYNAMIC_LOADING - -/* Define this if you have flockfile(), getc_unlocked(), and funlockfile() */ -#undef HAVE_GETC_UNLOCKED - -/* Define this if you have some version of gethostbyname_r() */ -#undef HAVE_GETHOSTBYNAME_R - -/* Define this if you have the 3-arg version of gethostbyname_r() */ -#undef HAVE_GETHOSTBYNAME_R_3_ARG - -/* Define this if you have the 5-arg version of gethostbyname_r() */ -#undef HAVE_GETHOSTBYNAME_R_5_ARG - -/* Define this if you have the 6-arg version of gethostbyname_r() */ -#undef HAVE_GETHOSTBYNAME_R_6_ARG - -/* Defined to enable large file support when an off_t is bigger than a long - and long long is available and at least as big as an off_t. You may need - to add some flags for configuration and compilation to enable this mode. - E.g, for Solaris 2.7: - CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" OPT="-O2 $CFLAGS" \ - configure -*/ -#undef HAVE_LARGEFILE_SUPPORT - -/* Define this if you have the type long long */ -#undef HAVE_LONG_LONG - -/* Define if your compiler supports function prototypes */ -#undef HAVE_PROTOTYPES - -/* Define if you have GNU PTH threads */ -#undef HAVE_PTH - -/* Define if you have readline 4.2 */ -#undef HAVE_RL_COMPLETION_MATCHES - -/* Define if your compiler supports variable length function prototypes - (e.g. void fprintf(FILE *, char *, ...);) *and* */ -#undef HAVE_STDARG_PROTOTYPES - -/* Define this if you have the type uintptr_t */ -#undef HAVE_UINTPTR_T - -/* Define if you have a useable wchar_t type defined in wchar.h; useable - means wchar_t must be 16-bit unsigned type. (see - Include/unicodeobject.h). */ -#undef HAVE_USABLE_WCHAR_T - -/* Define if the compiler provides a wchar.h header file. */ -#undef HAVE_WCHAR_H - -/* Define if you want to have a Unicode type. */ -#undef Py_USING_UNICODE - -/* Define as the integral type used for Unicode representation. */ -#undef PY_UNICODE_TYPE - -/* Define as the size of the unicode type. */ -#undef Py_UNICODE_SIZE - -/* Define if nice() returns success/failure instead of the new priority. */ -#undef HAVE_BROKEN_NICE - -/* Define if malloc(0) returns a NULL pointer */ -#undef MALLOC_ZERO_RETURNS_NULL - -/* Define if you have POSIX threads */ -#undef _POSIX_THREADS - -/* Define if you want to build an interpreter with many run-time checks */ -#undef Py_DEBUG - -/* Define to force use of thread-safe errno, h_errno, and other functions */ -#undef _REENTRANT - -/* Define if setpgrp() must be called as setpgrp(0, 0). */ -#undef SETPGRP_HAVE_ARG - -/* Define to empty if the keyword does not work. */ -#undef signed - -/* Define if i>>j for signed int i does not extend the sign bit - when i < 0 -*/ -#undef SIGNED_RIGHT_SHIFT_ZERO_FILLS - -/* The number of bytes in an off_t. */ -#undef SIZEOF_OFF_T - -/* The number of bytes in a time_t. */ -#undef SIZEOF_TIME_T - -/* The number of bytes in a pthread_t. */ -#undef SIZEOF_PTHREAD_T - -/* Define to `int' if doesn't define. */ -#undef socklen_t - -/* Define if you can safely include both and - (which you can't on SCO ODT 3.0). */ -#undef SYS_SELECT_WITH_SYS_TIME - -/* Define if a va_list is an array of some kind */ -#undef VA_LIST_IS_ARRAY - -/* Define to empty if the keyword does not work. */ -#undef volatile - -/* Define if you want SIGFPE handled (see Include/pyfpe.h). */ -#undef WANT_SIGFPE_HANDLER - -/* Define if you want wctype.h functions to be used instead of the - one supplied by Python itself. (see Include/unicodectype.h). */ -#undef WANT_WCTYPE_FUNCTIONS - -/* Define if you want to compile in cycle garbage collection */ -#undef WITH_CYCLE_GC - -/* Define if you want to emulate SGI (IRIX 4) dynamic linking. - This is rumoured to work on VAX (Ultrix), Sun3 (SunOS 3.4), - Sequent Symmetry (Dynix), and Atari ST. - This requires the "dl-dld" library, - ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z, - as well as the "GNU dld" library, - ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z. - Don't bother on SunOS 4 or 5, they already have dynamic linking using - shared libraries */ -#undef WITH_DL_DLD - -/* Define if you want to use the new-style (Openstep, Rhapsody, MacOS) - dynamic linker (dyld) instead of the old-style (NextStep) dynamic - linker (rld). Dyld is necessary to support frameworks. */ -#undef WITH_DYLD - -/* Define if you want to compile in Python-specific mallocs */ -#undef WITH_PYMALLOC - -/* Define if you want to produce an OpenStep/Rhapsody framework - (shared library plus accessory files). */ -#undef WITH_NEXT_FRAMEWORK - -/* Define if you want to use MacPython modules on MacOSX in unix-Python */ -#undef USE_TOOLBOX_OBJECT_GLUE - -/* Define if you want to use SGI (IRIX 4) dynamic linking. - This requires the "dl" library by Jack Jansen, - ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z. - Don't bother on IRIX 5, it already has dynamic linking using SunOS - style shared libraries */ -#undef WITH_SGI_DL - -/* Define if you want to compile in rudimentary thread support */ -#undef WITH_THREAD - -/* The number of bytes in a char. */ -#undef SIZEOF_CHAR - -/* The number of bytes in a double. */ -#undef SIZEOF_DOUBLE - -/* The number of bytes in a float. */ -#undef SIZEOF_FLOAT - -/* The number of bytes in a fpos_t. */ -#undef SIZEOF_FPOS_T - -/* The number of bytes in a int. */ -#undef SIZEOF_INT - -/* The number of bytes in a long. */ -#undef SIZEOF_LONG - -/* The number of bytes in a long long. */ -#undef SIZEOF_LONG_LONG - -/* The number of bytes in a short. */ -#undef SIZEOF_SHORT - -/* The number of bytes in a uintptr_t. */ -#undef SIZEOF_UINTPTR_T - -/* The number of bytes in a void *. */ -#undef SIZEOF_VOID_P - -/* The number of bytes in a wchar_t. */ -#undef SIZEOF_WCHAR_T - -/* Define if you have the _getpty function. */ -#undef HAVE__GETPTY - -/* Define if you have the alarm function. */ -#undef HAVE_ALARM - -/* Define if you have the chown function. */ -#undef HAVE_CHOWN - -/* Define if you have the clock function. */ -#undef HAVE_CLOCK - -/* Define if you have the confstr function. */ -#undef HAVE_CONFSTR - -/* Define if you have the ctermid function. */ -#undef HAVE_CTERMID - -/* Define if you have the ctermid_r function. */ -#undef HAVE_CTERMID_R - -/* Define if you have the dlopen function. */ -#undef HAVE_DLOPEN - -/* Define if you have the dup2 function. */ -#undef HAVE_DUP2 - -/* Define if you have the execv function. */ -#undef HAVE_EXECV - -/* Define if you have the fdatasync function. */ -#undef HAVE_FDATASYNC - -/* Define if you have the flock function. */ -#undef HAVE_FLOCK - -/* Define if you have the fork function. */ -#undef HAVE_FORK - -/* Define if you have the forkpty function. */ -#undef HAVE_FORKPTY - -/* Define if you have the fpathconf function. */ -#undef HAVE_FPATHCONF - -/* Define if you have the fseek64 function. */ -#undef HAVE_FSEEK64 - -/* Define if you have the fseeko function. */ -#undef HAVE_FSEEKO - -/* Define if you have the fstatvfs function. */ -#undef HAVE_FSTATVFS - -/* Define if you have the fsync function. */ -#undef HAVE_FSYNC - -/* Define if you have the ftell64 function. */ -#undef HAVE_FTELL64 - -/* Define if you have the ftello function. */ -#undef HAVE_FTELLO - -/* Define if you have the ftime function. */ -#undef HAVE_FTIME - -/* Define if you have the ftruncate function. */ -#undef HAVE_FTRUNCATE - -/* Define if you have the getaddrinfo function. */ -#undef HAVE_GETADDRINFO - -/* Define if you have the getcwd function. */ -#undef HAVE_GETCWD - -/* Define if you have the getgroups function. */ -#undef HAVE_GETGROUPS - -/* Define if you have the gethostbyname function. */ -#undef HAVE_GETHOSTBYNAME - -/* Define if you have the getlogin function. */ -#undef HAVE_GETLOGIN - -/* Define if you have the getnameinfo function. */ -#undef HAVE_GETNAMEINFO - -/* Define if you have the getpeername function. */ -#undef HAVE_GETPEERNAME - -/* Define if you have the getpgrp function. */ -#undef HAVE_GETPGRP - -/* Define if you have the getpid function. */ -#undef HAVE_GETPID - -/* Define if you have the getpriority function. */ -#undef HAVE_GETPRIORITY - -/* Define if you have the getpwent function. */ -#undef HAVE_GETPWENT - -/* Define if you have the gettimeofday function. */ -#undef HAVE_GETTIMEOFDAY - -/* Define if you have the getwd function. */ -#undef HAVE_GETWD - -/* Define if you have the hypot function. */ -#undef HAVE_HYPOT - -/* Define if you have the inet_pton function. */ -#undef HAVE_INET_PTON - -/* Define if you have the kill function. */ -#undef HAVE_KILL - -/* Define if you have the link function. */ -#undef HAVE_LINK - -/* Define if you have the lstat function. */ -#undef HAVE_LSTAT - -/* Define if you have the memmove function. */ -#undef HAVE_MEMMOVE - -/* Define if you have the mkfifo function. */ -#undef HAVE_MKFIFO - -/* Define if you have the mktime function. */ -#undef HAVE_MKTIME - -/* Define if you have the mremap function. */ -#undef HAVE_MREMAP - -/* Define if you have the nice function. */ -#undef HAVE_NICE - -/* Define if you have the openpty function. */ -#undef HAVE_OPENPTY - -/* Define if you have the pathconf function. */ -#undef HAVE_PATHCONF - -/* Define if you have the pause function. */ -#undef HAVE_PAUSE - -/* Define if you have the plock function. */ -#undef HAVE_PLOCK - -/* Define if you have the poll function. */ -#undef HAVE_POLL - -/* Define if you have the pthread_init function. */ -#undef HAVE_PTHREAD_INIT - -/* Define if you have the putenv function. */ -#undef HAVE_PUTENV - -/* Define if you have the readlink function. */ -#undef HAVE_READLINK - -/* Define if you have the select function. */ -#undef HAVE_SELECT - -/* Define if you have the setegid function. */ -#undef HAVE_SETEGID - -/* Define if you have the seteuid function. */ -#undef HAVE_SETEUID - -/* Define if you have the setgid function. */ -#undef HAVE_SETGID - -/* Define if you have the setlocale function. */ -#undef HAVE_SETLOCALE - -/* Define if you have the setpgid function. */ -#undef HAVE_SETPGID - -/* Define if you have the setpgrp function. */ -#undef HAVE_SETPGRP - -/* Define if you have the setregid function. */ -#undef HAVE_SETREGID - -/* Define if you have the setreuid function. */ -#undef HAVE_SETREUID - -/* Define if you have the setsid function. */ -#undef HAVE_SETSID - -/* Define if you have the setuid function. */ -#undef HAVE_SETUID - -/* Define if you have the setvbuf function. */ -#undef HAVE_SETVBUF - -/* Define if you have the sigaction function. */ -#undef HAVE_SIGACTION - -/* Define if you have the siginterrupt function. */ -#undef HAVE_SIGINTERRUPT - -/* Define if you have the sigrelse function. */ -#undef HAVE_SIGRELSE - -/* Define if you have the snprintf function. */ -#undef HAVE_SNPRINTF - -/* Define if you have the statvfs function. */ -#undef HAVE_STATVFS - -/* Define if you have the strdup function. */ -#undef HAVE_STRDUP - -/* Define if you have the strerror function. */ -#undef HAVE_STRERROR - -/* Define if you have the strftime function. */ -#undef HAVE_STRFTIME - -/* Define if you have the strptime function. */ -#undef HAVE_STRPTIME - -/* Define if you have the symlink function. */ -#undef HAVE_SYMLINK - -/* Define if you have the sysconf function. */ -#undef HAVE_SYSCONF - -/* Define if you have the tcgetpgrp function. */ -#undef HAVE_TCGETPGRP - -/* Define if you have the tcsetpgrp function. */ -#undef HAVE_TCSETPGRP - -/* Define if you have the tempnam function. */ -#undef HAVE_TEMPNAM - -/* Define if you have the timegm function. */ -#undef HAVE_TIMEGM - -/* Define if you have the times function. */ -#undef HAVE_TIMES - -/* Define if you have the tmpfile function. */ -#undef HAVE_TMPFILE - -/* Define if you have the tmpnam function. */ -#undef HAVE_TMPNAM - -/* Define if you have the tmpnam_r function. */ -#undef HAVE_TMPNAM_R - -/* Define if you have the truncate function. */ -#undef HAVE_TRUNCATE - -/* Define if you have the uname function. */ -#undef HAVE_UNAME - -/* Define if you have the waitpid function. */ -#undef HAVE_WAITPID - -/* Define if you have the header file. */ -#undef HAVE_DB_H - -/* Define if you have the header file. */ -#undef HAVE_DB1_NDBM_H - -/* Define if you have the header file. */ -#undef HAVE_DB_185_H - -/* Define if you have the header file. */ -#undef HAVE_DIRENT_H - -/* Define if you have the header file. */ -#undef HAVE_DLFCN_H - -/* Define if you have the header file. */ -#undef HAVE_FCNTL_H - -/* Define if you have the header file. */ -#undef HAVE_GDBM_NDBM_H - -/* Define if you have the header file. */ -#undef HAVE_LIBUTIL_H - -/* Define if you have the header file. */ -#undef HAVE_LIMITS_H - -/* Define if you have the header file. */ -#undef HAVE_LOCALE_H - -/* Define if you have the header file. */ -#undef HAVE_NCURSES_H - -/* Define if you have the header file. */ -#undef HAVE_NDBM_H - -/* Define if you have the header file. */ -#undef HAVE_NDIR_H - -/* Define if you have the header file. */ -#undef HAVE_POLL_H - -/* Define if you have the header file. */ -#undef HAVE_PTHREAD_H - -/* Define if you have the header file. */ -#undef HAVE_PTY_H - -/* Define if you have the header file. */ -#undef HAVE_SIGNAL_H - -/* Define if you have the header file. */ -#undef HAVE_STDARG_H - -/* Define if you have the header file. */ -#undef HAVE_STDDEF_H - -/* Define if you have the header file. */ -#undef HAVE_STDLIB_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_AUDIOIO_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_DIR_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_FILE_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_LOCK_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_MODEM_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_NDIR_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_PARAM_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_POLL_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_RESOURCE_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_SELECT_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_SOCKET_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_TIME_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_TIMES_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_UN_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_UTSNAME_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_WAIT_H - -/* Define if you have the header file. */ -#undef HAVE_TERMIOS_H - -/* Define if you have the header file. */ -#undef HAVE_THREAD_H - -/* Define if you have the header file. */ -#undef HAVE_UNISTD_H - -/* Define if you have the header file. */ -#undef HAVE_UTIME_H - -/* Define if you have the dl library (-ldl). */ -#undef HAVE_LIBDL - -/* Define if you have the dld library (-ldld). */ -#undef HAVE_LIBDLD - -/* Define if you have the ieee library (-lieee). */ -#undef HAVE_LIBIEEE - -#ifdef __CYGWIN__ -#ifdef USE_DL_IMPORT -#define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE -#define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE -#else -#define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE -#define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE -#endif -#endif diff --git a/configure b/configure index 6c7166b..ac86106 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh -# From configure.in Revision: 1.234 +# From configure.in Revision: 1.235 # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.13 @@ -7107,7 +7107,7 @@ done ac_given_srcdir=$srcdir ac_given_INSTALL="$INSTALL" -trap 'rm -fr `echo "Makefile.pre Modules/Setup.config config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 +trap 'rm -fr `echo "Makefile.pre Modules/Setup.config pyconfig.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 EOF cat >> $CONFIG_STATUS <> $CONFIG_STATUS <> $CONFIG_STATUS <<\EOF fi diff --git a/configure.in b/configure.in index ce48386..3ba4417 100644 --- a/configure.in +++ b/configure.in @@ -2,7 +2,7 @@ dnl Process this file with autoconf 2.0 or later to make a configure script. AC_REVISION($Revision$) AC_PREREQ(2.0) AC_INIT(Include/object.h) -AC_CONFIG_HEADER(config.h) +AC_CONFIG_HEADER(pyconfig.h) # Set VERSION so we only need to edit in one place (i.e., here) AC_SUBST(VERSION) diff --git a/pyconfig.h.in b/pyconfig.h.in new file mode 100644 index 0000000..e1013fe --- /dev/null +++ b/pyconfig.h.in @@ -0,0 +1,706 @@ +/* pyconfig.h.in. Generated automatically from configure.in by autoheader. */ + +/* Define if on AIX 3. + System headers sometimes define this. + We just want to avoid a redefinition error message. */ +#ifndef _ALL_SOURCE +#undef _ALL_SOURCE +#endif + +/* Define if type char is unsigned and you are not using gcc. */ +#ifndef __CHAR_UNSIGNED__ +#undef __CHAR_UNSIGNED__ +#endif + +/* Define to empty if the keyword does not work. */ +#undef const + +/* Define to `int' if doesn't define. */ +#undef gid_t + +/* Define if your struct tm has tm_zone. */ +#undef HAVE_TM_ZONE + +/* Define if you don't have tm_zone but do have the external array + tzname. */ +#undef HAVE_TZNAME + +/* Define if on MINIX. */ +#undef _MINIX + +/* Define to `int' if doesn't define. */ +#undef mode_t + +/* Define to `long' if doesn't define. */ +#undef off_t + +/* Define to `int' if doesn't define. */ +#undef pid_t + +/* Define if the system does not provide POSIX.1 features except + with this defined. */ +#undef _POSIX_1_SOURCE + +/* Define if you need to in order for stat and other things to work. */ +#undef _POSIX_SOURCE + +/* Define as the return type of signal handlers (int or void). */ +#undef RETSIGTYPE + +/* Define to `unsigned' if doesn't define. */ +#undef size_t + +/* Define if you have the ANSI C header files. */ +#undef STDC_HEADERS + +/* Define if you can safely include both and . */ +#undef TIME_WITH_SYS_TIME + +/* Define if your declares struct tm. */ +#undef TM_IN_SYS_TIME + +/* Define to `int' if doesn't define. */ +#undef uid_t + +/* Define if your processor stores words with the most significant + byte first (like Motorola and SPARC, unlike Intel and VAX). */ +#undef WORDS_BIGENDIAN + +/* Define for AIX if your compiler is a genuine IBM xlC/xlC_r + and you want support for AIX C++ shared extension modules. */ +#undef AIX_GENUINE_CPLUSPLUS + +/* Define if your contains bad prototypes for exec*() + (as it does on SGI IRIX 4.x) */ +#undef BAD_EXEC_PROTOTYPES + +/* Define if your compiler botches static forward declarations + (as it does on SCI ODT 3.0) */ +#undef BAD_STATIC_FORWARD + +/* Define this if you have BeOS threads */ +#undef BEOS_THREADS + +/* Define if you have the Mach cthreads package */ +#undef C_THREADS + +/* Define to `long' if doesn't define. */ +#undef clock_t + +/* Defined on Solaris to see additional function prototypes. */ +#undef __EXTENSIONS__ + +/* Define if getpgrp() must be called as getpgrp(0). */ +#undef GETPGRP_HAVE_ARG + +/* Define if gettimeofday() does not have second (timezone) argument + This is the case on Motorola V4 (R40V4.2) */ +#undef GETTIMEOFDAY_NO_TZ + +/* Define this if your time.h defines altzone */ +#undef HAVE_ALTZONE + +/* Define if --enable-ipv6 is specified */ +#undef ENABLE_IPV6 + +/* Define if sockaddr has sa_len member */ +#undef HAVE_SOCKADDR_SA_LEN + +/* struct addrinfo (netdb.h) */ +#undef HAVE_ADDRINFO + +/* struct sockaddr_storage (sys/socket.h) */ +#undef HAVE_SOCKADDR_STORAGE + +/* Defined when any dynamic module loading is enabled */ +#undef HAVE_DYNAMIC_LOADING + +/* Define this if you have flockfile(), getc_unlocked(), and funlockfile() */ +#undef HAVE_GETC_UNLOCKED + +/* Define this if you have some version of gethostbyname_r() */ +#undef HAVE_GETHOSTBYNAME_R + +/* Define this if you have the 3-arg version of gethostbyname_r() */ +#undef HAVE_GETHOSTBYNAME_R_3_ARG + +/* Define this if you have the 5-arg version of gethostbyname_r() */ +#undef HAVE_GETHOSTBYNAME_R_5_ARG + +/* Define this if you have the 6-arg version of gethostbyname_r() */ +#undef HAVE_GETHOSTBYNAME_R_6_ARG + +/* Defined to enable large file support when an off_t is bigger than a long + and long long is available and at least as big as an off_t. You may need + to add some flags for configuration and compilation to enable this mode. + E.g, for Solaris 2.7: + CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" OPT="-O2 $CFLAGS" \ + configure +*/ +#undef HAVE_LARGEFILE_SUPPORT + +/* Define this if you have the type long long */ +#undef HAVE_LONG_LONG + +/* Define if your compiler supports function prototypes */ +#undef HAVE_PROTOTYPES + +/* Define if you have GNU PTH threads */ +#undef HAVE_PTH + +/* Define if you have readline 4.2 */ +#undef HAVE_RL_COMPLETION_MATCHES + +/* Define if your compiler supports variable length function prototypes + (e.g. void fprintf(FILE *, char *, ...);) *and* */ +#undef HAVE_STDARG_PROTOTYPES + +/* Define this if you have the type uintptr_t */ +#undef HAVE_UINTPTR_T + +/* Define if you have a useable wchar_t type defined in wchar.h; useable + means wchar_t must be 16-bit unsigned type. (see + Include/unicodeobject.h). */ +#undef HAVE_USABLE_WCHAR_T + +/* Define if the compiler provides a wchar.h header file. */ +#undef HAVE_WCHAR_H + +/* Define if you want to have a Unicode type. */ +#undef Py_USING_UNICODE + +/* Define as the integral type used for Unicode representation. */ +#undef PY_UNICODE_TYPE + +/* Define as the size of the unicode type. */ +#undef Py_UNICODE_SIZE + +/* Define if nice() returns success/failure instead of the new priority. */ +#undef HAVE_BROKEN_NICE + +/* Define if malloc(0) returns a NULL pointer */ +#undef MALLOC_ZERO_RETURNS_NULL + +/* Define if you have POSIX threads */ +#undef _POSIX_THREADS + +/* Define if you want to build an interpreter with many run-time checks */ +#undef Py_DEBUG + +/* Define to force use of thread-safe errno, h_errno, and other functions */ +#undef _REENTRANT + +/* Define if setpgrp() must be called as setpgrp(0, 0). */ +#undef SETPGRP_HAVE_ARG + +/* Define to empty if the keyword does not work. */ +#undef signed + +/* Define if i>>j for signed int i does not extend the sign bit + when i < 0 +*/ +#undef SIGNED_RIGHT_SHIFT_ZERO_FILLS + +/* The number of bytes in an off_t. */ +#undef SIZEOF_OFF_T + +/* The number of bytes in a time_t. */ +#undef SIZEOF_TIME_T + +/* The number of bytes in a pthread_t. */ +#undef SIZEOF_PTHREAD_T + +/* Define to `int' if doesn't define. */ +#undef socklen_t + +/* Define if you can safely include both and + (which you can't on SCO ODT 3.0). */ +#undef SYS_SELECT_WITH_SYS_TIME + +/* Define if a va_list is an array of some kind */ +#undef VA_LIST_IS_ARRAY + +/* Define to empty if the keyword does not work. */ +#undef volatile + +/* Define if you want SIGFPE handled (see Include/pyfpe.h). */ +#undef WANT_SIGFPE_HANDLER + +/* Define if you want wctype.h functions to be used instead of the + one supplied by Python itself. (see Include/unicodectype.h). */ +#undef WANT_WCTYPE_FUNCTIONS + +/* Define if you want to compile in cycle garbage collection */ +#undef WITH_CYCLE_GC + +/* Define if you want to emulate SGI (IRIX 4) dynamic linking. + This is rumoured to work on VAX (Ultrix), Sun3 (SunOS 3.4), + Sequent Symmetry (Dynix), and Atari ST. + This requires the "dl-dld" library, + ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z, + as well as the "GNU dld" library, + ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z. + Don't bother on SunOS 4 or 5, they already have dynamic linking using + shared libraries */ +#undef WITH_DL_DLD + +/* Define if you want to use the new-style (Openstep, Rhapsody, MacOS) + dynamic linker (dyld) instead of the old-style (NextStep) dynamic + linker (rld). Dyld is necessary to support frameworks. */ +#undef WITH_DYLD + +/* Define if you want to compile in Python-specific mallocs */ +#undef WITH_PYMALLOC + +/* Define if you want to produce an OpenStep/Rhapsody framework + (shared library plus accessory files). */ +#undef WITH_NEXT_FRAMEWORK + +/* Define if you want to use MacPython modules on MacOSX in unix-Python */ +#undef USE_TOOLBOX_OBJECT_GLUE + +/* Define if you want to use SGI (IRIX 4) dynamic linking. + This requires the "dl" library by Jack Jansen, + ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z. + Don't bother on IRIX 5, it already has dynamic linking using SunOS + style shared libraries */ +#undef WITH_SGI_DL + +/* Define if you want to compile in rudimentary thread support */ +#undef WITH_THREAD + +/* The number of bytes in a char. */ +#undef SIZEOF_CHAR + +/* The number of bytes in a double. */ +#undef SIZEOF_DOUBLE + +/* The number of bytes in a float. */ +#undef SIZEOF_FLOAT + +/* The number of bytes in a fpos_t. */ +#undef SIZEOF_FPOS_T + +/* The number of bytes in a int. */ +#undef SIZEOF_INT + +/* The number of bytes in a long. */ +#undef SIZEOF_LONG + +/* The number of bytes in a long long. */ +#undef SIZEOF_LONG_LONG + +/* The number of bytes in a short. */ +#undef SIZEOF_SHORT + +/* The number of bytes in a uintptr_t. */ +#undef SIZEOF_UINTPTR_T + +/* The number of bytes in a void *. */ +#undef SIZEOF_VOID_P + +/* The number of bytes in a wchar_t. */ +#undef SIZEOF_WCHAR_T + +/* Define if you have the _getpty function. */ +#undef HAVE__GETPTY + +/* Define if you have the alarm function. */ +#undef HAVE_ALARM + +/* Define if you have the chown function. */ +#undef HAVE_CHOWN + +/* Define if you have the clock function. */ +#undef HAVE_CLOCK + +/* Define if you have the confstr function. */ +#undef HAVE_CONFSTR + +/* Define if you have the ctermid function. */ +#undef HAVE_CTERMID + +/* Define if you have the ctermid_r function. */ +#undef HAVE_CTERMID_R + +/* Define if you have the dlopen function. */ +#undef HAVE_DLOPEN + +/* Define if you have the dup2 function. */ +#undef HAVE_DUP2 + +/* Define if you have the execv function. */ +#undef HAVE_EXECV + +/* Define if you have the fdatasync function. */ +#undef HAVE_FDATASYNC + +/* Define if you have the flock function. */ +#undef HAVE_FLOCK + +/* Define if you have the fork function. */ +#undef HAVE_FORK + +/* Define if you have the forkpty function. */ +#undef HAVE_FORKPTY + +/* Define if you have the fpathconf function. */ +#undef HAVE_FPATHCONF + +/* Define if you have the fseek64 function. */ +#undef HAVE_FSEEK64 + +/* Define if you have the fseeko function. */ +#undef HAVE_FSEEKO + +/* Define if you have the fstatvfs function. */ +#undef HAVE_FSTATVFS + +/* Define if you have the fsync function. */ +#undef HAVE_FSYNC + +/* Define if you have the ftell64 function. */ +#undef HAVE_FTELL64 + +/* Define if you have the ftello function. */ +#undef HAVE_FTELLO + +/* Define if you have the ftime function. */ +#undef HAVE_FTIME + +/* Define if you have the ftruncate function. */ +#undef HAVE_FTRUNCATE + +/* Define if you have the getaddrinfo function. */ +#undef HAVE_GETADDRINFO + +/* Define if you have the getcwd function. */ +#undef HAVE_GETCWD + +/* Define if you have the getgroups function. */ +#undef HAVE_GETGROUPS + +/* Define if you have the gethostbyname function. */ +#undef HAVE_GETHOSTBYNAME + +/* Define if you have the getlogin function. */ +#undef HAVE_GETLOGIN + +/* Define if you have the getnameinfo function. */ +#undef HAVE_GETNAMEINFO + +/* Define if you have the getpeername function. */ +#undef HAVE_GETPEERNAME + +/* Define if you have the getpgrp function. */ +#undef HAVE_GETPGRP + +/* Define if you have the getpid function. */ +#undef HAVE_GETPID + +/* Define if you have the getpriority function. */ +#undef HAVE_GETPRIORITY + +/* Define if you have the getpwent function. */ +#undef HAVE_GETPWENT + +/* Define if you have the gettimeofday function. */ +#undef HAVE_GETTIMEOFDAY + +/* Define if you have the getwd function. */ +#undef HAVE_GETWD + +/* Define if you have the hypot function. */ +#undef HAVE_HYPOT + +/* Define if you have the inet_pton function. */ +#undef HAVE_INET_PTON + +/* Define if you have the kill function. */ +#undef HAVE_KILL + +/* Define if you have the link function. */ +#undef HAVE_LINK + +/* Define if you have the lstat function. */ +#undef HAVE_LSTAT + +/* Define if you have the memmove function. */ +#undef HAVE_MEMMOVE + +/* Define if you have the mkfifo function. */ +#undef HAVE_MKFIFO + +/* Define if you have the mktime function. */ +#undef HAVE_MKTIME + +/* Define if you have the mremap function. */ +#undef HAVE_MREMAP + +/* Define if you have the nice function. */ +#undef HAVE_NICE + +/* Define if you have the openpty function. */ +#undef HAVE_OPENPTY + +/* Define if you have the pathconf function. */ +#undef HAVE_PATHCONF + +/* Define if you have the pause function. */ +#undef HAVE_PAUSE + +/* Define if you have the plock function. */ +#undef HAVE_PLOCK + +/* Define if you have the poll function. */ +#undef HAVE_POLL + +/* Define if you have the pthread_init function. */ +#undef HAVE_PTHREAD_INIT + +/* Define if you have the putenv function. */ +#undef HAVE_PUTENV + +/* Define if you have the readlink function. */ +#undef HAVE_READLINK + +/* Define if you have the select function. */ +#undef HAVE_SELECT + +/* Define if you have the setegid function. */ +#undef HAVE_SETEGID + +/* Define if you have the seteuid function. */ +#undef HAVE_SETEUID + +/* Define if you have the setgid function. */ +#undef HAVE_SETGID + +/* Define if you have the setlocale function. */ +#undef HAVE_SETLOCALE + +/* Define if you have the setpgid function. */ +#undef HAVE_SETPGID + +/* Define if you have the setpgrp function. */ +#undef HAVE_SETPGRP + +/* Define if you have the setregid function. */ +#undef HAVE_SETREGID + +/* Define if you have the setreuid function. */ +#undef HAVE_SETREUID + +/* Define if you have the setsid function. */ +#undef HAVE_SETSID + +/* Define if you have the setuid function. */ +#undef HAVE_SETUID + +/* Define if you have the setvbuf function. */ +#undef HAVE_SETVBUF + +/* Define if you have the sigaction function. */ +#undef HAVE_SIGACTION + +/* Define if you have the siginterrupt function. */ +#undef HAVE_SIGINTERRUPT + +/* Define if you have the sigrelse function. */ +#undef HAVE_SIGRELSE + +/* Define if you have the snprintf function. */ +#undef HAVE_SNPRINTF + +/* Define if you have the statvfs function. */ +#undef HAVE_STATVFS + +/* Define if you have the strdup function. */ +#undef HAVE_STRDUP + +/* Define if you have the strerror function. */ +#undef HAVE_STRERROR + +/* Define if you have the strftime function. */ +#undef HAVE_STRFTIME + +/* Define if you have the strptime function. */ +#undef HAVE_STRPTIME + +/* Define if you have the symlink function. */ +#undef HAVE_SYMLINK + +/* Define if you have the sysconf function. */ +#undef HAVE_SYSCONF + +/* Define if you have the tcgetpgrp function. */ +#undef HAVE_TCGETPGRP + +/* Define if you have the tcsetpgrp function. */ +#undef HAVE_TCSETPGRP + +/* Define if you have the tempnam function. */ +#undef HAVE_TEMPNAM + +/* Define if you have the timegm function. */ +#undef HAVE_TIMEGM + +/* Define if you have the times function. */ +#undef HAVE_TIMES + +/* Define if you have the tmpfile function. */ +#undef HAVE_TMPFILE + +/* Define if you have the tmpnam function. */ +#undef HAVE_TMPNAM + +/* Define if you have the tmpnam_r function. */ +#undef HAVE_TMPNAM_R + +/* Define if you have the truncate function. */ +#undef HAVE_TRUNCATE + +/* Define if you have the uname function. */ +#undef HAVE_UNAME + +/* Define if you have the waitpid function. */ +#undef HAVE_WAITPID + +/* Define if you have the header file. */ +#undef HAVE_DB_H + +/* Define if you have the header file. */ +#undef HAVE_DB1_NDBM_H + +/* Define if you have the header file. */ +#undef HAVE_DB_185_H + +/* Define if you have the header file. */ +#undef HAVE_DIRENT_H + +/* Define if you have the header file. */ +#undef HAVE_DLFCN_H + +/* Define if you have the header file. */ +#undef HAVE_FCNTL_H + +/* Define if you have the header file. */ +#undef HAVE_GDBM_NDBM_H + +/* Define if you have the header file. */ +#undef HAVE_LIBUTIL_H + +/* Define if you have the header file. */ +#undef HAVE_LIMITS_H + +/* Define if you have the header file. */ +#undef HAVE_LOCALE_H + +/* Define if you have the header file. */ +#undef HAVE_NCURSES_H + +/* Define if you have the header file. */ +#undef HAVE_NDBM_H + +/* Define if you have the header file. */ +#undef HAVE_NDIR_H + +/* Define if you have the header file. */ +#undef HAVE_POLL_H + +/* Define if you have the header file. */ +#undef HAVE_PTHREAD_H + +/* Define if you have the header file. */ +#undef HAVE_PTY_H + +/* Define if you have the header file. */ +#undef HAVE_SIGNAL_H + +/* Define if you have the header file. */ +#undef HAVE_STDARG_H + +/* Define if you have the header file. */ +#undef HAVE_STDDEF_H + +/* Define if you have the header file. */ +#undef HAVE_STDLIB_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_AUDIOIO_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_DIR_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_FILE_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_LOCK_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_MODEM_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_NDIR_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_PARAM_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_POLL_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_RESOURCE_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_SELECT_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_SOCKET_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_TIME_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_TIMES_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_UN_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_UTSNAME_H + +/* Define if you have the header file. */ +#undef HAVE_SYS_WAIT_H + +/* Define if you have the header file. */ +#undef HAVE_TERMIOS_H + +/* Define if you have the header file. */ +#undef HAVE_THREAD_H + +/* Define if you have the header file. */ +#undef HAVE_UNISTD_H + +/* Define if you have the header file. */ +#undef HAVE_UTIME_H + +/* Define if you have the dl library (-ldl). */ +#undef HAVE_LIBDL + +/* Define if you have the dld library (-ldld). */ +#undef HAVE_LIBDLD + +/* Define if you have the ieee library (-lieee). */ +#undef HAVE_LIBIEEE + +#ifdef __CYGWIN__ +#ifdef USE_DL_IMPORT +#define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE +#define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE +#else +#define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE +#define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE +#endif +#endif -- cgit v0.12