|
| 1 | +/* clang-format off */ |
| 2 | + |
| 3 | +#include <stdbool.h> |
| 4 | + |
| 5 | +/* Define to the full name and version of this package. */ |
| 6 | +#define PACKAGE_VERSION "3.0.0" |
| 7 | + |
| 8 | +/* Define to the version of this package. */ |
| 9 | +#define PACKAGE_STRING "esp_port 3.0.0" |
| 10 | + |
| 11 | +/* Define to enabled debug logging for all modules. */ |
| 12 | +/* #undef ENABLE_DEBUG_LOGGING */ |
| 13 | + |
| 14 | +/* Logging statements will be written to this file. */ |
| 15 | +/* #undef ERR_REPORTING_FILE */ |
| 16 | + |
| 17 | +/* Define to redirect logging to stdout. */ |
| 18 | +/* #undef ERR_REPORTING_STDOUT */ |
| 19 | + |
| 20 | +/* Define this to use OpenSSL crypto. */ |
| 21 | +/* #undef OPENSSL */ |
| 22 | + |
| 23 | +/* Define this to use AES-GCM. */ |
| 24 | +/* #undef GCM */ |
| 25 | + |
| 26 | +/* Define if building for a CISC machine (e.g. Intel). */ |
| 27 | +#define CPU_CISC 1 |
| 28 | + |
| 29 | +/* Define if building for a RISC machine (assume slow byte access). */ |
| 30 | +/* #undef CPU_RISC */ |
| 31 | + |
| 32 | +/* Define to use X86 inlined assembly code */ |
| 33 | +/* #undef HAVE_X86 */ |
| 34 | + |
| 35 | +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most |
| 36 | + significant byte first (like Motorola and SPARC, unlike Intel). */ |
| 37 | +/* #undef WORDS_BIGENDIAN */ |
| 38 | + |
| 39 | +/* Define to 1 if you have the <arpa/inet.h> header file. */ |
| 40 | +#define HAVE_ARPA_INET_H 1 |
| 41 | + |
| 42 | +/* Define to 1 if you have the <byteswap.h> header file. */ |
| 43 | +/* #undef HAVE_BYTESWAP_H */ |
| 44 | + |
| 45 | +/* Define to 1 if you have the <inttypes.h> header file. */ |
| 46 | +#define HAVE_INTTYPES_H 1 |
| 47 | + |
| 48 | +/* Define to 1 if you have the <machine/types.h> header file. */ |
| 49 | +#define HAVE_MACHINE_TYPES_H 1 |
| 50 | + |
| 51 | +/* Define to 1 if you have the <netinet/in.h> header file. */ |
| 52 | +#define HAVE_NETINET_IN_H 1 |
| 53 | + |
| 54 | +/* Define to 1 if you have the <stdint.h> header file. */ |
| 55 | +#define HAVE_STDINT_H 1 |
| 56 | + |
| 57 | +/* Define to 1 if you have the <stdlib.h> header file. */ |
| 58 | +#define HAVE_STDLIB_H 1 |
| 59 | + |
| 60 | +/* Define to 1 if you have the <sys/int_types.h> header file. */ |
| 61 | +/* #undef HAVE_SYS_INT_TYPES_H */ |
| 62 | + |
| 63 | +/* Define to 1 if you have the <sys/socket.h> header file. */ |
| 64 | +#define HAVE_SYS_SOCKET_H 1 |
| 65 | + |
| 66 | +/* Define to 1 if you have the <sys/types.h> header file. */ |
| 67 | +#define HAVE_SYS_TYPES_H 1 |
| 68 | + |
| 69 | +/* Define to 1 if you have the <unistd.h> header file. */ |
| 70 | +#define HAVE_UNISTD_H 1 |
| 71 | + |
| 72 | +/* Define to 1 if you have the <windows.h> header file. */ |
| 73 | +/* #undef HAVE_WINDOWS_H */ |
| 74 | + |
| 75 | +/* Define to 1 if you have the <winsock2.h> header file. */ |
| 76 | +/* #undef HAVE_WINSOCK2_H */ |
| 77 | + |
| 78 | +/* Define to 1 if you have the `inet_aton' function. */ |
| 79 | +#define HAVE_INET_ATON 1 |
| 80 | + |
| 81 | +/* Define to 1 if you have the `sigaction' function. */ |
| 82 | +/* #undef HAVE_SIGACTION */ |
| 83 | + |
| 84 | +/* Define to 1 if you have the `usleep' function. */ |
| 85 | +#define HAVE_USLEEP 1 |
| 86 | + |
| 87 | +/* Define to 1 if the system has the type `uint8_t'. */ |
| 88 | +#define HAVE_UINT8_T 1 |
| 89 | + |
| 90 | +/* Define to 1 if the system has the type `uint16_t'. */ |
| 91 | +#define HAVE_UINT16_T 1 |
| 92 | + |
| 93 | +/* Define to 1 if the system has the type `uint32_t'. */ |
| 94 | +#define HAVE_UINT32_T 1 |
| 95 | + |
| 96 | +/* Define to 1 if the system has the type `uint64_t'. */ |
| 97 | +#define HAVE_UINT64_T 1 |
| 98 | + |
| 99 | +/* Define to 1 if the system has the type `int32_t'. */ |
| 100 | +#define HAVE_INT32_T 1 |
| 101 | + |
| 102 | +/* The size of `unsigned long', as computed by sizeof. */ |
| 103 | +#define SIZEOF_UNSIGNED_LONG 4 |
| 104 | + |
| 105 | +/* The size of `unsigned long long', as computed by sizeof. */ |
| 106 | +#define SIZEOF_UNSIGNED_LONG_LONG 8 |
| 107 | + |
| 108 | +/* Define inline to what is supported by compiler */ |
| 109 | +#define HAVE_INLINE 1 |
| 110 | +/* #undef HAVE___INLINE */ |
| 111 | +#ifndef HAVE_INLINE |
| 112 | + #ifdef HAVE___INLINE |
| 113 | + #define inline __inline |
| 114 | + #else |
| 115 | + #define inline |
| 116 | + #endif |
| 117 | +#endif |
0 commit comments