From d661ba725c053949fbfdb911299aa6269840fe88 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 4 Nov 2013 11:34:58 +0200 Subject: [PATCH] android: Add the missing HAVE_CONFIG_H check daemon files --- android/hid.c | 4 ++++ android/ipc.c | 4 ++++ android/socket.c | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/android/hid.c b/android/hid.c index 59fc90b69..1ee8ed476 100644 --- a/android/hid.c +++ b/android/hid.c @@ -21,6 +21,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include diff --git a/android/ipc.c b/android/ipc.c index 1f5275367..e672bf818 100644 --- a/android/ipc.c +++ b/android/ipc.c @@ -21,6 +21,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include diff --git a/android/socket.c b/android/socket.c index b6eed6e25..e32be46a2 100644 --- a/android/socket.c +++ b/android/socket.c @@ -21,6 +21,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -- 2.47.3