Make int32_t available when the configure script is not used
This commit is contained in:
parent
23bc8e468d
commit
c7611e7a0d
13
src/utf.h
13
src/utf.h
@ -10,18 +10,23 @@
|
|||||||
|
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef HAVE_INTTYPES_H
|
#ifdef HAVE_INTTYPES_H
|
||||||
/* inttypes.h includes stdint.h in a standard environment, so there's
|
/* 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
|
no need to include stdint.h separately. If inttypes.h doesn't define
|
||||||
int32_t, it's defined in config.h. */
|
int32_t, it's defined in config.h. */
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#else
|
#endif /* HAVE_INTTYPES_H */
|
||||||
|
|
||||||
|
#else /* !HAVE_CONFIG_H */
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
typedef int int32_t;
|
typedef int int32_t;
|
||||||
#endif
|
#else /* !_WIN32 */
|
||||||
#endif
|
/* Assume a standard environment */
|
||||||
|
#include <inttypes.h>
|
||||||
|
#endif /* _WIN32 */
|
||||||
|
|
||||||
|
#endif /* HAVE_CONFIG_H */
|
||||||
|
|
||||||
int utf8_encode(int codepoint, char *buffer, int *size);
|
int utf8_encode(int codepoint, char *buffer, int *size);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user