Making small stack usage disabled by default

This commit is contained in:
Moisés Guimarães 2014-05-12 08:34:19 -03:00
parent 7fcaa03436
commit cffcf3512c
1 changed files with 2 additions and 2 deletions

View File

@ -1356,9 +1356,9 @@ fi
# Small Stack # Small Stack
AC_ARG_ENABLE([smallstack], 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=$enableval ],
[ ENABLED_SMALL_STACK=yes ] [ ENABLED_SMALL_STACK=no ]
) )
if test "x$ENABLED_SMALL_STACK" = "xyes" if test "x$ENABLED_SMALL_STACK" = "xyes"