forked from Mirrors/freeswitch
122 lines
3.4 KiB
Plaintext
122 lines
3.4 KiB
Plaintext
/* clang-format off */
|
|
|
|
/* Define to the full name and version of this package. */
|
|
#define PACKAGE_VERSION "2.4.0"
|
|
|
|
/* Define to the version of this package. */
|
|
#define PACKAGE_STRING "libsrtp2 2.4.0"
|
|
|
|
/* Define to enabled debug logging for all mudules. */
|
|
/* #undef ENABLE_DEBUG_LOGGING */
|
|
|
|
/* Logging statments will be writen to this file. */
|
|
/* #undef ERR_REPORTING_FILE */
|
|
|
|
/* Define to redirect logging to stdout. */
|
|
/* #undef ERR_REPORTING_STDOUT */
|
|
|
|
/* Define this to use OpenSSL crypto. */
|
|
#define OPENSSL 1
|
|
|
|
/* Define this to use MBEDTLS. */
|
|
/* #undef MBEDTLS */
|
|
|
|
/* Define this to use NSS crypto. */
|
|
/* #undef NSS */
|
|
|
|
/* Define this to use AES-GCM. */
|
|
#define GCM 1
|
|
|
|
/* Define if building for a CISC machine (e.g. Intel). */
|
|
#define CPU_CISC 1
|
|
|
|
/* Define if building for a RISC machine (assume slow byte access). */
|
|
/* #undef CPU_RISC */
|
|
|
|
/* Define to use X86 inlined assembly code */
|
|
#define HAVE_X86 1
|
|
|
|
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
|
significant byte first (like Motorola and SPARC, unlike Intel). */
|
|
/* #undef WORDS_BIGENDIAN */
|
|
|
|
/* Define to 1 if you have the <arpa/inet.h> header file. */
|
|
/* #undef HAVE_ARPA_INET_H */
|
|
|
|
/* Define to 1 if you have the <byteswap.h> header file. */
|
|
/* #undef HAVE_BYTESWAP_H */
|
|
|
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
|
#define HAVE_INTTYPES_H 1
|
|
|
|
/* Define to 1 if you have the <machine/types.h> header file. */
|
|
/* #undef HAVE_MACHINE_TYPES_H */
|
|
|
|
/* Define to 1 if you have the <netinet/in.h> header file. */
|
|
/* #undef HAVE_NETINET_IN_H */
|
|
|
|
/* Define to 1 if you have the <stdint.h> header file. */
|
|
#define HAVE_STDINT_H 1
|
|
|
|
/* Define to 1 if you have the <stdlib.h> header file. */
|
|
#define HAVE_STDLIB_H 1
|
|
|
|
/* Define to 1 if you have the <sys/int_types.h> header file. */
|
|
/* #undef HAVE_SYS_INT_TYPES_H */
|
|
|
|
/* Define to 1 if you have the <sys/socket.h> header file. */
|
|
/* #undef HAVE_SYS_SOCKET_H */
|
|
|
|
/* Define to 1 if you have the <sys/types.h> header file. */
|
|
#define HAVE_SYS_TYPES_H 1
|
|
|
|
/* Define to 1 if you have the <unistd.h> header file. */
|
|
/* #undef HAVE_UNISTD_H */
|
|
|
|
/* Define to 1 if you have the <windows.h> header file. */
|
|
#define HAVE_WINDOWS_H 1
|
|
|
|
/* Define to 1 if you have the <winsock2.h> header file. */
|
|
#define HAVE_WINSOCK2_H 1
|
|
|
|
/* Define to 1 if you have the `inet_aton' function. */
|
|
/* #undef HAVE_INET_ATON */
|
|
|
|
/* Define to 1 if you have the `sigaction' function. */
|
|
/* #undef HAVE_SIGACTION */
|
|
|
|
/* Define to 1 if you have the `usleep' function. */
|
|
/* #undef HAVE_USLEEP */
|
|
|
|
/* Define to 1 if the system has the type `uint8_t'. */
|
|
#define HAVE_UINT8_T 1
|
|
|
|
/* Define to 1 if the system has the type `uint16_t'. */
|
|
#define HAVE_UINT16_T 1
|
|
|
|
/* Define to 1 if the system has the type `uint32_t'. */
|
|
#define HAVE_UINT32_T 1
|
|
|
|
/* Define to 1 if the system has the type `uint64_t'. */
|
|
#define HAVE_UINT64_T 1
|
|
|
|
/* Define to 1 if the system has the type `int32_t'. */
|
|
#define HAVE_INT32_T 1
|
|
|
|
/* The size of `unsigned long', as computed by sizeof. */
|
|
#define SIZEOF_UNSIGNED_LONG 4
|
|
|
|
/* The size of `unsigned long long', as computed by sizeof. */
|
|
#define SIZEOF_UNSIGNED_LONG_LONG 8
|
|
|
|
/* Define inline to what is supported by compiler */
|
|
#define HAVE_INLINE 1
|
|
/* #undef HAVE___INLINE */
|
|
#ifndef HAVE_INLINE
|
|
#ifdef HAVE___INLINE
|
|
#define inline __inline
|
|
#else
|
|
#define inline
|
|
#endif
|
|
#endif
|