summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixPort.h
diff options
context:
space:
mode:
authorkennykb <kennykb@noemail.net>2007-04-21 22:42:46 (GMT)
committerkennykb <kennykb@noemail.net>2007-04-21 22:42:46 (GMT)
commitea82af5be8dd81792dc64f9f608b5094bd34beb5 (patch)
tree74f27840a66f878f15af8a6a5360a1b624736860 /unix/tclUnixPort.h
parentb99cebf55ba968c6b669e9d2a11de1cf1d8ad1ee (diff)
downloadtcl-ea82af5be8dd81792dc64f9f608b5094bd34beb5.zip
tcl-ea82af5be8dd81792dc64f9f608b5094bd34beb5.tar.gz
tcl-ea82af5be8dd81792dc64f9f608b5094bd34beb5.tar.bz2
Restored Cygwin buildability [Bug 1387154]
FossilOrigin-Name: 336c551ccc103380d932482ead2b120f4bcb1d13
Diffstat (limited to 'unix/tclUnixPort.h')
-rw-r--r--unix/tclUnixPort.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h
index d52b7d0..d98e8e4 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.27.2.17 2007/04/21 19:52:15 kennykb Exp $
+ * RCS: @(#) $Id: tclUnixPort.h,v 1.27.2.18 2007/04/21 22:42:49 kennykb Exp $
*/
#ifndef _TCLUNIXPORT
@@ -95,6 +95,14 @@ EXTERN Tcl_WideUInt strtoull _ANSI_ARGS_((CONST char *string,
# include <sys/select.h>
#endif
#include <sys/stat.h>
+
+#ifdef __CYGWIN__
+# define timezone _timezone
+ typedef long TIMEZONE_t;
+#else /* !__CYGWIN__ */
+ typedef int TIMEZONE_t;
+#endif /* !__CYGWIN__ */
+
#if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>