diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-04-05 12:45:26 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-04-05 12:45:26 (GMT) |
commit | dedace94f65c93d73097ebd2ce60dc232835c9f2 (patch) | |
tree | 18f947b6adb97a695df53d8149c4ced49fe0edba /win/tcl.m4 | |
parent | 648c5bbcac5d87bd675f90402e5f3f13a1fe8223 (diff) | |
download | tcl-dedace94f65c93d73097ebd2ce60dc232835c9f2.zip tcl-dedace94f65c93d73097ebd2ce60dc232835c9f2.tar.gz tcl-dedace94f65c93d73097ebd2ce60dc232835c9f2.tar.bz2 |
Flip the defaults for whether to build threaded. Part of TIP #364.
Diffstat (limited to 'win/tcl.m4')
-rw-r--r-- | win/tcl.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -248,7 +248,7 @@ AC_DEFUN([SC_ENABLE_SHARED], [ AC_DEFUN([SC_ENABLE_THREADS], [ AC_MSG_CHECKING(for building with threads) AC_ARG_ENABLE(threads, [ --enable-threads build with threads], - [tcl_ok=$enableval], [tcl_ok=no]) + [tcl_ok=$enableval], [tcl_ok=yes]) if test "$tcl_ok" = "yes"; then AC_MSG_RESULT(yes) @@ -259,7 +259,7 @@ AC_DEFUN([SC_ENABLE_THREADS], [ AC_DEFINE(USE_THREAD_ALLOC) else TCL_THREADS=0 - AC_MSG_RESULT([no (default)]) + AC_MSG_RESULT(no) fi AC_SUBST(TCL_THREADS) ]) |