config.hw 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* clang-format off */
  2. /* Define to the full name and version of this package. */
  3. #define PACKAGE_VERSION "2.4.0"
  4. /* Define to the version of this package. */
  5. #define PACKAGE_STRING "libsrtp2 2.4.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. #define OPENSSL 1
  14. /* Define this to use MBEDTLS. */
  15. /* #undef MBEDTLS */
  16. /* Define this to use NSS crypto. */
  17. /* #undef NSS */
  18. /* Define this to use AES-GCM. */
  19. #define 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. #define 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. /* #undef WORDS_BIGENDIAN */
  29. /* Define to 1 if you have the <arpa/inet.h> header file. */
  30. /* #undef HAVE_ARPA_INET_H */
  31. /* Define to 1 if you have the <byteswap.h> header file. */
  32. /* #undef HAVE_BYTESWAP_H */
  33. /* Define to 1 if you have the <inttypes.h> header file. */
  34. #define HAVE_INTTYPES_H 1
  35. /* Define to 1 if you have the <machine/types.h> header file. */
  36. /* #undef HAVE_MACHINE_TYPES_H */
  37. /* Define to 1 if you have the <netinet/in.h> header file. */
  38. /* #undef HAVE_NETINET_IN_H */
  39. /* Define to 1 if you have the <stdint.h> header file. */
  40. #define HAVE_STDINT_H 1
  41. /* Define to 1 if you have the <stdlib.h> header file. */
  42. #define HAVE_STDLIB_H 1
  43. /* Define to 1 if you have the <sys/int_types.h> header file. */
  44. /* #undef HAVE_SYS_INT_TYPES_H */
  45. /* Define to 1 if you have the <sys/socket.h> header file. */
  46. /* #undef HAVE_SYS_SOCKET_H */
  47. /* Define to 1 if you have the <sys/types.h> header file. */
  48. #define HAVE_SYS_TYPES_H 1
  49. /* Define to 1 if you have the <unistd.h> header file. */
  50. /* #undef HAVE_UNISTD_H */
  51. /* Define to 1 if you have the <windows.h> header file. */
  52. #define HAVE_WINDOWS_H 1
  53. /* Define to 1 if you have the <winsock2.h> header file. */
  54. #define HAVE_WINSOCK2_H 1
  55. /* Define to 1 if you have the `inet_aton' function. */
  56. /* #undef HAVE_INET_ATON */
  57. /* Define to 1 if you have the `sigaction' function. */
  58. /* #undef HAVE_SIGACTION */
  59. /* Define to 1 if you have the `usleep' function. */
  60. /* #undef HAVE_USLEEP */
  61. /* Define to 1 if the system has the type `uint8_t'. */
  62. #define HAVE_UINT8_T 1
  63. /* Define to 1 if the system has the type `uint16_t'. */
  64. #define HAVE_UINT16_T 1
  65. /* Define to 1 if the system has the type `uint32_t'. */
  66. #define HAVE_UINT32_T 1
  67. /* Define to 1 if the system has the type `uint64_t'. */
  68. #define HAVE_UINT64_T 1
  69. /* Define to 1 if the system has the type `int32_t'. */
  70. #define HAVE_INT32_T 1
  71. /* The size of `unsigned long', as computed by sizeof. */
  72. #define SIZEOF_UNSIGNED_LONG 4
  73. /* The size of `unsigned long long', as computed by sizeof. */
  74. #define SIZEOF_UNSIGNED_LONG_LONG 8
  75. /* Define inline to what is supported by compiler */
  76. #define HAVE_INLINE 1
  77. /* #undef HAVE___INLINE */
  78. #ifndef HAVE_INLINE
  79. #ifdef HAVE___INLINE
  80. #define inline __inline
  81. #else
  82. #define inline
  83. #endif
  84. #endif