-
Notifications
You must be signed in to change notification settings - Fork 45
/
config.h.in
90 lines (61 loc) · 2.56 KB
/
config.h.in
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#ifndef KTOOLS_CONFIG_H
#define KTOOLS_CONFIG_H
#cmakedefine HAVE_LIBZIP
/* define if the library defines strstream */
#cmakedefine HAVE_CLASS_STRSTREAM
/* Define to 1 if you have the <inttypes.h> header file. */
#cmakedefine HAVE_INTTYPES_H
/* define if the C++ implementation have long long */
#cmakedefine HAVE_LONG_LONG
#cmakedefine HAVE_CSTDDEF
#cmakedefine HAVE_STDDEF_H
/* define if the compiler has stringstream */
#cmakedefine HAVE_SSTREAM
/* Define to 1 if you have the <stdint.h> header file. */
#cmakedefine HAVE_STDINT_H
/* Define to 1 if you have the <strstream> header file. */
#cmakedefine HAVE_STRSTREAM
/* Define to 1 if you have the <sys/stat.h> header file. */
#cmakedefine HAVE_SYS_STAT_H
/* Define to 1 if you have the <sys/types.h> header file. */
#cmakedefine HAVE_SYS_TYPES_H
/* Define to 1 if you have the <unistd.h> header file. */
#cmakedefine HAVE_UNISTD_H
#cmakedefine HAVE_SNPRINTF
#cmakedefine HAVE__SNPRINTF
#cmakedefine HAVE_MODE_T
#cmakedefine HAVE_RESTRICT
#cmakedefine HAVE_UURESTRICT
#cmakedefine HAVE_UURESTRICTUU
/* Define to the full name of this package. */
#cmakedefine PACKAGE_NAME "@PACKAGE_NAME@"
/* Define to the full name and version of this package. */
#cmakedefine PACKAGE_STRING "@PACKAGE_STRING@"
/* Define to the version of this package. */
#cmakedefine PACKAGE_VERSION "@PACKAGE_VERSION@"
/* Define to the type of an unsigned integer type of width exactly 16 bits if
such a type exists and the standard includes do not define it. */
#cmakedefine uint16_t @uint16_t@
/* Define to the type of an unsigned integer type of width exactly 32 bits if
such a type exists and the standard includes do not define it. */
#cmakedefine uint32_t @uint32_t@
/* Define to the type of an unsigned integer type of width exactly 64 bits if
such a type exists and the standard includes do not define it. */
#cmakedefine uint64_t @uint64_t@
/* Define to the type of an signed integer type of width exactly 16 bits if
such a type exists and the standard includes do not define it. */
#cmakedefine int16_t @int16_t@
/* Define to the type of an signed integer type of width exactly 32 bits if
such a type exists and the standard includes do not define it. */
#cmakedefine int32_t @int32_t@
/* Define to the type of an signed integer type of width exactly 64 bits if
such a type exists and the standard includes do not define it. */
#cmakedefine int64_t @int64_t@
#cmakedefine size_t @size_t@
#cmakedefine ssize_t @ssize_t@
#if defined(ssize_t)
typedef ssize_t ssize_t_WORKAROUND;
# undef ssize_t
typedef ssize_t_WORKAROUND ssize_t;
#endif
#endif