[jbig2-cvs] rev 236 - trunk

giles@ghostscript.com giles@ghostscript.com
Wed, 16 Apr 2003 15:48:14 -0700


Author: giles
Date: 2003-04-16 15:48:14 -0700 (Wed, 16 Apr 2003)
New Revision: 236

Modified:
   trunk/os_types.h
Log:
MacOS generally has stdint.h available (Apple's tools on MacOS X or recent Metrowerks CodeWarrior)
but may not be using the autoconf detection. Include it in such cases.


Modified: trunk/os_types.h
==============================================================================
--- trunk/os_types.h	(original)
+++ trunk/os_types.h	Wed Apr 16 15:48:14 2003
@@ -25,6 +25,6 @@
 #include "config_win32.h"
 #endif
 
-#ifdef HAVE_STDINT_H
+#if defined(HAVE_STDINT_H) || defined(__MACOS__)
 #include <stdint.h>
 #endif