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 | 995953339ac39e45eb6f5fa4dce37a6f0d5e3bf6 (patch) | |
tree | e35abbe984c2b2295018ad4c7aabefeb4d45dcd8 /win/configure.in | |
parent | 54072496349622a788dad28bc5ab9c9df88084c0 (diff) | |
download | tk-995953339ac39e45eb6f5fa4dce37a6f0d5e3bf6.zip tk-995953339ac39e45eb6f5fa4dce37a6f0d5e3bf6.tar.gz tk-995953339ac39e45eb6f5fa4dce37a6f0d5e3bf6.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 |