summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2003-10-20 14:03:17 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2003-10-20 14:03:17 (GMT)
commita175e1b0ddafe74cdc425bab8cbd72617ddaacc4 (patch)
treeb321ba74166f539cfb2446d9dbb4d070b043fc53
parent82ffcf87b6b9cd84f98ac8543d8e466ce5af95ba (diff)
downloadmonitoring-plugins-a175e1b0ddafe74cdc425bab8cbd72617ddaacc4.tar.gz
Fix for config.h at top level. Required for intl/
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@748 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r--configure.in2
-rw-r--r--lib/fsusage.c2
-rw-r--r--lib/mountlist.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 8634b0a..912f43e 100644
--- a/configure.in
+++ b/configure.in
@@ -4,7 +4,7 @@ AC_PREREQ(2.50)
4AC_INIT(nagios-plugins,1.3.99) 4AC_INIT(nagios-plugins,1.3.99)
5AC_CONFIG_SRCDIR(Helper.pm) 5AC_CONFIG_SRCDIR(Helper.pm)
6AM_INIT_AUTOMAKE 6AM_INIT_AUTOMAKE
7AM_CONFIG_HEADER(plugins/config.h) 7AC_CONFIG_HEADER(config.h)
8AC_CANONICAL_HOST 8AC_CANONICAL_HOST
9 9
10RELEASE=1 10RELEASE=1
diff --git a/lib/fsusage.c b/lib/fsusage.c
index 5a864bf..7339c80 100644
--- a/lib/fsusage.c
+++ b/lib/fsusage.c
@@ -15,7 +15,7 @@
15 along with this program; if not, write to the Free Software Foundation, 15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ 16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
17 17
18#include "../plugins/config.h" 18#include "config.h"
19 19
20#if HAVE_INTTYPES_H 20#if HAVE_INTTYPES_H
21# include <inttypes.h> 21# include <inttypes.h>
diff --git a/lib/mountlist.c b/lib/mountlist.c
index d171858..1af3cbb 100644
--- a/lib/mountlist.c
+++ b/lib/mountlist.c
@@ -15,7 +15,7 @@
15 along with this program; if not, write to the Free Software Foundation, 15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ 16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
17 17
18#include "../plugins/config.h" 18#include "config.h"
19 19
20#include <stdio.h> 20#include <stdio.h>
21#include <sys/types.h> 21#include <sys/types.h>