From: Behdad Esfahbod Date: Sat, 11 Jun 2011 03:07:58 +0000 (-0400) Subject: Bug 652227 - Unconditional use of stdint.h X-Git-Tag: 1.29.1~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8e0fa0d1ab97c256829dab28a5c371689584bcd3;p=platform%2Fupstream%2Fpango.git Bug 652227 - Unconditional use of stdint.h --- 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" {