From c4dbaf19e2fef30333948c52273d62334c817119 Mon Sep 17 00:00:00 2001 From: Michael Steinert Date: Tue, 15 May 2012 18:00:51 -0600 Subject: Add config.h header guards Signed-off-by: Michael Steinert --- tools/common.c | 2 ++ tools/consume.c | 2 ++ tools/declare_queue.c | 2 ++ tools/delete_queue.c | 2 ++ tools/get.c | 2 ++ tools/publish.c | 2 ++ tools/unix/process.c | 4 ++++ tools/windows/compat.c | 4 ++++ tools/windows/process.c | 4 ++++ 9 files changed, 24 insertions(+) (limited to 'tools') diff --git a/tools/common.c b/tools/common.c index 38df751..71ae07d 100644 --- a/tools/common.c +++ b/tools/common.c @@ -30,7 +30,9 @@ * ***** END LICENSE BLOCK ***** */ +#ifndef HAVE_CONFIG_H #include "config.h" +#endif #include #include diff --git a/tools/consume.c b/tools/consume.c index 83a5164..9c53606 100644 --- a/tools/consume.c +++ b/tools/consume.c @@ -30,7 +30,9 @@ * ***** END LICENSE BLOCK ***** */ +#ifdef HAVE_CONFIG_H #include "config.h" +#endif #include #include diff --git a/tools/declare_queue.c b/tools/declare_queue.c index d6bb9db..5c6a2bd 100644 --- a/tools/declare_queue.c +++ b/tools/declare_queue.c @@ -30,7 +30,9 @@ * ***** END LICENSE BLOCK ***** */ +#ifdef HAVE_CONFIG_H #include "config.h" +#endif #include #include diff --git a/tools/delete_queue.c b/tools/delete_queue.c index e596096..d9594e9 100644 --- a/tools/delete_queue.c +++ b/tools/delete_queue.c @@ -30,7 +30,9 @@ * ***** END LICENSE BLOCK ***** */ +#ifdef HAVE_CONFIG_H #include "config.h" +#endif #include #include diff --git a/tools/get.c b/tools/get.c index 57ebedb..b3e0e81 100644 --- a/tools/get.c +++ b/tools/get.c @@ -30,7 +30,9 @@ * ***** END LICENSE BLOCK ***** */ +#ifdef HAVE_CONFIG_H #include "config.h" +#endif #include diff --git a/tools/publish.c b/tools/publish.c index 57060df..08ae18a 100644 --- a/tools/publish.c +++ b/tools/publish.c @@ -30,7 +30,9 @@ * ***** END LICENSE BLOCK ***** */ +#ifdef HAVE_CONFIG_H #include "config.h" +#endif #include #include diff --git a/tools/unix/process.c b/tools/unix/process.c index 1e0d1d6..624f016 100644 --- a/tools/unix/process.c +++ b/tools/unix/process.c @@ -30,6 +30,10 @@ * ***** END LICENSE BLOCK ***** */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include diff --git a/tools/windows/compat.c b/tools/windows/compat.c index acba42e..07afa9a 100644 --- a/tools/windows/compat.c +++ b/tools/windows/compat.c @@ -30,6 +30,10 @@ * ***** END LICENSE BLOCK ***** */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include diff --git a/tools/windows/process.c b/tools/windows/process.c index 26b9a70..8bc9337 100644 --- a/tools/windows/process.c +++ b/tools/windows/process.c @@ -30,6 +30,10 @@ * ***** END LICENSE BLOCK ***** */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include -- cgit v1.2.1