Changeset a62cbb3


Ignore:
Timestamp:
Mar 1, 2017, 3:20:30 PM (7 years ago)
Author:
Thierry Delisle <tdelisle@…>
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:
871b664
Parents:
be65cca
Message:

Fixed enable-threading option and removed extraneous debug print

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • configure

    rbe65cca ra62cbb3  
    31313131if test "${enable_threading+set}" = set; then :
    31323132  enableval=$enable_threading; case "${enableval}" in
    3133   yes) build_threading-"yes" ;;
     3133  yes) build_threading="yes" ;;
    31343134  no)  build_threading="no" ;;
    31353135  *) as_fn_error $? "bad value ${enableval} for --enable-debug" "$LINENO" 5 ;;
     
    32233223fi
    32243224
     3225
     3226echo $build_threading
    32253227
    32263228if test "x$prefix" = "xNONE"; then
  • configure.ac

    rbe65cca ra62cbb3  
    5959AC_ARG_ENABLE(threading, AS_HELP_STRING([--enable-threading], [Build and install libcfa with threading support (Enabled by default)]),
    6060[case "${enableval}" in
    61   yes) build_threading-"yes" ;;
     61  yes) build_threading="yes" ;;
    6262  no)  build_threading="no" ;;
    6363  *) AC_MSG_ERROR([bad value ${enableval} for --enable-debug]) ;;
  • src/tests/test.py

    rbe65cca ra62cbb3  
    267267        sys.exit(1)
    268268
    269 print( options.concurrent )
    270 
    271269# fetch the liest of all valid tests
    272270allTests = listTests( options.concurrent )
Note: See TracChangeset for help on using the changeset viewer.