• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#ifndef COAP_CONFIG_H_
2#define COAP_CONFIG_H_
3
4#if defined(_WIN32)
5
6/* Define to 1 if you have <ws2tcpip.h> header file. */
7#define HAVE_WS2TCPIP_H 1
8
9/* Define to 1 if you have <winsock2.h> header file. */
10#define HAVE_WINSOCK2_H 1
11
12/* Define to 1 if you have the <assert.h> header file. */
13#define HAVE_ASSERT_H 1
14
15/* Define to 1 if you have the `getaddrinfo' function. */
16#define HAVE_GETADDRINFO 1
17
18/* Define to 1 if you have the <inttypes.h> header file. */
19#define HAVE_INTTYPES_H 1
20
21/* Define to 1 if you have the <limits.h> header file. */
22#define HAVE_LIMITS_H 1
23
24/* Define to 1 if you have the `malloc' function. */
25#define HAVE_MALLOC 1
26
27/* Define to 1 if you have the <memory.h> header file. */
28#define HAVE_MEMORY_H 1
29
30/* Define to 1 if you have the `memset' function. */
31#define HAVE_MEMSET 1
32
33/* Define to 1 if you have the `select' function. */
34#define HAVE_SELECT 1
35
36/* Define to 1 if you have the `socket' function. */
37#define HAVE_SOCKET 1
38
39/* Define to 1 if you have the <stdint.h> header file. */
40#define HAVE_STDINT_H 1
41
42/* Define to 1 if you have the <stdlib.h> header file. */
43#define HAVE_STDLIB_H 1
44
45/* Define to 1 if you have the <string.h> header file. */
46#define HAVE_STRING_H 1
47
48/* Define to 1 if you have the `strnlen' function. */
49#define HAVE_STRNLEN 1
50
51/* Define to 1 if you have the `strrchr' function. */
52#define HAVE_STRRCHR 1
53
54/* Define to 1 if the system has the type `struct cmsghdr'. */
55#define HAVE_STRUCT_CMSGHDR 1
56
57/* Define to 1 if you have the <sys/stat.h> header file. */
58#define HAVE_SYS_STAT_H 1
59
60/* Define to 1 if you have the <sys/types.h> header file. */
61#define HAVE_SYS_TYPES_H 1
62
63/* Define to 1 if you have the <time.h> header file. */
64#define HAVE_TIME_H 1
65
66#if defined(_MSC_VER) && (_MSC_VER < 1900) && !defined(snprintf)
67#define snprintf _snprintf
68#endif
69
70#ifndef COAP_DISABLE_TCP
71#define COAP_DISABLE_TCP 0
72#endif
73
74/* Define to the address where bug reports for this package should be sent. */
75#define PACKAGE_BUGREPORT "libcoap-developers@lists.sourceforge.net"
76
77/* Define to the full name of this package. */
78#define PACKAGE_NAME "libcoap"
79
80/* Define to the full name and version of this package. */
81#define PACKAGE_STRING "libcoap 4.3.0"
82
83/* Define to the one symbol short name of this package. */
84#define PACKAGE_TARNAME "libcoap"
85
86/* Define to the home page for this package. */
87#define PACKAGE_URL "https://libcoap.net/"
88
89/* Define to the version of this package. */
90#define PACKAGE_VERSION "4.3.0"
91
92/* Define to 1 if you have the ANSI C header files. */
93#define STDC_HEADERS 1
94
95/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
96   significant byte first (like Motorola and SPARC, unlike Intel). */
97#if defined AC_APPLE_UNIVERSAL_BUILD
98# if defined __BIG_ENDIAN__
99#  define WORDS_BIGENDIAN 1
100# endif
101#else
102# ifndef WORDS_BIGENDIAN
103/* #  undef WORDS_BIGENDIAN */
104# endif
105#endif
106
107/* Define this to 1 for ancillary data on MacOS */
108/* #undef __APPLE_USE_RFC_3542 */
109
110/* Define to `unsigned int' if <sys/types.h> does not define. */
111/* #undef size_t */
112
113/* Define to `int' if <sys/types.h> does not define. */
114/* #undef ssize_t */
115
116#endif
117
118#endif /* COAP_CONFIG_H_ */
119