From 0427b194d611dac67e1736524040f6638033a35f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristian=20Rodr=C3=ADguez?= Date: Sun, 23 Dec 2012 18:58:48 -0800 Subject: [PATCH] tools: Fix missing config.h includes --- tools/btiotest.c | 5 +++++ tools/obex-client-tool.c | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/tools/btiotest.c b/tools/btiotest.c index 4b170ace5..7a77bb7f6 100644 --- a/tools/btiotest.c +++ b/tools/btiotest.c @@ -21,6 +21,11 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include diff --git a/tools/obex-client-tool.c b/tools/obex-client-tool.c index 8488a20a7..b7220fa85 100644 --- a/tools/obex-client-tool.c +++ b/tools/obex-client-tool.c @@ -19,6 +19,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include -- 2.47.3