diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-02 09:48:06 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-02 09:48:06 (GMT) |
commit | 69091a9362dd00653999b38821f9f7b49503d943 (patch) | |
tree | c1c388415687a10fe7e876469402a54d53ff3939 /win/configure.in | |
parent | b164c6cfda503ad9a271c81ab8f31357565ab9d3 (diff) | |
parent | bdf3402695c72b72df31383e8b41e517370e6e59 (diff) | |
download | tk-69091a9362dd00653999b38821f9f7b49503d943.zip tk-69091a9362dd00653999b38821f9f7b49503d943.tar.gz tk-69091a9362dd00653999b38821f9f7b49503d943.tar.bz2 |
[Bug 3511806] Compiler checks too early
(autoconf still to be run!)
Diffstat (limited to 'win/configure.in')
-rw-r--r-- | win/configure.in | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/win/configure.in b/win/configure.in index deed37d..ffff819 100644 --- a/win/configure.in +++ b/win/configure.in @@ -55,15 +55,6 @@ AC_CHECK_TOOL(RC, windres) AC_PROG_MAKE_SET #-------------------------------------------------------------------- -# Perform additinal compiler tests. -#-------------------------------------------------------------------- - -dnl Currently AC_CYGWIN is disabled since it invokes AC_CANONICAL_HOST -dnl under autoconf 2.5X. -dnl -dnl AC_CYGWIN - -#-------------------------------------------------------------------- # Determines the correct binary file extension (.o, .obj, .exe etc.) #-------------------------------------------------------------------- @@ -102,11 +93,11 @@ AC_SUBST(MAN2TCLFLAGS) # Check for _strtoi64 #------------------------------------------- -AC_CACHE_CHECK([availability of _strtoi64], tcl_have_strtoi64, [ +AC_CACHE_CHECK([availability of _strtoi64], tcl_cv_strtoi64, [ AC_TRY_LINK([#include <stdlib.h>], [_strtoi64(0,0,0)], - tcl_have_strtoi64=yes, tcl_have_strtoi64=no)]) -if test $tcl_have_strtoi64 = no; then + tcl_cv_strtoi64=yes, tcl_cv_strtoi64=no)]) +if test $tcl_cv_strtoi64 = no; then AC_DEFINE(NO_STRTOI64, 1, [Is _strtoi64 function available?]) fi |