]> sjero.net Git - wget/commitdiff
Workaround for broken Tru64 inttypes.h.
authorMicah Cowan <micah@cowan.name>
Fri, 19 Oct 2007 05:55:39 +0000 (22:55 -0700)
committerMicah Cowan <micah@cowan.name>
Fri, 19 Oct 2007 05:55:39 +0000 (22:55 -0700)
src/ChangeLog
src/sysdep.h

index acc02901da9789b8110c000e36edac7152313072..ef37729dbac9a1666f77aae2ceef5913580b4d17 100644 (file)
@@ -1,3 +1,8 @@
+2007-10-18  Steven Schweda  <sms@antinode.org>
+
+       * sysdep.h: #include <stdint.h> as well as <inttypes.h>, to work
+       around a glitch on Tru64 systems.
+
 2007-10-18  Micah Cowan  <micah@cowan.name>
 
        * Makefile.am: version.c should not be distributed. Removed
index 580e3d55b3fd1312d7418e1460fd70d42876d902..fe48925b9eec4c8c220c0a187d7d8e897bb10ba6 100644 (file)
@@ -111,6 +111,8 @@ void *alloca (size_t);
 #include <sys/stat.h>
 
 #ifdef HAVE_INTTYPES_H
+  /* Compaq C V6.5-303 (dtk) on HP Tru64 UNIX V5.1B (Rev. 2650) needs: */
+# include <stdint.h>
 # include <inttypes.h>
 #endif