hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
kernel/tools/perf/builtin-version.c
....@@ -2,8 +2,8 @@
22 #include "builtin.h"
33 #include "perf.h"
44 #include "color.h"
5
-#include <linux/compiler.h>
65 #include <tools/config.h>
6
+#include <stdbool.h>
77 #include <stdio.h>
88 #include <string.h>
99 #include <subcmd/parse-options.h>
....@@ -60,7 +60,6 @@
6060 STATUS(HAVE_DWARF_SUPPORT, dwarf);
6161 STATUS(HAVE_DWARF_GETLOCATIONS_SUPPORT, dwarf_getlocations);
6262 STATUS(HAVE_GLIBC_SUPPORT, glibc);
63
- STATUS(HAVE_GTK2_SUPPORT, gtk2);
6463 #ifndef HAVE_SYSCALL_TABLE_SUPPORT
6564 STATUS(HAVE_LIBAUDIT_SUPPORT, libaudit);
6665 #endif
....@@ -79,6 +78,8 @@
7978 STATUS(HAVE_LZMA_SUPPORT, lzma);
8079 STATUS(HAVE_AUXTRACE_SUPPORT, get_cpuid);
8180 STATUS(HAVE_LIBBPF_SUPPORT, bpf);
81
+ STATUS(HAVE_AIO_SUPPORT, aio);
82
+ STATUS(HAVE_ZSTD_SUPPORT, zstd);
8283 }
8384
8485 int cmd_version(int argc, const char **argv)