Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    r969e7ee7 r2fbc904  
    2828# New AST toggling support
    2929AH_TEMPLATE([CFA_USE_NEW_AST],[Sets whether or not to use the new-ast, this is adefault value and can be overrided by --old-ast and --new-ast])
    30 DEFAULT_NEW_AST="False"
    3130AC_ARG_ENABLE(new-ast,
    3231        [  --enable-new-ast     whether or not to use new ast as the default AST algorithm],
    3332        [case "${enableval}" in
    34                 yes) newast=true ; DEFAULT_NEW_AST="True"  ;;
    35                 no)  newast=false; DEFAULT_NEW_AST="False" ;;
     33                yes) newast=true ;;
     34                no)  newast=false ;;
    3635                *) AC_MSG_ERROR([bad value ${enableval} for --enable-new-ast]) ;;
    3736        esac],[newast=false])
    3837AC_DEFINE_UNQUOTED([CFA_USE_NEW_AST], $newast)
    39 AC_SUBST(DEFAULT_NEW_AST)
    4038
    4139#==============================================================================
Note: See TracChangeset for help on using the changeset viewer.