diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-05-17 14:02:37 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-05-17 14:02:37 (GMT) |
commit | e810c9099a64e6af0d3aad22f673de6edcb68cd7 (patch) | |
tree | 12f52eab3efaa66365d83ac1ebca1d9a82552186 /unix/tcl.m4 | |
parent | a88536e249e7c0d450e0719ee852a1fbb4a748fa (diff) | |
parent | 7ba4645e08b43df72712f9266336efe3d9badfba (diff) | |
download | tcl-e810c9099a64e6af0d3aad22f673de6edcb68cd7.zip tcl-e810c9099a64e6af0d3aad22f673de6edcb68cd7.tar.gz tcl-e810c9099a64e6af0d3aad22f673de6edcb68cd7.tar.bz2 |
rebase
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index af3150c..cb6289b 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -2646,7 +2646,7 @@ AC_DEFUN([SC_TCL_EARLY_FLAGS],[ # TCL_WIDE_INT_IS_LONG # TCL_WIDE_INT_TYPE # HAVE_STRUCT_DIRENT64 -# HAVE_STRUCT_STAT64 +# HAVE_NO_STRUCT_STAT64 # HAVE_TYPE_OFF64_T # #-------------------------------------------------------------------- @@ -2685,8 +2685,8 @@ AC_DEFUN([SC_TCL_64BIT_FLAGS], [ AC_TRY_COMPILE([#include <sys/stat.h>],[struct stat64 p; ], tcl_cv_struct_stat64=yes,tcl_cv_struct_stat64=no)]) - if test "x${tcl_cv_struct_stat64}" = "xyes" ; then - AC_DEFINE(HAVE_STRUCT_STAT64, 1, [Is 'struct stat64' in <sys/stat.h>?]) + if test "x${tcl_cv_struct_stat64}" != "xyes" ; then + AC_DEFINE(HAVE_NO_STRUCT_STAT64, 1, [Is 'struct stat64' missing from <sys/stat.h>?]) fi AC_CHECK_FUNCS(open64 lseek64) |