aboutsummaryrefslogtreecommitdiff
path: root/ports/gettext/0001-Fix-macro-definitions.patch
blob: 506c43dba454a4630188eb052429668c9a2fc82e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
From df8121a8822245df0b191b7d3b1654611fdac1b2 Mon Sep 17 00:00:00 2001
From: vlj <vljn.ovi@gmail.com>
Date: Tue, 1 Nov 2016 23:09:06 +0100
Subject: [PATCH] Fix macro definitions.

---
 gettext-0.19/gettext-runtime/intl/printf-parse.c | 4 +++-
 gettext-0.19/gettext-runtime/intl/xsize.h        | 6 ++++++
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/gettext-0.19/gettext-runtime/intl/printf-parse.c b/gettext-0.19/gettext-runtime/intl/printf-parse.c
index 0e2d2c7..8cedfc6 100644
--- a/gettext-0.19/gettext-runtime/intl/printf-parse.c
+++ b/gettext-0.19/gettext-runtime/intl/printf-parse.c
@@ -48,7 +48,9 @@
 #include <stddef.h>
 
 /* Get intmax_t.  */
-#if defined IN_LIBINTL || defined IN_LIBASPRINTF
+#if _MSC_VER
+# define intmax_t long int
+#elif defined IN_LIBINTL || defined IN_LIBASPRINTF
 # if HAVE_STDINT_H_WITH_UINTMAX
 #  include <stdint.h>
 # endif
diff --git a/gettext-0.19/gettext-runtime/intl/xsize.h b/gettext-0.19/gettext-runtime/intl/xsize.h
index c256665..d09e79f 100644
--- a/gettext-0.19/gettext-runtime/intl/xsize.h
+++ b/gettext-0.19/gettext-runtime/intl/xsize.h
@@ -27,6 +27,12 @@
 # include <stdint.h>
 #endif
 
+#ifdef _WIN32
+# define _GL_INLINE_HEADER_BEGIN
+# define _GL_INLINE_HEADER_END
+# define _GL_INLINE static inline
+#endif
+
 #ifndef _GL_INLINE_HEADER_BEGIN
  #error "Please include config.h first."
 #endif
-- 
2.10.1.windows.1