.. | .. |
---|
2 | 2 | #include "builtin.h" |
---|
3 | 3 | #include "perf.h" |
---|
4 | 4 | #include "color.h" |
---|
5 | | -#include <linux/compiler.h> |
---|
6 | 5 | #include <tools/config.h> |
---|
| 6 | +#include <stdbool.h> |
---|
7 | 7 | #include <stdio.h> |
---|
8 | 8 | #include <string.h> |
---|
9 | 9 | #include <subcmd/parse-options.h> |
---|
.. | .. |
---|
60 | 60 | STATUS(HAVE_DWARF_SUPPORT, dwarf); |
---|
61 | 61 | STATUS(HAVE_DWARF_GETLOCATIONS_SUPPORT, dwarf_getlocations); |
---|
62 | 62 | STATUS(HAVE_GLIBC_SUPPORT, glibc); |
---|
63 | | - STATUS(HAVE_GTK2_SUPPORT, gtk2); |
---|
64 | 63 | #ifndef HAVE_SYSCALL_TABLE_SUPPORT |
---|
65 | 64 | STATUS(HAVE_LIBAUDIT_SUPPORT, libaudit); |
---|
66 | 65 | #endif |
---|
.. | .. |
---|
79 | 78 | STATUS(HAVE_LZMA_SUPPORT, lzma); |
---|
80 | 79 | STATUS(HAVE_AUXTRACE_SUPPORT, get_cpuid); |
---|
81 | 80 | STATUS(HAVE_LIBBPF_SUPPORT, bpf); |
---|
| 81 | + STATUS(HAVE_AIO_SUPPORT, aio); |
---|
| 82 | + STATUS(HAVE_ZSTD_SUPPORT, zstd); |
---|
82 | 83 | } |
---|
83 | 84 | |
---|
84 | 85 | int cmd_version(int argc, const char **argv) |
---|