From: Ken Brown Date: Mon, 19 Oct 2015 20:53:22 +0000 (-0400) Subject: Enable --with-wide-int build on 32-bit Cygwin X-Git-Tag: emacs-25.0.90~1086 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b911b4b25db93c8b574a5dc6f1258893b4aa18c4;p=emacs.git Enable --with-wide-int build on 32-bit Cygwin * src/sheap.c (STATIC_HEAP_SIZE): Remove distinction between x86 and x86_64 to enable --with-wide-int build on 32-bit Cygwin. --- diff --git a/src/sheap.c b/src/sheap.c index 58a6a0b1cd3..106b2790367 100644 --- a/src/sheap.c +++ b/src/sheap.c @@ -25,19 +25,11 @@ along with GNU Emacs. If not, see . */ #include -#ifdef __x86_64__ #ifdef ENABLE_CHECKING #define STATIC_HEAP_SIZE (28 * 1024 * 1024) #else #define STATIC_HEAP_SIZE (19 * 1024 * 1024) #endif -#else /* x86 */ -#ifdef ENABLE_CHECKING -#define STATIC_HEAP_SIZE (18 * 1024 * 1024) -#else -#define STATIC_HEAP_SIZE (13 * 1024 * 1024) -#endif -#endif /* x86 */ int debug_sheap = 0;