summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--win/tclWin32Dll.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0466b7a..fede2f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@
* win/tclWinFile.c: Use _vsnprintf in stead of vsnprintf, because
MSVC 6 doesn't have it. Reported by andreask.
+ * win/tclWin32Dll.c: VS 2005 64-bit does not have intrin.h, and
+ does not need it.
2011-01-07 Kevin B. Kenny <kennykb@acm.org>
diff --git a/win/tclWin32Dll.c b/win/tclWin32Dll.c
index ac4a008..47b8b04 100644
--- a/win/tclWin32Dll.c
+++ b/win/tclWin32Dll.c
@@ -10,11 +10,11 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclWin32Dll.c,v 1.73 2010/12/21 10:04:59 nijtmans Exp $
+ * RCS: @(#) $Id: tclWin32Dll.c,v 1.74 2011/01/12 07:37:41 nijtmans Exp $
*/
#include "tclWinInt.h"
-#if defined(HAVE_INTRIN_H) || (defined(_MSC_VER) && defined(_WIN64))
+#if defined(HAVE_INTRIN_H)
# include <intrin.h>
#endif