projects
/
platform
/
upstream
/
fontconfig.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ead55be
)
Include inttypes.h instead of stdint.h if appropriate.
author
Patrick Lam
<plam@MIT.EDU>
Fri, 3 Mar 2006 18:35:42 +0000
(18:35 +0000)
committer
Patrick Lam
<plam@MIT.EDU>
Fri, 3 Mar 2006 18:35:42 +0000
(18:35 +0000)
ChangeLog
patch
|
blob
|
history
src/fcint.h
patch
|
blob
|
history
diff --git
a/ChangeLog
b/ChangeLog
index
e4f4d8d
..
0678fe6
100644
(file)
--- a/
ChangeLog
+++ b/
ChangeLog
@@
-1,4
+1,9
@@
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:
diff --git
a/src/fcint.h
b/src/fcint.h
index
d5ff9d5
..
3f7f15b
100644
(file)
--- a/
src/fcint.h
+++ b/
src/fcint.h
@@
-27,7
+27,11
@@
#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>