From 2604776e91181076a6c7bfa96be335db5b6be0b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristian=20Rodr=C3=ADguez?= Date: Sun, 23 Dec 2012 18:59:48 -0800 Subject: [PATCH] attrib: Fix missing config.h includes --- attrib/att.c | 4 ++++ attrib/gattrib.c | 4 ++++ attrib/interactive.c | 5 +++++ attrib/utils.c | 4 ++++ 4 files changed, 17 insertions(+) diff --git a/attrib/att.c b/attrib/att.c index 0ed41786a..de1181174 100644 --- a/attrib/att.c +++ b/attrib/att.c @@ -22,6 +22,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include diff --git a/attrib/gattrib.c b/attrib/gattrib.c index 0acefc89f..bf40532cf 100644 --- a/attrib/gattrib.c +++ b/attrib/gattrib.c @@ -22,6 +22,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include diff --git a/attrib/interactive.c b/attrib/interactive.c index 1ea35cdab..51f620ad3 100644 --- a/attrib/interactive.c +++ b/attrib/interactive.c @@ -20,6 +20,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/attrib/utils.c b/attrib/utils.c index 08365bdd8..43244c225 100644 --- a/attrib/utils.c +++ b/attrib/utils.c @@ -21,6 +21,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include -- 2.47.3