blob: c8a4e14dcb3f586605225d89f8a123205af426ff [file] [log] [blame]
Alexandre Lision51140e12013-12-02 10:54:09 -05001
2/* Define to 1 if you have the <gcrypt.h> header file. */
3#cmakedefine HAVE_GCRYPT_H 1
4
5/* Define to 1 if you have the `pthread' library (-lpthread). */
6#cmakedefine HAVE_LIBPTHREAD 1
7
8/* Define to 1 if you have the <openssl/aes.h> header file. */
9#cmakedefine HAVE_OPENSSL_AES_H 1
10
11/* Define to 1 if you have the <openssl/bn.h> header file. */
12#cmakedefine HAVE_OPENSSL_BN_H 1
13
14/* Define to 1 if you have the <openssl/sha.h> header file. */
15#cmakedefine HAVE_OPENSSL_SHA_H 1
16
17/* Define to 1 if you have the <pthread.h> header file. */
18#cmakedefine HAVE_PTHREAD_H 1
19
20/* Name of package */
21#define PACKAGE ${PROJECT_NAME}
22
23/* Version number of package */
24#define VERSION ${VERSION}
25
26/* Define to empty if `const' does not conform to ANSI C. */
27#undef const
28
29/* Define to `__inline__' or `__inline' if that's what the C compiler
30 calls it, or to nothing if 'inline' is not supported under any name. */
31#ifndef __cplusplus
32#undef inline
33#endif
34
35/* Define to rpl_malloc if the replacement function should be used. */
36#undef malloc
37
38/* Define to the equivalent of the C99 'restrict' keyword, or to
39 nothing if this is not supported. Do not define if restrict is
40 supported directly. */
41#undef restrict
42/* Work around a bug in Sun C++: it does not support _Restrict, even
43 though the corresponding Sun C compiler does, which causes
44 "#define restrict _Restrict" in the previous line. Perhaps some future
45 version of Sun C++ will work with _Restrict; if so, it'll probably
46 define __RESTRICT, just as Sun C does. */
47#if defined __SUNPRO_CC && !defined __RESTRICT
48# define _Restrict
49#endif
50
51/* Define to empty if the keyword `volatile' does not work. Warning: valid
52 code using `volatile' can become incorrect without. Disable with care. */
53#undef volatile