From 8e0fa0d1ab97c256829dab28a5c371689584bcd3 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Fri, 10 Jun 2011 23:07:58 -0400 Subject: [PATCH] Bug 652227 - Unconditional use of stdint.h --- pango/opentype/hb-common.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pango/opentype/hb-common.h b/pango/opentype/hb-common.h index 11f64ed..a6be6ba 100644 --- a/pango/opentype/hb-common.h +++ b/pango/opentype/hb-common.h @@ -27,7 +27,11 @@ #ifndef HB_COMMON_H #define HB_COMMON_H -#include +# ifdef HAVE_STDINT_H +# include +# else ifdef HAVE_INTTYPES_H +# include +# endif # ifdef __cplusplus # define HB_BEGIN_DECLS extern "C" { -- 2.7.4