Fix build on Solaris (use inttypes.h)
authorIan Osgood <iano@quirkster.com>
Fri, 7 Jul 2006 14:18:41 +0000 (07:18 -0700)
committerIan Osgood <iano@quirkster.com>
Fri, 7 Jul 2006 14:18:41 +0000 (07:18 -0700)
src/xcb.h

index 639f583..e19b19d 100644 (file)
--- a/src/xcb.h
+++ b/src/xcb.h
 #define __XCB_H__
 #include <sys/types.h>
 
-/* TODO: check for stdint in config? (HAVE_STDINT) fallback? */
+#if HAVE_STDINT_H
 #include <stdint.h>
+#elif HAVE_INTTYPES_H
+#include <inttypes.h>
+#endif
 
 /* FIXME: these names conflict with those defined in Xmd.h. */
 #ifndef XMD_H