diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-03-22 06:32:32 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-03-22 06:32:32 (GMT) |
commit | b26f3639ed9a26efad77afb7effcce0a93a4b43d (patch) | |
tree | 582510d03d9c35440295620d7b6f8749762afde6 /PC | |
parent | 76fffd81e9689bad56b3e7c766606831c6cfc3df (diff) | |
download | cpython-b26f3639ed9a26efad77afb7effcce0a93a4b43d.zip cpython-b26f3639ed9a26efad77afb7effcce0a93a4b43d.tar.gz cpython-b26f3639ed9a26efad77afb7effcce0a93a4b43d.tar.bz2 |
Enable pymalloc by default in the Windows build.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/pyconfig.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index b412f77..852f354 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -193,7 +193,7 @@ typedef int pid_t; /* egcs/gnu-win32 defines __GNUC__ and _WIN32 */ #if defined(__GNUC__) && defined(_WIN32) -/* XXX These defines are likely incomplete, but should be easy to fix. +/* 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 <R.Liebscher@gmx.de> to avoid a GCC 2.91.* bug that requires structure imports. More recent versions of the @@ -239,13 +239,13 @@ you must define MS_NO_COREDLL (do not test this macro) */ #endif #define HAVE_LONG_LONG 1 -#define LONG_LONG long long +#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. +/* 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 */ @@ -506,6 +506,9 @@ typedef int pid_t; /* Define if you want cycle garbage collection */ #define WITH_CYCLE_GC 1 +/* Use Python's own small-block memory-allocator. */ +#define WITH_PYMALLOC 1 + /* Define if you have clock. */ /* #define HAVE_CLOCK */ |