• 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#define HAVE_OPENSSL 1
71
72/* Define to the address where bug reports for this package should be sent. */
73#define PACKAGE_BUGREPORT "libcoap-developers@lists.sourceforge.net"
74
75/* Define to the full name of this package. */
76#define PACKAGE_NAME "libcoap"
77
78/* Define to the full name and version of this package. */
79#define PACKAGE_STRING "libcoap 4.2.0"
80
81/* Define to the one symbol short name of this package. */
82#define PACKAGE_TARNAME "libcoap"
83
84/* Define to the home page for this package. */
85#define PACKAGE_URL "https://libcoap.net/"
86
87/* Define to the version of this package. */
88#define PACKAGE_VERSION "4.2.0"
89
90/* Define to 1 if you have the ANSI C header files. */
91#define STDC_HEADERS 1
92
93/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
94   significant byte first (like Motorola and SPARC, unlike Intel). */
95#if defined AC_APPLE_UNIVERSAL_BUILD
96# if defined __BIG_ENDIAN__
97#  define WORDS_BIGENDIAN 1
98# endif
99#else
100# ifndef WORDS_BIGENDIAN
101/* #  undef WORDS_BIGENDIAN */
102# endif
103#endif
104
105/* Define this to 1 for ancillary data on MacOS */
106/* #undef __APPLE_USE_RFC_3542 */
107
108/* Define to `unsigned int' if <sys/types.h> does not define. */
109/* #undef size_t */
110
111/* Define to `int' if <sys/types.h> does not define. */
112/* #undef ssize_t */
113
114#endif
115
116#endif /* COAP_CONFIG_H_ */
117