-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.h.cmake
More file actions
60 lines (46 loc) · 1.62 KB
/
config.h.cmake
File metadata and controls
60 lines (46 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#ifndef CONFIG_H
#define CONFIG_H
/* Enable color output in logs */
#define ASDF_LOG_COLOR @ASDF_LOG_COLOR@
/* Default runtime log level */
#define ASDF_LOG_DEFAULT_LEVEL ASDF_LOG_@ASDF_LOG_MIN_LEVEL@
/* Enable logging */
#define ASDF_LOG_ENABLED @ASDF_LOG_ENABLED@
/* Compile-time minimum log level */
#define ASDF_LOG_MIN_LEVEL ASDF_LOG_@ASDF_LOG_MIN_LEVEL@
/* Name of package */
#define PACKAGE "@PACKAGE_NAME@"
/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@"
/* Define to the full name of this package. */
#define PACKAGE_NAME "@PACKAGE_NAME@"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "@PACKAGE_NAME@ @PACKAGE_VERSION@"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME ""
/* Define to the home page for this package. */
#define PACKAGE_URL "@PACKAGE_URL@"
/* Define to the version of this package. */
#define PACKAGE_VERSION "@PACKAGE_VERSION@"
/* Version number of package */
#define VERSION "@PACKAGE_VERSION@"
#cmakedefine HAVE_ENDIAN_H
#cmakedefine HAVE_MACHINE_ENDIAN_H
#cmakedefine HAVE_SYS_ENDIAN_H
#cmakedefine HAVE_STRPTIME
#cmakedefine01 HAVE_DECL_BE64TOH
#cmakedefine01 HAVE_DECL_BE32TOH
#cmakedefine01 HAVE_DECL_HTOBE16
#cmakedefine01 HAVE_DECL_HTOBE32
#cmakedefine01 HAVE_DECL_HTOBE64
#cmakedefine01 HAVE_DECL_HTOLE32
#cmakedefine01 HAVE_DECL_LE32TOH
#cmakedefine HAVE_MD5
#cmakedefine HAVE_MD5_H
#cmakedefine HAVE_BZIP2
#cmakedefine HAVE_LZ4
#cmakedefine HAVE_ZLIB
#cmakedefine HAVE_STATGRAB
#cmakedefine HAVE_USERFAULTFD
#cmakedefine HAVE_DECL_SYS_USERFAULTFD
#endif