Commit a87ea20b authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

configure: Avoid compile failure

parent 8e7e40d0
......@@ -267,6 +267,7 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
]],
[[
std::vector<std::future<int>> v;
(void)v;
]])],
[AC_DEFINE([HAVE_STD_FUTURE], [1],
[Define to 1 if you have the `std::future`.])
......@@ -570,6 +571,7 @@ if test "x${request_libbpf}" != "xno"; then
]],
[[
enum bpf_stats_type foo;
(void)foo;
]])],
[have_bpf_stats_type=yes],
[have_bpf_stats_type=no])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment