From: Chase Douglas <[email protected]> I'm now getting build failures due to missing stdint.h. It seems we should include it explicitly in XI2proto.h anyways.
Signed-off-by: Chase Douglas <[email protected]> Signed-off-by: Daniel Stone <[email protected]> --- XI2proto.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/XI2proto.h b/XI2proto.h index 2fd91eb..84574a5 100644 --- a/XI2proto.h +++ b/XI2proto.h @@ -60,6 +60,7 @@ #include <X11/Xproto.h> #include <X11/X.h> #include <X11/extensions/XI2.h> +#include <stdint.h> /* make sure types have right sizes for protocol structures. */ #define Window uint32_t -- 1.7.2.3 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
