]> git.eshelyaron.com Git - emacs.git/commitdiff
* configure.ac: Raise HEAPSIZE value for 32-bit builds on Windows.
authorJuanma Barranquero <lekktu@gmail.com>
Sun, 1 Jun 2014 21:27:53 +0000 (23:27 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Sun, 1 Jun 2014 21:27:53 +0000 (23:27 +0200)
ChangeLog
configure.ac

index b6af29d19c1fa8a4356784e08145f976a946e30b..5790edaa174a979258c0d705b645bbc18582fe6f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-06-01  Juanma Barranquero  <lekktu@gmail.com>
+
+       * configure.ac (C_HEAP_SWITCH): Raise HEAPSIZE value for 32-bit
+       builds on Windows.
+
 2014-05-29  Paul Eggert  <eggert@cs.ucla.edu>
 
        * configure.ac (pthread_sigmask): Look in LIB_PTHREAD too (Bug#17561).
@@ -23,7 +28,7 @@
 
 2014-05-27  Fabrice Popineau  <fabrice.popineau@gmail.com>
 
-       * configure.ac (C_HEAP_SWITCH) define for different values of
+       * configure.ac (C_HEAP_SWITCH): Define for different values of
        dumped heap size depending on 32/64bits arch on Windows.
        Don't check for pthreads.h on MinGW32/64, it gets in the way.
        Use mmap(2) for buffers and system malloc for MinGW32/64.
index e9f5099becd0e495662e2d15de3b3959edede88e..61b7d3621cf406abc125057b88e6ab0bd22341d4 100644 (file)
@@ -4841,7 +4841,7 @@ if test "${opsys}" = "mingw32"; then
   ## Preload heap size of temacs.exe in MB.
   case "$canonical" in
     x86_64-*-*) C_HEAP_SWITCH="-DHEAPSIZE=18" ;;
-    *) C_HEAP_SWITCH="-DHEAPSIZE=10" ;;
+    *) C_HEAP_SWITCH="-DHEAPSIZE=12" ;;
   esac
 fi