diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-28 20:03:35 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-28 20:03:35 (GMT) |
commit | 399c41a0f08c867677ef3030a98c6ba9f3a0503f (patch) | |
tree | 0f2cba81933bc106defc0e536088f83161115528 /unix/configure.in | |
parent | 5e6a22713afacc4d0c67e3530137d9be104fd12d (diff) | |
download | tcl-399c41a0f08c867677ef3030a98c6ba9f3a0503f.zip tcl-399c41a0f08c867677ef3030a98c6ba9f3a0503f.tar.gz tcl-399c41a0f08c867677ef3030a98c6ba9f3a0503f.tar.bz2 |
some better checks
Diffstat (limited to 'unix/configure.in')
-rw-r--r-- | unix/configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/unix/configure.in b/unix/configure.in index 49e034d..281ca19 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -213,7 +213,9 @@ SC_TIME_HANDLER # Some systems (e.g., IRIX 4.0.5) lack the st_blksize field # in struct stat. But we might be able to use fstatfs instead. #-------------------------------------------------------------------- +if test "$ac_cv_cygwin" != "yes"; then AC_STRUCT_ST_BLKSIZE +fi AC_CHECK_FUNC(fstatfs, , [AC_DEFINE(NO_FSTATFS)]) #-------------------------------------------------------------------- |