blob: bf7faf2952797609ba06895df61bbe52c50472aa [file] [log] [blame]
Alexandre Lisionddd731e2014-01-31 11:50:08 -05001/* ccrtp-config.h. Generated from ccrtp-config.h.in by configure. */
2/* ccrtp-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#define HAVE_GCRYPT_H 1
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. */
23/* #undef HAVE_OPENSSL_AES_H */
24
25/* Define to 1 if you have the <openssl/bn.h> header file. */
26/* #undef HAVE_OPENSSL_BN_H */
27
28/* Define to 1 if you have the <openssl/sha.h> header file. */
29/* #undef HAVE_OPENSSL_SHA_H */
30
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. */
Alexandre Lisione41ecd42014-02-27 15:51:10 -050063#define PACKAGE_NAME "ccrtp"
Alexandre Lisionddd731e2014-01-31 11:50:08 -050064
65/* Define to the full name and version of this package. */
Alexandre Lisione41ecd42014-02-27 15:51:10 -050066#define PACKAGE_STRING "ccrtp 2.0.7"
Alexandre Lisionddd731e2014-01-31 11:50:08 -050067
68/* Define to the one symbol short name of this package. */
Alexandre Lisione41ecd42014-02-27 15:51:10 -050069#define PACKAGE_TARNAME "ccrtp"
Alexandre Lisionddd731e2014-01-31 11:50:08 -050070
71/* Define to the home page for this package. */
72#define PACKAGE_URL ""
73
74/* Define to the version of this package. */
Alexandre Lisione41ecd42014-02-27 15:51:10 -050075#define PACKAGE_VERSION "2.0.7"
Alexandre Lisionddd731e2014-01-31 11:50:08 -050076
77/* SRTP support */
78#define SRTP_SUPPORT /**/
79
80/* Define to 1 if you have the ANSI C header files. */
81#define STDC_HEADERS 1
82
83/* Version number of package */
Alexandre Lisione41ecd42014-02-27 15:51:10 -050084#define VERSION "2.0.7"
Alexandre Lisionddd731e2014-01-31 11:50:08 -050085
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 */