summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--configure.ac2
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index b6af29d19c1..5790edaa174 100644
--- 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.
diff --git a/configure.ac b/configure.ac
index e9f5099becd..61b7d3621cf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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