rev 236 - trunk
[email protected] Wed, 16 Apr 2003 15:48:14 -0700
| Newsgroups | gmane.comp.printing.ghostscript.jbig2dec.cvs |
|---|---|
| Message-ID | <[email protected]> |
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