From 0b55f973f15fdda970f860cde10c58dee0edd9f8 Mon Sep 17 00:00:00 2001 From: "K.Kosako" Date: Wed, 14 Aug 2019 15:08:37 +0900 Subject: [PATCH] add HAVE_STDINT_H check --- src/config.h.windows.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/config.h.windows.in b/src/config.h.windows.in index d8de1dd..e33f72e 100644 --- a/src/config.h.windows.in +++ b/src/config.h.windows.in @@ -2,6 +2,10 @@ #define HAVE_SYS_STAT_H 1 #define HAVE_MEMORY_H 1 #define HAVE_OFF_T 1 +#if defined(__MINGW32__) || _MSC_VER >= 1600 +#define HAVE_STDINT_H 1 +#endif + #define SIZEOF_INT 4 #define SIZEOF_LONG 4 #define SIZEOF_LONG_LONG 8 -- 2.50.1