From cffcf3512cc757ece69f8ad6aedf3957dd9261cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mois=C3=A9s=20Guimar=C3=A3es?= Date: Mon, 12 May 2014 08:34:19 -0300 Subject: [PATCH] Making small stack usage disabled by default --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 8d7b46037..027377965 100644 --- a/configure.ac +++ b/configure.ac @@ -1356,9 +1356,9 @@ fi # Small Stack AC_ARG_ENABLE([smallstack], - [ --enable-smallstack Enable Small Stack Usage (default: enabled)], + [ --enable-smallstack Enable Small Stack Usage (default: disabled)], [ ENABLED_SMALL_STACK=$enableval ], - [ ENABLED_SMALL_STACK=yes ] + [ ENABLED_SMALL_STACK=no ] ) if test "x$ENABLED_SMALL_STACK" = "xyes"