diff options
author | Clint Adams <clint@users.sourceforge.net> | 2000-04-07 02:27:44 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2000-04-07 02:27:44 +0000 |
commit | 18870148c5e4e71c356821000bb2b8d07366cd49 (patch) | |
tree | dd1b70ae888b2b26aeca95ffc8854cbc4123abdf /configure.in | |
parent | d2330ba0554b09a3f942a921acfbbabcf6466bef (diff) | |
download | zsh-18870148c5e4e71c356821000bb2b8d07366cd49.tar.gz zsh-18870148c5e4e71c356821000bb2b8d07366cd49.tar.xz zsh-18870148c5e4e71c356821000bb2b8d07366cd49.zip |
10564: typo in _wanted
10565: maximum function depth configure option 10566: patgetglobflags has a second argument now
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.in b/configure.in index a245c1b84..2fde12a56 100644 --- a/configure.in +++ b/configure.in @@ -271,6 +271,16 @@ AC_ARG_ENABLE(maildir-support, AC_DEFINE(MAILDIR_SUPPORT) fi]) +dnl Do you want to set a maximum function depth? +undefine([max_function_depth])dnl +AC_ARG_ENABLE(max-function-depth, +[ --enable-max-function-depth=MAX Limit function depth to MAX], +[if test x$enableval = xyes; then + AC_DEFINE(MAX_FUNCTION_DEPTH, 4096) +else + AC_DEFINE_UNQUOTED(MAX_FUNCTION_DEPTH, $enableval) +fi]) + dnl ------------------ dnl CHECK THE COMPILER dnl ------------------ |