From b6268e1350eb891bf7ab63c3f8359763c9764fbb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Cristian=20Rodr=C3=ADguez?= Date: Sun, 23 Dec 2012 18:58:11 -0800 Subject: [PATCH] unit: Fix missing config.h includes --- unit/test-gobex-apparam.c | 4 ++++ unit/test-gobex-header.c | 4 ++++ unit/test-gobex-packet.c | 4 ++++ unit/test-gobex-transfer.c | 4 ++++ unit/test-gobex.c | 4 ++++ unit/util.c | 4 ++++ 6 files changed, 24 insertions(+) diff --git a/unit/test-gobex-apparam.c b/unit/test-gobex-apparam.c index f2323804e..1c8627464 100644 --- a/unit/test-gobex-apparam.c +++ b/unit/test-gobex-apparam.c @@ -19,6 +19,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include diff --git a/unit/test-gobex-header.c b/unit/test-gobex-header.c index c933a0173..2a198c639 100644 --- a/unit/test-gobex-header.c +++ b/unit/test-gobex-header.c @@ -19,6 +19,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include diff --git a/unit/test-gobex-packet.c b/unit/test-gobex-packet.c index 39650f937..b40dc66d4 100644 --- a/unit/test-gobex-packet.c +++ b/unit/test-gobex-packet.c @@ -19,6 +19,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include diff --git a/unit/test-gobex-transfer.c b/unit/test-gobex-transfer.c index f013617c1..a8578fd9c 100644 --- a/unit/test-gobex-transfer.c +++ b/unit/test-gobex-transfer.c @@ -19,6 +19,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include diff --git a/unit/test-gobex.c b/unit/test-gobex.c index 2075f4ac8..8beaa444f 100644 --- a/unit/test-gobex.c +++ b/unit/test-gobex.c @@ -19,6 +19,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include diff --git a/unit/util.c b/unit/util.c index a591ab10d..c76acdf22 100644 --- a/unit/util.c +++ b/unit/util.c @@ -19,6 +19,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include -- 2.11.0