<div dir="ltr"><div>Changes to private.h and zdump.c, for the benefit of Cygwin setups which lack glibc but have stdint.h; both attached and tab-mangled (below)<br><br></div>    @dashdashado<br><br>*** tz2014braw/private.h    2014-03-20 17:34:32.000000000 -0400<br>
--- tz2014bcooked/private.h    2014-03-25 13:41:48.769742400 -0400<br>***************<br>*** 119,127 ****<br>--- 119,131 ----<br>  ** (glibc 2.1 and later have stdint.h, even with pre-C99 compilers.)<br>  */<br>  #ifndef HAVE_STDINT_H<br>
+ #ifdef __CYGWIN__<br>+ #define HAVE_STDINT_H 1<br>+ #else<br>  #define HAVE_STDINT_H \<br>      (199901 &lt;= __STDC_VERSION__ || \<br>      2 &lt; (__GLIBC__ + (0 &lt; __GLIBC_MINOR__)))<br>+ #endif<br>  #endif /* !defined HAVE_STDINT_H */<br>
  <br>  #if HAVE_STDINT_H<br>*** tz2014braw/zdump.c    2013-10-20 19:20:23.000000000 -0400<br>--- tz2014bcooked/zdump.c    2014-03-25 13:46:25.124227800 -0400<br>***************<br>*** 35,43 ****<br>--- 35,47 ----<br>  */<br>
  <br>  #ifndef HAVE_STDINT_H<br>+ #ifdef __CYGWIN__<br>+ #define HAVE_STDINT_H 1<br>+ #else<br>  # define HAVE_STDINT_H \<br>      (199901 &lt;= __STDC_VERSION__ || 2 &lt; (__GLIBC__ + (0 &lt; __GLIBC_MINOR__)))<br>  #endif<br>
+ #endif<br>  #if HAVE_STDINT_H<br>  # include &quot;stdint.h&quot;<br>  #endif<br><br></div>