diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-11-25 13:26:06 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-11-25 13:26:06 (GMT) |
commit | cc7246b86407186366a64a86fa18704965629271 (patch) | |
tree | ba45fda768e232a20362c0503448e00904c7f645 /unix/tcl.m4 | |
parent | 5f26f53fc89bc313d43da3f58d2dcdee21d1bc1c (diff) | |
download | tcl-cc7246b86407186366a64a86fa18704965629271.zip tcl-cc7246b86407186366a64a86fa18704965629271.tar.gz tcl-cc7246b86407186366a64a86fa18704965629271.tar.bz2 |
Fix ordering of AC_MSG_RESULT/AC_CHECK_FUNCS so messages are simpler.
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 7fd2f15..707ed63 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -2596,12 +2596,12 @@ AC_DEFUN(SC_TCL_64BIT_FLAGS, [ fi AC_MSG_RESULT(${tcl_cv_struct_stat64}) + AC_CHECK_FUNCS(open64 lseek64) AC_MSG_CHECKING([for off64_t]) AC_CACHE_VAL(tcl_cv_type_off64_t,[ AC_TRY_COMPILE([#include <sys/types.h>],[off64_t offset; ], tcl_cv_type_off64_t=yes,tcl_cv_type_off64_t=no)]) - AC_CHECK_FUNCS(open64 lseek64) dnl Define HAVE_TYPE_OFF64_T only when the off64_t type and the dnl functions lseek64 and open64 are defined. if test "x${tcl_cv_type_off64_t}" = "xyes" && \ |