diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | unix/tclUnixPort.h | 7 |
2 files changed, 10 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2010-04-23 Jan Nijtmans <nijtmans@users.sf.net> + + * unix/tclUnixPort.h Fix [Bug #2991415] tclport.h #included before limits.h + 2010-04-22 Jan Nijtmans <nijtmans@users.sf.net> * generic/tclPlatDecls.h Move TCHAR fallback typedef from tcl.h to diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h index 237224e..6ed41a1 100644 --- a/unix/tclUnixPort.h +++ b/unix/tclUnixPort.h @@ -19,7 +19,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixPort.h,v 1.71 2010/02/22 23:31:41 nijtmans Exp $ + * RCS: @(#) $Id: tclUnixPort.h,v 1.72 2010/04/23 15:45:15 nijtmans Exp $ */ #ifndef _TCLUNIXPORT @@ -104,6 +104,11 @@ typedef off_t Tcl_SeekOffset; #if HAVE_INTTYPES_H # include <inttypes.h> #endif +#ifdef NO_LIMITS_H +# include "../compat/limits.h" +#else +# include <limits.h> +#endif #if HAVE_STDINT_H # include <stdint.h> #endif |