diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-01-21 08:31:08 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-01-21 08:31:08 (GMT) |
commit | 4aed2bc2cd16fef4ffe748ec35725686038a4fbb (patch) | |
tree | 1f6bd48dcd1089e042cf19078684ace2bdf980bb /win/configure.in | |
parent | 1fee70e19851cf0cd15e831a21a558dc898045d7 (diff) | |
parent | 11fcad9b1df2c2cf7d5ada8feb565c97b9777fef (diff) | |
download | tcl-4aed2bc2cd16fef4ffe748ec35725686038a4fbb.zip tcl-4aed2bc2cd16fef4ffe748ec35725686038a4fbb.tar.gz tcl-4aed2bc2cd16fef4ffe748ec35725686038a4fbb.tar.bz2 |
Bug-3474726 minGW Tcl_StatBuf not defined correctly in tcl.h
Diffstat (limited to 'win/configure.in')
-rw-r--r-- | win/configure.in | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/win/configure.in b/win/configure.in index 306dbac..1b8c25a 100644 --- a/win/configure.in +++ b/win/configure.in @@ -241,26 +241,6 @@ if test "$tcl_cv_cast_to_union" = "yes"; then [Defined when compiler supports casting to union type.]) fi -# Check to see if struct _stat32i64 exists in mingw's sys/stat.h - -AC_CACHE_CHECK(if struct _stat32i64 missing, - tcl_struct_stat32i64, -AC_TRY_COMPILE([ -#include <sys/types.h> -#include <sys/stat.h> -], -[ - struct _stat32i64 foo; -], - tcl_struct_stat32i64=no, - tcl_struct_stat32i64=yes) -) -if test "$tcl_struct_stat32i64" = "yes" ; then - AC_DEFINE(HAVE_NO_STRUCT_STAT32I64, 1, - [Defined when sys/stat.h is missing struct _stat32i64]) -fi - - # See if declarations like FINDEX_INFO_LEVELS are # missing from winbase.h. This is known to be # a problem with VC++ 5.2. |