shithub: jbig2

Download patch

ref: ca94f2ac3ab6cdbb6a36a72cae385afb4f25d4e8
parent: c29b63557cb191f2b9371a06a73a11bc4b8f5544
author: Till Kamppeter <till.kamppeter@gmail.com>
date: Fri Jul 30 07:03:27 EDT 2010

On Tru64 the integer types are in inttypes.h and not in stdint.h as in VMS

Bug 691463, required for jbig2dec.

git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@11563 a1074d23-0009-0410-80fe-cf8c14f379e6

--- a/os_types.h
+++ b/os_types.h
@@ -51,7 +51,7 @@
 
 #if defined(HAVE_STDINT_H) || defined(__MACOS__)
 # include <stdint.h>
-#elif defined(__VMS)
+#elif defined(__VMS) || defined(__osf__)
 # include <inttypes.h>
 #endif