From c7611e7a0d2901ce05589c4815ca0f88c9788feb Mon Sep 17 00:00:00 2001 From: Petri Lehtinen Date: Sat, 18 Dec 2010 22:58:40 +0200 Subject: [PATCH] Make int32_t available when the configure script is not used --- src/utf.h | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/utf.h b/src/utf.h index e2d6c59..862c548 100644 --- a/src/utf.h +++ b/src/utf.h @@ -10,18 +10,23 @@ #ifdef HAVE_CONFIG_H #include -#endif #ifdef HAVE_INTTYPES_H /* inttypes.h includes stdint.h in a standard environment, so there's no need to include stdint.h separately. If inttypes.h doesn't define int32_t, it's defined in config.h. */ #include -#else +#endif /* HAVE_INTTYPES_H */ + +#else /* !HAVE_CONFIG_H */ #ifdef _WIN32 typedef int int32_t; -#endif -#endif +#else /* !_WIN32 */ +/* Assume a standard environment */ +#include +#endif /* _WIN32 */ + +#endif /* HAVE_CONFIG_H */ int utf8_encode(int codepoint, char *buffer, int *size); -- 2.1.4