1/* crypto/include/config.h. Generated by configure. */ 2/* config_in.h. Generated from configure.in by autoheader. */ 3 4#if (_MSC_VER >= 1400) 5# define HAVE_RAND_S 1 6# define _CRT_RAND_S 7#endif 8 9/* Define if building for a CISC machine (e.g. Intel). */ 10#define CPU_CISC 1 11 12/* Define if building for a RISC machine (assume slow byte access). */ 13/* #undef CPU_RISC */ 14 15/* Define to enabled debug logging for all mudules. */ 16#undef ENABLE_DEBUG_LOGGING 17 18/* Logging statments will be writen to this file. */ 19/* #undef ERR_REPORTING_FILE */ 20 21/* Define to redirect logging to stdout. */ 22#undef ERR_REPORTING_STDOUT 23 24/* Define to 1 if you have the <arpa/inet.h> header file. */ 25/* #undef HAVE_ARPA_INET_H */ 26 27/* Define to 1 if you have the <byteswap.h> header file. */ 28/* #undef HAVE_BYTESWAP_H */ 29 30/* Define to 1 if you have the `inet_aton' function. */ 31/* #undef HAVE_INET_ATON */ 32 33/* Define to 1 if the system has the type `int16_t'. */ 34#define HAVE_INT16_T 1 35 36/* Define to 1 if the system has the type `int32_t'. */ 37#define HAVE_INT32_T 1 38 39/* Define to 1 if the system has the type `int8_t'. */ 40#define HAVE_INT8_T 1 41 42/* Define to 1 if you have the <inttypes.h> header file. */ 43/* #undef HAVE_INTTYPES_H */ 44 45/* Define to 1 if you have the `socket' library (-lsocket). */ 46/* #undef HAVE_LIBSOCKET */ 47 48/* Define to 1 if you have the <machine/types.h> header file. */ 49/* #undef HAVE_MACHINE_TYPES_H */ 50 51/* Define to 1 if you have the <memory.h> header file. */ 52#define HAVE_MEMORY_H 1 53 54/* Define to 1 if you have the <netinet/in.h> header file. */ 55/* #undef HAVE_NETINET_IN_H */ 56 57/* Define to 1 if you have the `socket' function. */ 58/* #undef HAVE_SOCKET */ 59 60/* Define to 1 if you have the <stdint.h> header file. */ 61/* #undef HAVE_STDINT_H */ 62 63/* Define to 1 if you have the <stdlib.h> header file. */ 64#define HAVE_STDLIB_H 1 65 66/* Define to 1 if you have the <strings.h> header file. */ 67#define HAVE_STRINGS_H 1 68 69/* Define to 1 if you have the <string.h> header file. */ 70#define HAVE_STRING_H 1 71 72/* Define to 1 if you have the <sys/int_types.h> header file. */ 73/* #undef HAVE_SYS_INT_TYPES_H */ 74 75/* Define to 1 if you have the <sys/socket.h> header file. */ 76/* #undef HAVE_SYS_SOCKET_H */ 77 78/* Define to 1 if you have the <sys/stat.h> header file. */ 79#define HAVE_SYS_STAT_H 1 80 81/* Define to 1 if you have the <sys/types.h> header file. */ 82#define HAVE_SYS_TYPES_H 1 83 84/* Define to 1 if you have the <sys/uio.h> header file. */ 85/* #undef HAVE_SYS_UIO_H */ 86 87/* Define to 1 if the system has the type `uint16_t'. */ 88#define HAVE_UINT16_T 1 89 90/* Define to 1 if the system has the type `uint32_t'. */ 91#define HAVE_UINT32_T 1 92 93/* Define to 1 if the system has the type `uint64_t'. */ 94#define HAVE_UINT64_T 1 95 96/* Define to 1 if the system has the type `uint8_t'. */ 97#define HAVE_UINT8_T 1 98 99/* Define to 1 if you have the <unistd.h> header file. */ 100/* #undef HAVE_UNISTD_H */ 101 102/* Define to 1 if you have the `usleep' function. */ 103/* #undef HAVE_USLEEP */ 104 105/* Define to 1 if you have the <windows.h> header file. */ 106#define HAVE_WINDOWS_H 1 107 108/* Define to 1 if you have the <winsock2.h> header file. */ 109#define HAVE_WINSOCK2_H 1 110 111/* Define to use X86 inlined assembly code */ 112/* #undef HAVE_X86 */ 113 114/* Define to the address where bug reports for this package should be sent. */ 115#define PACKAGE_BUGREPORT "" 116 117/* Define to the full name of this package. */ 118#define PACKAGE_NAME "" 119 120/* Define to the full name and version of this package. */ 121#define PACKAGE_STRING "" 122 123/* Define to the one symbol short name of this package. */ 124#define PACKAGE_TARNAME "" 125 126/* Define to the version of this package. */ 127#define PACKAGE_VERSION "" 128 129/* The size of a `unsigned long', as computed by sizeof. */ 130#define SIZEOF_UNSIGNED_LONG 4 131 132/* The size of a `unsigned long long', as computed by sizeof. */ 133#define SIZEOF_UNSIGNED_LONG_LONG 8 134 135/* Define to use GDOI. */ 136/* #undef SRTP_GDOI */ 137 138/* Define to compile for kernel contexts. */ 139/* #undef SRTP_KERNEL */ 140 141/* Define to compile for Linux kernel context. */ 142/* #undef SRTP_KERNEL_LINUX */ 143 144/* Define to 1 if you have the ANSI C header files. */ 145#define STDC_HEADERS 1 146 147/* Define to 1 if your processor stores words with the most significant byte 148 first (like Motorola and SPARC, unlike Intel and VAX). */ 149/* #undef WORDS_BIGENDIAN */ 150 151/* Define to empty if `const' does not conform to ANSI C. */ 152/* #undef const */ 153 154/* Define 'inline' to nothing, since the MSVC compiler doesn't support it. */ 155#define inline 156 157/* Define to `unsigned' if <sys/types.h> does not define. */ 158/* #undef size_t */ 159 160#if (_MSC_VER >= 1400) // VC8+ 161#ifndef _CRT_SECURE_NO_DEPRECATE 162#define _CRT_SECURE_NO_DEPRECATE 163#endif 164#ifndef _CRT_NONSTDC_NO_DEPRECATE 165#define _CRT_NONSTDC_NO_DEPRECATE 166#endif 167#endif // VC8+ 168 169#ifndef uint32_t 170typedef unsigned __int8 uint8_t; 171typedef unsigned __int16 uint16_t; 172typedef unsigned __int32 uint32_t; 173typedef unsigned __int64 uint64_t; 174typedef __int8 int8_t; 175typedef __int16 int16_t; 176typedef __int32 int32_t; 177typedef __int64 int64_t; 178#endif 179 180#ifdef _MSC_VER 181#pragma warning(disable:4311) 182#endif 183