[PATCH 1/2] perf data convert: Include config.h header

From: Jiri Olsa
Date: Fri Jun 24 2016 - 08:40:33 EST


otherwise some compiler might scream:

$ make LIBBABELTRACE_DIR=/opt/libbabeltrace/ LIBBABELTRACE=1
BUILD: Doing 'make -j4' parallel build
CC util/data-convert-bt.o
util/data-convert-bt.c: In function âconvert__configâ:
util/data-convert-bt.c:1299:19: error: implicit declaration of function âperf_config_u64â [-Werror=implicit-function-declaration]
c->queue_size = perf_config_u64(var, value);
...

Link: http://lkml.kernel.org/n/tip-t9dyx71w49dy5tacpdzr5b2p@xxxxxxxxxxxxxx
Signed-off-by: Jiri Olsa <jolsa@xxxxxxxxxx>
---
tools/perf/util/data-convert-bt.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/tools/perf/util/data-convert-bt.c b/tools/perf/util/data-convert-bt.c
index 9f53020c3269..5186bb1168af 100644
--- a/tools/perf/util/data-convert-bt.c
+++ b/tools/perf/util/data-convert-bt.c
@@ -26,6 +26,7 @@
#include "evlist.h"
#include "evsel.h"
#include "machine.h"
+#include "config.h"

#define pr_N(n, fmt, ...) \
eprintf(n, debug_data_convert, fmt, ##__VA_ARGS__)
--
2.4.11