diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2013-01-17 13:46:52 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2013-01-17 13:46:52 (GMT) |
commit | 9ce605684317865fe7851c1cb6712a505934a515 (patch) | |
tree | c8ab1107a2f04f107a8af058acfcf88491bc8957 /generic | |
parent | 9843ac2a949950a8dd51bcba03fbdfcb71d0e48f (diff) | |
parent | 4a5ef05df5be16afdfdbf1a38f32d72bb3654f7f (diff) | |
download | tcl-9ce605684317865fe7851c1cb6712a505934a515.zip tcl-9ce605684317865fe7851c1cb6712a505934a515.tar.gz tcl-9ce605684317865fe7851c1cb6712a505934a515.tar.bz2 |
merge trunkbug_3600328
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclCmdAH.c | 1 | ||||
-rw-r--r-- | generic/tclEncoding.c | 1 | ||||
-rw-r--r-- | generic/tclFCmd.c | 1 | ||||
-rw-r--r-- | generic/tclFileName.c | 1 | ||||
-rw-r--r-- | generic/tclIOUtil.c | 4 | ||||
-rw-r--r-- | generic/tclPort.h | 5 | ||||
-rw-r--r-- | generic/tclTest.c | 1 |
7 files changed, 9 insertions, 5 deletions
diff --git a/generic/tclCmdAH.c b/generic/tclCmdAH.c index eb2a303..820eec5 100644 --- a/generic/tclCmdAH.c +++ b/generic/tclCmdAH.c @@ -11,6 +11,7 @@ * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ +#include <sys/stat.h> #include "tclInt.h" #include <locale.h> diff --git a/generic/tclEncoding.c b/generic/tclEncoding.c index 7a55724..7d2206b 100644 --- a/generic/tclEncoding.c +++ b/generic/tclEncoding.c @@ -9,6 +9,7 @@ * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ +#include <sys/stat.h> #include "tclInt.h" typedef size_t (LengthProc)(const char *src); diff --git a/generic/tclFCmd.c b/generic/tclFCmd.c index 33c1496..adf60d9 100644 --- a/generic/tclFCmd.c +++ b/generic/tclFCmd.c @@ -10,6 +10,7 @@ * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ +#include <sys/stat.h> #include "tclInt.h" #include "tclFileSystem.h" diff --git a/generic/tclFileName.c b/generic/tclFileName.c index 5d4702b..193ca4e 100644 --- a/generic/tclFileName.c +++ b/generic/tclFileName.c @@ -11,6 +11,7 @@ * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ +#include <sys/stat.h> #include "tclInt.h" #include "tclRegexp.h" #include "tclFileSystem.h" /* For TclGetPathType() */ diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c index ab08353..f523e8f 100644 --- a/generic/tclIOUtil.c +++ b/generic/tclIOUtil.c @@ -18,9 +18,7 @@ * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ -#if defined(HAVE_SYS_STAT_H) && !defined _WIN32 -# include <sys/stat.h> -#endif +#include <sys/stat.h> #include "tclInt.h" #ifdef __WIN32__ # include "tclWinInt.h" diff --git a/generic/tclPort.h b/generic/tclPort.h index 12a60db..7021b8d 100644 --- a/generic/tclPort.h +++ b/generic/tclPort.h @@ -19,10 +19,11 @@ #endif #if defined(_WIN32) # include "tclWinPort.h" -#else -# include "tclUnixPort.h" #endif #include "tcl.h" +#if !defined(_WIN32) +# include "tclUnixPort.h" +#endif #if !defined(LLONG_MIN) # ifdef TCL_WIDE_INT_IS_LONG diff --git a/generic/tclTest.c b/generic/tclTest.c index a8b27fb..297fe4d 100644 --- a/generic/tclTest.c +++ b/generic/tclTest.c @@ -19,6 +19,7 @@ #ifndef USE_TCL_STUBS # define USE_TCL_STUBS #endif +#include <sys/stat.h> #include "tclInt.h" #include "tclOO.h" #include <math.h> |