summaryrefslogtreecommitdiffstats
path: root/win/tcl.m4
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2018-05-24 13:27:12 (GMT)
committerdgp <dgp@users.sourceforge.net>2018-05-24 13:27:12 (GMT)
commit1ab67324ca8ca046f295fb79fa9d07967f2d5619 (patch)
tree59310e52593930db16479c052da060f30e9b3896 /win/tcl.m4
parentc744824995cbe5426cce06db01f6d05d6f2e8ea6 (diff)
parentedb38932e8f071b1326515067d41bc060807dec2 (diff)
downloadtcl-1ab67324ca8ca046f295fb79fa9d07967f2d5619.zip
tcl-1ab67324ca8ca046f295fb79fa9d07967f2d5619.tar.gz
tcl-1ab67324ca8ca046f295fb79fa9d07967f2d5619.tar.bz2
merge 8.7
Diffstat (limited to 'win/tcl.m4')
-rw-r--r--win/tcl.m436
1 files changed, 0 insertions, 36 deletions
diff --git a/win/tcl.m4 b/win/tcl.m4
index 1d4399c..a678009 100644
--- a/win/tcl.m4
+++ b/win/tcl.m4
@@ -387,42 +387,6 @@ AC_DEFUN([SC_ENABLE_SHARED], [
])
#------------------------------------------------------------------------
-# SC_ENABLE_THREADS --
-#
-# Specify if thread support should be enabled
-#
-# Arguments:
-# none
-#
-# Results:
-#
-# Adds the following arguments to configure:
-# --enable-threads=yes|no
-#
-# Defines the following vars:
-# TCL_THREADS
-#------------------------------------------------------------------------
-
-AC_DEFUN([SC_ENABLE_THREADS], [
- AC_MSG_CHECKING(for building with threads)
- AC_ARG_ENABLE(threads, [ --enable-threads build with threads (default: on)],
- [tcl_ok=$enableval], [tcl_ok=yes])
-
- if test "$tcl_ok" = "yes"; then
- AC_MSG_RESULT([yes (default)])
- TCL_THREADS=1
- AC_DEFINE(TCL_THREADS)
- # USE_THREAD_ALLOC tells us to try the special thread-based
- # allocator that significantly reduces lock contention
- AC_DEFINE(USE_THREAD_ALLOC)
- else
- TCL_THREADS=0
- AC_MSG_RESULT(no)
- fi
- AC_SUBST(TCL_THREADS)
-])
-
-#------------------------------------------------------------------------
# SC_ENABLE_SYMBOLS --
#
# Specify if debugging symbols should be used.