diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-09-19 11:46:58 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-09-19 11:49:22 +0300 |
commit | 25006b42e09e1df52f733aaefa51937e07cd7c38 (patch) | |
tree | 250a026eb13aa5ed14aad61d037e6504118970a4 /libexttextcat/exttextcat-msvc-stdint.patch | |
parent | 7cbba09ca6e45e09ca43d3ec04248761ed449a23 (diff) |
MSVC 2010 and newer does have a <stdint.h>
Change-Id: I8f41d027ec890ed57275c04412c61d959d37b66c
Diffstat (limited to 'libexttextcat/exttextcat-msvc-stdint.patch')
-rw-r--r-- | libexttextcat/exttextcat-msvc-stdint.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/libexttextcat/exttextcat-msvc-stdint.patch b/libexttextcat/exttextcat-msvc-stdint.patch new file mode 100644 index 000000000000..09da3e3961a6 --- /dev/null +++ b/libexttextcat/exttextcat-msvc-stdint.patch @@ -0,0 +1,21 @@ +--- foo/foo/src/common.h ++++ foo/foo/src/common.h +@@ -45,18 +45,7 @@ + { + #endif + +-#ifdef _MSC_VER +- typedef __int8 int8_t; +- typedef unsigned __int8 uint8_t; +- typedef __int16 int16_t; +- typedef unsigned __int16 uint16_t; +- typedef __int32 int32_t; +- typedef unsigned __int32 uint32_t; +- typedef __int64 int64_t; +- typedef unsigned __int64 uint64_t; +-#else + # include <stdint.h> +-#endif + + typedef uint32_t uint4; + typedef uint16_t uint2; |