[jbig2-cvs] rev 236 - trunk
giles@ghostscript.com
giles@ghostscript.com
Wed, 7 May 2003 09:00:32 -0700
Author: giles
Date: 2003-05-07 09:00:32 -0700 (Wed, 07 May 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.
(recommitted after repository became corrupt. original change date Wed Apr 16 15:48:14 2003)
Modified: trunk/os_types.h
==============================================================================
--- trunk/os_types.h (r235)
+++ trunk/os_types.h (r236)
@@ -25,6 +25,6 @@
#include "config_win32.h"
#endif
-#ifdef HAVE_STDINT_H
++#if defined(HAVE_STDINT_H) || defined(__MACOS__)
#include <stdint.h>
#endif