blob: 2056952cf292c589f54a696253f47a16600a3a1e [file] [log] [blame]
Emeric Vigier2f625822012-08-06 11:09:52 -04001/* src/config.h. Generated from config.h.in by configure. */
2/* src/config.h.in. Generated from configure.ac by autoheader. */
3
4/* Define to 1 if you have the <dlfcn.h> header file. */
5#define HAVE_DLFCN_H 1
6
7/* Define to 1 if you have the <DL.h> header file. */
8/* #undef HAVE_DL_H */
9
10/* Define to 1 if you have the <gcrypt.h> header file. */
11/* #undef HAVE_GCRYPT_H */
12
13/* Define to 1 if you have the <inttypes.h> header file. */
14#define HAVE_INTTYPES_H 1
15
16/* Define to 1 if you have the `nana' library (-lnana). */
17/* #undef HAVE_LIBNANA */
18
19/* Define to 1 if you have the <memory.h> header file. */
20#define HAVE_MEMORY_H 1
21
22/* Define to 1 if you have the <openssl/aes.h> header file. */
Alexandre Savard1ce1aed2012-08-09 15:32:38 -040023#define HAVE_OPENSSL_AES_H 1
Emeric Vigier2f625822012-08-06 11:09:52 -040024
25/* Define to 1 if you have the <openssl/bn.h> header file. */
Alexandre Savard1ce1aed2012-08-09 15:32:38 -040026#define HAVE_OPENSSL_BN_H 1
Emeric Vigier2f625822012-08-06 11:09:52 -040027
28/* Define to 1 if you have the <openssl/sha.h> header file. */
Alexandre Savard1ce1aed2012-08-09 15:32:38 -040029#define HAVE_OPENSSL_SHA_H 1
Emeric Vigier2f625822012-08-06 11:09:52 -040030
31/* Define to 1 if you have the <stdint.h> header file. */
32#define HAVE_STDINT_H 1
33
34/* Define to 1 if you have the <stdlib.h> header file. */
35#define HAVE_STDLIB_H 1
36
37/* Define to 1 if you have the <strings.h> header file. */
38#define HAVE_STRINGS_H 1
39
40/* Define to 1 if you have the <string.h> header file. */
41#define HAVE_STRING_H 1
42
43/* Define to 1 if you have the <sys/stat.h> header file. */
44#define HAVE_SYS_STAT_H 1
45
46/* Define to 1 if you have the <sys/types.h> header file. */
47#define HAVE_SYS_TYPES_H 1
48
49/* Define to 1 if you have the <unistd.h> header file. */
50#define HAVE_UNISTD_H 1
51
52/* Define to the sub-directory in which libtool stores uninstalled libraries.
53 */
54#define LT_OBJDIR ".libs/"
55
56/* Name of package */
57#define PACKAGE "ccrtp"
58
59/* Define to the address where bug reports for this package should be sent. */
60#define PACKAGE_BUGREPORT ""
61
62/* Define to the full name of this package. */
63#define PACKAGE_NAME ""
64
65/* Define to the full name and version of this package. */
66#define PACKAGE_STRING ""
67
68/* Define to the one symbol short name of this package. */
69#define PACKAGE_TARNAME ""
70
71/* Define to the home page for this package. */
72#define PACKAGE_URL ""
73
74/* Define to the version of this package. */
75#define PACKAGE_VERSION ""
76
77/* SRTP support */
Alexandre Savard1ce1aed2012-08-09 15:32:38 -040078#define SRTP_SUPPORT 1
Emeric Vigier2f625822012-08-06 11:09:52 -040079
80/* Define to 1 if you have the ANSI C header files. */
81#define STDC_HEADERS 1
82
83/* Version number of package */
84#define VERSION "1.8.0"
85
86/* Define to `__inline__' or `__inline' if that's what the C compiler
87 calls it, or to nothing if 'inline' is not supported under any name. */
88#ifndef __cplusplus
89/* #undef inline */
90#endif
91
92/* Define to the equivalent of the C99 'restrict' keyword, or to
93 nothing if this is not supported. Do not define if restrict is
94 supported directly. */
95#define restrict __restrict
96/* Work around a bug in Sun C++: it does not support _Restrict or
97 __restrict__, even though the corresponding Sun C compiler ends up with
98 "#define restrict _Restrict" or "#define restrict __restrict__" in the
99 previous line. Perhaps some future version of Sun C++ will work with
100 restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
101#if defined __SUNPRO_CC && !defined __RESTRICT
102# define _Restrict
103# define __restrict__
104#endif
105
106/* Define to empty if the keyword `volatile' does not work. Warning: valid
107 code using `volatile' can become incorrect without. Disable with care. */
108/* #undef volatile */