summaryrefslogtreecommitdiffstats
path: root/win/configure.in
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-04-02 09:48:06 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-04-02 09:48:06 (GMT)
commit6fb70434886c81f401e6941b84adcfa80454dc39 (patch)
treec1c388415687a10fe7e876469402a54d53ff3939 /win/configure.in
parentf5388f87a1561b44ad0b3ceaefa06ba58125adbe (diff)
parent33bde427645f8931d8634cdba1819b5e66a69bd0 (diff)
downloadtk-6fb70434886c81f401e6941b84adcfa80454dc39.zip
tk-6fb70434886c81f401e6941b84adcfa80454dc39.tar.gz
tk-6fb70434886c81f401e6941b84adcfa80454dc39.tar.bz2
[Bug 3511806] Compiler checks too early
(autoconf still to be run!)
Diffstat (limited to 'win/configure.in')
-rw-r--r--win/configure.in15
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