diff options
author | Laxmi Harikumar <laxmi.harikumar@digital.com> | 2006-04-10 12:04:01 -0700 |
---|---|---|
committer | Carl Worth <cworth@raht.cworth.org> | 2006-04-10 12:04:01 -0700 |
commit | baa3436e9d8ea37c1204f752cac78a8cbc891f18 (patch) | |
tree | b4251a058a1ded5ab84fc2bd656d555969b5e3fc /pixman/src | |
parent | 08b109fb9a8c54f4764fe7a94ce7833e832bc157 (diff) |
Simple fix for build failure on DEC/OSF1.
Apparently this platform also requires inttypes.h rather than
stdint.h.
This should fix the bug reported here:
https://bugzilla.mozilla.org/show_bug.cgi?id=331428
Diffstat (limited to 'pixman/src')
-rw-r--r-- | pixman/src/pixman.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pixman/src/pixman.h b/pixman/src/pixman.h index ecba78a55..00884e7ce 100644 --- a/pixman/src/pixman.h +++ b/pixman/src/pixman.h @@ -81,7 +81,7 @@ SOFTWARE. #if defined (__SVR4) && defined (__sun) # include <sys/int_types.h> -#elif defined (__OpenBSD__) || defined (_AIX) +#elif defined (__OpenBSD__) || defined (_AIX) || defined (__osf__) # include <inttypes.h> #elif defined (_MSC_VER) typedef __int8 int8_t; |