summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2008-04-02 09:11:44 (GMT)
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2008-04-02 09:11:44 (GMT)
commit0d13deb0e44afb80ec0a35e827548d891d48f6b6 (patch)
tree7723807c1c17109104f6ebf3fea141e87a50ba46 /lib
parent63897a417917907099b72f4e679890355a7a78a0 (diff)
downloadmonitoring-plugins-0d13deb0e44afb80ec0a35e827548d891d48f6b6.tar.gz
- Add --enable-extra-opts configure option for compiling extra-opts support
- Auto-update po/pot files git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1973 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.am6
-rw-r--r--lib/parse_ini.c4
-rw-r--r--lib/tests/Makefile.am16
-rwxr-xr-xlib/tests/test_ini.t2
-rwxr-xr-xlib/tests/test_opts.t2
5 files changed, 23 insertions, 7 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 5d65bed..73c1291 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -6,7 +6,11 @@ noinst_LIBRARIES = libnagiosplug.a
6 6
7 7
8libnagiosplug_a_SOURCES = utils_base.c utils_disk.c utils_tcp.c utils_cmd.c 8libnagiosplug_a_SOURCES = utils_base.c utils_disk.c utils_tcp.c utils_cmd.c
9EXTRA_DIST = utils_base.h utils_disk.h utils_tcp.h utils_cmd.h 9EXTRA_DIST = utils_base.h utils_disk.h utils_tcp.h utils_cmd.h parse_ini.h extra_opts.h
10
11if USE_PARSE_INI
12libnagiosplug_a_SOURCES += parse_ini.c extra_opts.c
13endif USE_PARSE_INI
10 14
11INCLUDES = -I$(srcdir) -I$(top_srcdir)/gl -I$(top_srcdir)/intl -I$(top_srcdir)/plugins 15INCLUDES = -I$(srcdir) -I$(top_srcdir)/gl -I$(top_srcdir)/intl -I$(top_srcdir)/plugins
12 16
diff --git a/lib/parse_ini.c b/lib/parse_ini.c
index aaba03e..d5661c9 100644
--- a/lib/parse_ini.c
+++ b/lib/parse_ini.c
@@ -34,8 +34,8 @@
34#include <sys/stat.h> 34#include <sys/stat.h>
35#include <unistd.h> 35#include <unistd.h>
36 36
37/* FIXME: N::P dies if section is not found */ 37/* TODO: die like N::P if section is not found */
38/* FIXME: N::P dies if config file is not found */ 38/* TODO: die like N::P if config file is not found */
39 39
40/* np_ini_info contains the result of parsing a "locator" in the format 40/* np_ini_info contains the result of parsing a "locator" in the format
41 * [stanza_name][@config_filename] (check_foo@/etc/foo.ini, for example) 41 * [stanza_name][@config_filename] (check_foo@/etc/foo.ini, for example)
diff --git a/lib/tests/Makefile.am b/lib/tests/Makefile.am
index bd25ccf..25e2bed 100644
--- a/lib/tests/Makefile.am
+++ b/lib/tests/Makefile.am
@@ -7,9 +7,11 @@ check_PROGRAMS = @EXTRA_TEST@
7 7
8INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/gl -I$(top_srcdir)/intl -I$(top_srcdir)/plugins 8INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/gl -I$(top_srcdir)/intl -I$(top_srcdir)/plugins
9 9
10EXTRA_PROGRAMS = test_utils test_disk test_tcp test_cmd test_base64 10EXTRA_PROGRAMS = test_utils test_disk test_tcp test_cmd test_base64 test_ini test_opts
11 11
12EXTRA_DIST = test_utils.t test_disk.t test_tcp.t test_cmd.t test_base64.t 12np_test_scripts = test_base64.t test_cmd.t test_disk.t test_ini.t test_opts.t test_tcp.t test_utils.t
13np_test_files = config-dos.ini config-opts.ini config-tiny.ini plugin.ini plugins.ini
14EXTRA_DIST = $(np_test_scripts) $(np_test_files)
13 15
14LIBS = @LIBINTL@ 16LIBS = @LIBINTL@
15 17
@@ -38,6 +40,16 @@ test_base64_CFLAGS = -g -I..
38test_base64_LDFLAGS = -L/usr/local/lib -ltap 40test_base64_LDFLAGS = -L/usr/local/lib -ltap
39test_base64_LDADD = $(top_srcdir)/gl/base64.o 41test_base64_LDADD = $(top_srcdir)/gl/base64.o
40 42
43test_ini_SOURCES = test_ini.c
44test_ini_CFLAGS = -g -I..
45test_ini_LDFLAGS = -L/usr/local/lib -ltap
46test_ini_LDADD = ../utils_base.o ../parse_ini.o
47
48test_opts_SOURCES = test_opts.c
49test_opts_CFLAGS = -g -I..
50test_opts_LDFLAGS = -L/usr/local/lib -ltap
51test_opts_LDADD = ../utils_base.o ../parse_ini.o ../extra_opts.o
52
41test: ${noinst_PROGRAMS} 53test: ${noinst_PROGRAMS}
42 perl -MTest::Harness -e '$$Test::Harness::switches=""; runtests(map {$$_ .= ".t"} @ARGV)' $(EXTRA_PROGRAMS) 54 perl -MTest::Harness -e '$$Test::Harness::switches=""; runtests(map {$$_ .= ".t"} @ARGV)' $(EXTRA_PROGRAMS)
43 55
diff --git a/lib/tests/test_ini.t b/lib/tests/test_ini.t
index b130a01..0487098 100755
--- a/lib/tests/test_ini.t
+++ b/lib/tests/test_ini.t
@@ -1,6 +1,6 @@
1#!/usr/bin/perl 1#!/usr/bin/perl
2use Test::More; 2use Test::More;
3if (! -e "./test_ini") { 3if (! -e "./test_ini") {
4 plan skip_all => "./test_ini not compiled - please install tap library to test"; 4 plan skip_all => "./test_ini not compiled - please install tap library and/or enable parse-ini to test";
5} 5}
6exec "./test_ini"; 6exec "./test_ini";
diff --git a/lib/tests/test_opts.t b/lib/tests/test_opts.t
index 86a5b21..d69b8f1 100755
--- a/lib/tests/test_opts.t
+++ b/lib/tests/test_opts.t
@@ -1,6 +1,6 @@
1#!/usr/bin/perl 1#!/usr/bin/perl
2use Test::More; 2use Test::More;
3if (! -e "./test_opts") { 3if (! -e "./test_opts") {
4 plan skip_all => "./test_opts not compiled - please install tap library to test"; 4 plan skip_all => "./test_opts not compiled - please install tap library and/or enable parse-ini to test";
5} 5}
6exec "./test_opts"; 6exec "./test_opts";