aboutsummaryrefslogtreecommitdiff
path: root/cmake/jansson_private_config.h.cmake
blob: bc8117848b50f56657f2f29496249c5037752b11 (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
/* Reduced down to the defines that are actually used in the code */

/* Define to 1 if you have the <inttypes.h> (and friends) header file. */
#cmakedefine HAVE_INTTYPES_H 1
#cmakedefine HAVE_STDINT_H 1
#cmakedefine HAVE_SYS_TYPES_H 1

/* We must include this here, as in (eg) utf.h it will want to use
   the integer type, which in MSVC2010 will be in stdint.h
   (there is no inttypes.h in MSVC2010) */
#if defined(HAVE_STDINT_H)
#  include <stdint.h>
#elif defined(HAVE_INTTYPES_H)
#  include <inttypes.h>
#elif defined(HAVE_SYS_TYPES_H)
#  include <sys/types.h>
#endif

/* Define to 1 if you have the <locale.h> header file. */
#cmakedefine HAVE_LOCALE_H 1

/* Define to 1 if you have the 'setlocale' function. */
#cmakedefine HAVE_SETLOCALE 1

/* Define to the type of a signed integer type of width exactly 32 bits if
   such a type exists and the standard includes do not define it. */
#cmakedefine HAVE_INT32_T 1

#ifndef HAVE_INT32_T
#  define int32_t @JSON_INT32@
#endif

#cmakedefine HAVE_SSIZE_T 1

#ifndef HAVE_SSIZE_T
#  define ssize_t @JSON_SSIZE@
#endif

#cmakedefine HAVE_SNPRINTF 1

#ifndef HAVE_SNPRINTF
#  define snprintf @JSON_SNPRINTF@
#endif

#cmakedefine HAVE_VSNPRINTF