summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoroehhar <harald.oehlmann@elmicron.de>2016-03-31 07:11:27 (GMT)
committeroehhar <harald.oehlmann@elmicron.de>2016-03-31 07:11:27 (GMT)
commitba5e8137741b9a27d41d0b57c316fd84bff00384 (patch)
tree62a1cc74cd12f0937fda5b4c90743c0fc3b9e455
parentd54d3f124b4a7f2e781821ab9dfc3a7a9e7e299e (diff)
downloadtcl-tip_302.zip
tcl-tip_302.tar.gz
tcl-tip_302.tar.bz2
Added patch for win/configure.in into win/configure.actip_302
-rwxr-xr-x[-rw-r--r--]win/configure.ac9
1 files changed, 9 insertions, 0 deletions
diff --git a/win/configure.ac b/win/configure.ac
index 7405bf4..f6739df 100644..100755
--- a/win/configure.ac
+++ b/win/configure.ac
@@ -142,6 +142,15 @@ AS_IF([test "$tcl_ok" = "yes"], [
])
AC_DEFINE(HAVE_ZLIB, 1, [Is there an installed zlib?])
+AC_ARG_WITH(tickcount,
+ AC_HELP_STRING([--with-tickcount],
+ [use GetTickCount for timers, turns off interp time limits]),
+ [tcl_ok=$withval], [tcl_ok=no])
+AC_MSG_RESULT([$tcl_ok])
+if test $tcl_ok = yes; then
+ AC_DEFINE(WIN32_USE_TICKCOUNT, 1, [Use GetTickCount for timers?])
+fi
+
AC_CHECK_TYPE([intptr_t], [
AC_DEFINE([HAVE_INTPTR_T], 1, [Do we have the intptr_t type?])], [
AC_CACHE_CHECK([for pointer-size signed integer type], tcl_cv_intptr_t, [