From 88f16bcf2592269dade3809a8ba95ac9c0dcd2b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristian=20Rodr=C3=ADguez?= Date: Sun, 23 Dec 2012 18:59:12 -0800 Subject: [PATCH] profiles: Fix missing config.h includes --- profiles/gatt/manager.c | 4 ++++ profiles/health/hdp.c | 4 ++++ profiles/health/mcap.c | 4 ++++ profiles/sap/sap-u8500.c | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/profiles/gatt/manager.c b/profiles/gatt/manager.c index ce0ed91c0..151d60fc7 100644 --- a/profiles/gatt/manager.c +++ b/profiles/gatt/manager.c @@ -20,6 +20,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include diff --git a/profiles/health/hdp.c b/profiles/health/hdp.c index bf8f82fdf..e63742005 100644 --- a/profiles/health/hdp.c +++ b/profiles/health/hdp.c @@ -20,6 +20,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include diff --git a/profiles/health/mcap.c b/profiles/health/mcap.c index 466d266e9..f08a7fab8 100644 --- a/profiles/health/mcap.c +++ b/profiles/health/mcap.c @@ -20,6 +20,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include diff --git a/profiles/sap/sap-u8500.c b/profiles/sap/sap-u8500.c index b1aee57a6..39169a0a5 100644 --- a/profiles/sap/sap-u8500.c +++ b/profiles/sap/sap-u8500.c @@ -22,6 +22,10 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include -- 2.47.3