]> git.wh0rd.org - fontconfig.git/commitdiff
Include inttypes.h instead of stdint.h if appropriate.
authorPatrick Lam <plam@MIT.EDU>
Fri, 3 Mar 2006 18:35:42 +0000 (18:35 +0000)
committerPatrick Lam <plam@MIT.EDU>
Fri, 3 Mar 2006 18:35:42 +0000 (18:35 +0000)
ChangeLog
src/fcint.h

index e4f4d8da24d8a6c43ad34921a0d26763321bd8ed..0678fe6117a417e8e16ba23817b3f8363f79d38b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-03-03  Patrick Lam  <plam@mit.edu>
+       * src/fcint.h:
+
+       Include inttypes.h instead of stdint.h if appropriate.
+
 2006-03-03  Patrick Lam  <plam@mit.edu>
        * fc-cat/fc-cat.c (FcFileIsDir):
        * fc-glyphname/fc-flyphname.c:
index d5ff9d5d36cfb27654cd98d44b555f520a31201b..3f7f15b02270434de31a7598e0974ab6a0cb7392 100644 (file)
 
 #include <stdlib.h>
 #include <stdio.h>
+#ifdef HAVE_INTTYPES_H
+#include <inttypes.h>
+#else
 #include <stdint.h>
+#endif
 #include <string.h>
 #include <ctype.h>
 #include <errno.h>