From a940c3648790aaf115068d8b2a4e239b01cac6a6 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Mon, 19 Jun 2006 10:55:26 +0000 Subject: 22501: reduce maximum function depth to 1000 --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 18bded9d8..3feae15ea 100644 --- a/configure.ac +++ b/configure.ac @@ -325,13 +325,13 @@ ifdef([max_function_depth],[undefine([max_function_depth])])dnl AH_TEMPLATE([MAX_FUNCTION_DEPTH], [Define for function depth limits]) AC_ARG_ENABLE(max-function-depth, -AC_HELP_STRING([--enable-max-function-depth=MAX], [limit function depth to MAX, default 4096]), +AC_HELP_STRING([--enable-max-function-depth=MAX], [limit function depth to MAX, default 1000]), [if test x$enableval = xyes; then - AC_DEFINE(MAX_FUNCTION_DEPTH, 4096) + AC_DEFINE(MAX_FUNCTION_DEPTH, 1000) elif test x$enableval != xno; then AC_DEFINE_UNQUOTED(MAX_FUNCTION_DEPTH, $enableval) fi], -[AC_DEFINE(MAX_FUNCTION_DEPTH, 4096)] +[AC_DEFINE(MAX_FUNCTION_DEPTH, 1000)] ) dnl Do you want to look for pcre support? -- cgit 1.4.1