summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2010-04-05 12:45:26 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2010-04-05 12:45:26 (GMT)
commitdedace94f65c93d73097ebd2ce60dc232835c9f2 (patch)
tree18f947b6adb97a695df53d8149c4ced49fe0edba /unix
parent648c5bbcac5d87bd675f90402e5f3f13a1fe8223 (diff)
downloadtcl-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 'unix')
-rw-r--r--unix/tcl.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index 06b6ae6..32b8215 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -618,8 +618,8 @@ AC_DEFUN([SC_ENABLE_FRAMEWORK], [
AC_DEFUN([SC_ENABLE_THREADS], [
AC_ARG_ENABLE(threads,
AC_HELP_STRING([--enable-threads],
- [build with threads (default: off)]),
- [tcl_ok=$enableval], [tcl_ok=no])
+ [build with threads (default: on)]),
+ [tcl_ok=$enableval], [tcl_ok=yes])
if test "${TCL_THREADS}" = 1; then
tcl_threaded_core=1;
@@ -690,7 +690,7 @@ AC_DEFUN([SC_ENABLE_THREADS], [
AC_MSG_RESULT([yes])
fi
else
- AC_MSG_RESULT([no (default)])
+ AC_MSG_RESULT([no])
fi
AC_SUBST(TCL_THREADS)