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