diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-15 20:45:42 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-15 20:45:42 (GMT) |
commit | 90f9f3574d57fd69a66125dc6494eba9f1730e06 (patch) | |
tree | e35abbe984c2b2295018ad4c7aabefeb4d45dcd8 /win/configure.in | |
parent | c790f75c28b6da852a6b8e4b8ea7ce8611e26526 (diff) | |
download | tk-90f9f3574d57fd69a66125dc6494eba9f1730e06.zip tk-90f9f3574d57fd69a66125dc6494eba9f1730e06.tar.gz tk-90f9f3574d57fd69a66125dc6494eba9f1730e06.tar.bz2 |
workaround for _strtoi64 determination on win64 (autoconf-2.13 issue)
Diffstat (limited to 'win/configure.in')
-rw-r--r-- | win/configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/win/configure.in b/win/configure.in index f6f71ca..ffad2c0 100644 --- a/win/configure.in +++ b/win/configure.in @@ -114,6 +114,7 @@ AC_SUBST(MAN2TCLFLAGS) # Check for _strtoi64 #------------------------------------------- +if test "${MACHINE}" = "X86" ; then AC_CACHE_CHECK([availability of _strtoi64], tcl_have_strtoi64, [ AC_TRY_LINK([#include <stdlib.h>], [_strtoi64(0,0,0)], @@ -121,6 +122,7 @@ AC_CACHE_CHECK([availability of _strtoi64], tcl_have_strtoi64, [ if test $tcl_have_strtoi64 = no; then AC_DEFINE(NO_STRTOI64, 1, [Is _strtoi64 function available?]) fi +fi #-------------------------------------------------------------------- # Set the default compiler switches based on the --enable-symbols |