summaryrefslogtreecommitdiffstats
path: root/unix/configure.in
diff options
context:
space:
mode:
authorstwo <stwo>2009-11-25 14:25:54 (GMT)
committerstwo <stwo>2009-11-25 14:25:54 (GMT)
commit9a8e3c9cf2c11e1d73b27f3d278b80390a3224e0 (patch)
tree65356e424ff3fdf65d1538967f0cd791fbece3c2 /unix/configure.in
parentbfe62b221470f6cabde3d6a6a378627187e9f33b (diff)
downloadtcl-9a8e3c9cf2c11e1d73b27f3d278b80390a3224e0.zip
tcl-9a8e3c9cf2c11e1d73b27f3d278b80390a3224e0.tar.gz
tcl-9a8e3c9cf2c11e1d73b27f3d278b80390a3224e0.tar.bz2
[Patch 2892871]: Remove unneeded AC_STRUCT_TIMEZONE and use
AC_CHECK_MEMBERS([struct stat.st_blksize]) instead of AC_STRUCT_ST_BLKSIZE.
Diffstat (limited to 'unix/configure.in')
-rw-r--r--unix/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/configure.in b/unix/configure.in
index 815c9be..bbed928 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -3,7 +3,7 @@ dnl This file is an input file used by the GNU "autoconf" program to
dnl generate the file "configure", which is run during Tcl installation
dnl to configure the system for the local environment.
#
-# RCS: @(#) $Id: configure.in,v 1.207 2009/04/10 18:01:31 das Exp $
+# RCS: @(#) $Id: configure.in,v 1.208 2009/11/25 14:25:57 stwo Exp $
AC_INIT([tcl],[8.6])
AC_PREREQ(2.59)
@@ -282,7 +282,7 @@ SC_TIME_HANDLER
# stat. But we might be able to use fstatfs instead.
#--------------------------------------------------------------------
-AC_STRUCT_ST_BLKSIZE
+AC_CHECK_MEMBERS([struct stat.st_blksize])
AC_CHECK_FUNC(fstatfs, , [AC_DEFINE(NO_FSTATFS, 1, [Do we have fstatfs()?])])
#--------------------------------------------------------------------