diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-07-02 07:14:59 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-07-02 07:14:59 (GMT) |
commit | 7d8dff7c72f7454aa3276114f8f6c586fc375ad2 (patch) | |
tree | d0fa097392725e33ceb6fe6c297f1de2a8ed99c4 /unix/tcl.m4 | |
parent | c0f408b9cdcf0f36547818df0f766c8f90fdbce8 (diff) | |
download | tcl-7d8dff7c72f7454aa3276114f8f6c586fc375ad2.zip tcl-7d8dff7c72f7454aa3276114f8f6c586fc375ad2.tar.gz tcl-7d8dff7c72f7454aa3276114f8f6c586fc375ad2.tar.bz2 |
Bug [32afa6e256]: dirent64 check is incorrect in tcl.m4. Thanks to Brian Griffin.
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 850e940..bac5ebe 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -2776,7 +2776,7 @@ AC_DEFUN([SC_TCL_64BIT_FLAGS], [ # Now check for auxiliary declarations AC_CACHE_CHECK([for struct dirent64], tcl_cv_struct_dirent64,[ AC_TRY_COMPILE([#include <sys/types.h> -#include <sys/dirent.h>],[struct dirent64 p;], +#include <dirent.h>],[struct dirent64 p;], tcl_cv_struct_dirent64=yes,tcl_cv_struct_dirent64=no)]) if test "x${tcl_cv_struct_dirent64}" = "xyes" ; then AC_DEFINE(HAVE_STRUCT_DIRENT64, 1, [Is 'struct dirent64' in <sys/types.h>?]) |