From e58c7da9a82fe81bf309a30f2b50374aa32ce9ba Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Mon, 23 Apr 2012 14:12:02 +0100 Subject: [PATCH] build: Include stdint.h Since 5967dad2400d32c we have stopped using glib types such as guint16 and guint32 in favour of the equivalent c99 types such as uint16_t and uint32_t. When that patch was tested we must have used a configuration that just happened to include because we have since seen that builds can fail due to missing c99 typedefs. This patch explicitly includes stdint.h in cogl-types.h. Reviewed-by: Neil Roberts (cherry picked from commit c1e2220a4314071482d2d5638688b6bcf83882a2) --- cogl/cogl-types.h | 1 + 1 file changed, 1 insertion(+) diff --git a/cogl/cogl-types.h b/cogl/cogl-types.h index adc2d6cfb..d3a072490 100644 --- a/cogl/cogl-types.h +++ b/cogl/cogl-types.h @@ -28,6 +28,7 @@ #ifndef __COGL_TYPES_H__ #define __COGL_TYPES_H__ +#include #include #include