summaryrefslogtreecommitdiffstats
path: root/unix/configure.in
diff options
context:
space:
mode:
authorstwo <stwo>2009-11-25 14:31:39 (GMT)
committerstwo <stwo>2009-11-25 14:31:39 (GMT)
commit8263c49fbdb63c93034274c876cf5a940599b252 (patch)
treec9d4c690bd9d9989a78e5d3c197bb59d75b68ca4 /unix/configure.in
parenteaaa5034bff48b8fd6162def1dd4b0020b7c46cc (diff)
downloadtcl-8263c49fbdb63c93034274c876cf5a940599b252.zip
tcl-8263c49fbdb63c93034274c876cf5a940599b252.tar.gz
tcl-8263c49fbdb63c93034274c876cf5a940599b252.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 f794aba..ac4cba7 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.180.2.13 2009/11/03 19:21:39 dgp Exp $
+# RCS: @(#) $Id: configure.in,v 1.180.2.14 2009/11/25 14:31:40 stwo Exp $
AC_INIT([tcl],[8.5])
AC_PREREQ(2.59)
@@ -248,7 +248,7 @@ SC_TIME_HANDLER
# in struct 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()?])])
#--------------------------------------------------------------------