config_in_cmake.h 3.4 KB

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