Changeset 08ce416 for configure.ac
- Timestamp:
- Dec 7, 2020, 12:57:06 PM (2 years ago)
- Branches:
- ADT, arm-eh, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- a468e1e9
- Parents:
- ad915e0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
rad915e0 r08ce416 3 3 4 4 AC_PREREQ([2.68]) 5 AC_INIT([cfa-cc],[1.0.0 .0],[cforall@plg.uwaterloo.ca])5 AC_INIT([cfa-cc],[1.0.0],[cforall@plg.uwaterloo.ca]) 6 6 AC_CONFIG_AUX_DIR([automake]) 7 7 AC_CONFIG_MACRO_DIRS([automake]) … … 35 35 no) newast=false; DEFAULT_NEW_AST="False" ;; 36 36 *) AC_MSG_ERROR([bad value ${enableval} for --enable-new-ast]) ;; 37 esac],[newast= false])37 esac],[newast=true]) 38 38 AC_DEFINE_UNQUOTED([CFA_USE_NEW_AST], $newast) 39 39 AC_SUBST(DEFAULT_NEW_AST) … … 139 139 \'--enable-gprofiler=*) ;; 140 140 \'--disable-gprofiler) ;; 141 142 # skip the target hosts 143 \'--enable-new-ast=*) ;; 144 \'--disable-new-ast) ;; 141 145 142 146 # skip this, it only causes problems … … 287 291 libcfa/Makefile:libcfa/Makefile.dist.in 288 292 tests/Makefile 289 longrun_tests/Makefile290 benchmark/Makefile291 benchmark/io/http/Makefile292 293 tools/Makefile 293 294 tools/prettyprinter/Makefile 294 295 ]) 295 296 297 # Some of our makefile don't need to be distributed 298 AM_CONDITIONAL([CFORALL_DISTRIBUTE], [test -e $TOP_SRCDIR/autogen.sh]) 299 AM_COND_IF([CFORALL_DISTRIBUTE], 300 [AC_CONFIG_FILES([ 301 longrun_tests/Makefile 302 benchmark/Makefile 303 benchmark/io/http/Makefile 304 ])]) 305 296 306 AC_CONFIG_LINKS([tests/test.py:tests/test.py]) 297 307
Note: See TracChangeset
for help on using the changeset viewer.