diff options
author | nijtmans <nijtmans> | 2010-12-21 09:07:15 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-12-21 09:07:15 (GMT) |
commit | 6a13179e95dfeab6345ab7891e9fc329ccd9e002 (patch) | |
tree | 87999c65f3ae653bd848b2ddffc0984e7f752853 /win/configure.in | |
parent | 3feb1f4a1e83ca5d074f949175fc1d28ff473b4e (diff) | |
download | tcl-6a13179e95dfeab6345ab7891e9fc329ccd9e002.zip tcl-6a13179e95dfeab6345ab7891e9fc329ccd9e002.tar.gz tcl-6a13179e95dfeab6345ab7891e9fc329ccd9e002.tar.bz2 |
cannot use '['/']' in configure.in, or re-generation will go wrong
Diffstat (limited to 'win/configure.in')
-rw-r--r-- | win/configure.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/win/configure.in b/win/configure.in index 64b738d..b78aa8a 100644 --- a/win/configure.in +++ b/win/configure.in @@ -3,7 +3,7 @@ # generate the file "configure", which is run during Tcl installation # to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.129 2010/12/20 12:12:45 nijtmans Exp $ +# RCS: @(#) $Id: configure.in,v 1.130 2010/12/21 09:07:15 nijtmans Exp $ AC_INIT(../generic/tcl.h) AC_PREREQ(2.59) @@ -283,8 +283,7 @@ AC_TRY_COMPILE([ #include <intrin.h> ], [ - unsigned int regs[4]; - __cpuidex(regs,0,0); + __cpuidex(0,0,0); __debugbreak(); ], tcl_cv_intrinsics=yes, |