Commit b26f3639 authored by Tim Peters's avatar Tim Peters

Enable pymalloc by default in the Windows build.

parent 76fffd81
...@@ -193,7 +193,7 @@ typedef int pid_t; ...@@ -193,7 +193,7 @@ typedef int pid_t;
/* egcs/gnu-win32 defines __GNUC__ and _WIN32 */ /* egcs/gnu-win32 defines __GNUC__ and _WIN32 */
#if defined(__GNUC__) && defined(_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. */ They should be complete enough to build extension modules. */
/* Suggested by Rene Liebscher <R.Liebscher@gmx.de> to avoid a GCC 2.91.* /* Suggested by Rene Liebscher <R.Liebscher@gmx.de> to avoid a GCC 2.91.*
bug that requires structure imports. More recent versions of the 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) */ ...@@ -239,13 +239,13 @@ you must define MS_NO_COREDLL (do not test this macro) */
#endif #endif
#define HAVE_LONG_LONG 1 #define HAVE_LONG_LONG 1
#define LONG_LONG long long #define LONG_LONG long long
#endif /* GNUC */ #endif /* GNUC */
/* lcc-win32 defines __LCC__ */ /* lcc-win32 defines __LCC__ */
#if defined(__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. */ They should be complete enough to build extension modules. */
#define NT /* NT is obsolete - please use MS_WIN32 instead */ #define NT /* NT is obsolete - please use MS_WIN32 instead */
...@@ -506,6 +506,9 @@ typedef int pid_t; ...@@ -506,6 +506,9 @@ typedef int pid_t;
/* Define if you want cycle garbage collection */ /* Define if you want cycle garbage collection */
#define WITH_CYCLE_GC 1 #define WITH_CYCLE_GC 1
/* Use Python's own small-block memory-allocator. */
#define WITH_PYMALLOC 1
/* Define if you have clock. */ /* Define if you have clock. */
/* #define HAVE_CLOCK */ /* #define HAVE_CLOCK */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment