Changeset 210587b for configure.ac


Ignore:
Timestamp:
Feb 20, 2017, 12:37:03 PM (7 years ago)
Author:
Peter A. Buhr <pabuhr@…>
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.
Message:

Merge branch 'master' of plg2:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    r7fb1db7 r210587b  
    5757AC_ARG_ENABLE(target-release, AS_HELP_STRING([--enable-target-release], [Build and install the release target]))
    5858AC_ARG_ENABLE(target-debug, AS_HELP_STRING([--enable-target-debug], [Build and install the debug target]))
     59AC_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]) ;;
     64esac],[build_threading="yes"])
    5965
    6066case "$enable_target_release" in
     
    112118AM_CONDITIONAL([BUILD_DEBUG], [test "x$build_debug" = "xyes"])
    113119AM_CONDITIONAL([BUILD_NO_LIB], [test "x$build_release$build_debug" = "xnono"])
     120AM_CONDITIONAL([BUILD_CONCURRENCY], [test "x$build_threading" = "xyes"])
    114121
    115122if test "x$prefix" = "xNONE"; then
Note: See TracChangeset for help on using the changeset viewer.