diff options
author | Ian Osgood <iano@quirkster.com> | 2006-07-07 07:18:41 -0700 |
---|---|---|
committer | Ian Osgood <iano@quirkster.com> | 2006-07-07 07:18:41 -0700 |
commit | 8ba93ebb757706ae8dcf5af57c6e3812f72de80e (patch) | |
tree | 38bd7a33accaa77a7bf8c4e85699653575b42691 /src | |
parent | e0574a617b9133cd728be8ea3618ef1312eeebbf (diff) |
Fix build on Solaris (use inttypes.h)
Diffstat (limited to 'src')
-rw-r--r-- | src/xcb.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -29,8 +29,11 @@ #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 |