config.h 3.1 KB

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