Changeset 210587b for configure.ac
- Timestamp:
- Feb 20, 2017, 12:37:03 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- fc39193
- Parents:
- 7fb1db7 (diff), 3bff885 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r7fb1db7 r210587b 57 57 AC_ARG_ENABLE(target-release, AS_HELP_STRING([--enable-target-release], [Build and install the release target])) 58 58 AC_ARG_ENABLE(target-debug, AS_HELP_STRING([--enable-target-debug], [Build and install the debug target])) 59 AC_ARG_ENABLE(threading, AS_HELP_STRING([--enable-threading], [Build and install libcfa with threading support (Enabled by default)]), 60 [case "${enableval}" in 61 yes) build_threading-"yes" ;; 62 no) build_threading="no" ;; 63 *) AC_MSG_ERROR([bad value ${enableval} for --enable-debug]) ;; 64 esac],[build_threading="yes"]) 59 65 60 66 case "$enable_target_release" in … … 112 118 AM_CONDITIONAL([BUILD_DEBUG], [test "x$build_debug" = "xyes"]) 113 119 AM_CONDITIONAL([BUILD_NO_LIB], [test "x$build_release$build_debug" = "xnono"]) 120 AM_CONDITIONAL([BUILD_CONCURRENCY], [test "x$build_threading" = "xyes"]) 114 121 115 122 if test "x$prefix" = "xNONE"; then
Note: See TracChangeset
for help on using the changeset viewer.