Control: tags -1 moreinfo confirmed On 2021-04-19 10:03:12 +0200, Jan Wagner wrote: > Package: release.debian.org > User: release.debian.org@packages.debian.org > Usertags: unblock > Severity: normal > > Please unblock package monitoring-plugins 2.3.1-1 > > The new package is already uploaded to experimental as 2.3.1-1~exp2, but I > did not upload 2.3.1-1 unto unstable yet. I'm waiting here for an approval. ACK. Please remove the moreinfo tag once the new version is available in unstable. Cheers > > [ Reason ] > I integrated the new minor version 2.3.1, which aims to fix mostly issues > with check_curl, but also check_http, check_snmp, check_psql, check_dns and > check_icmp. > > Upsteam changelog: > > 2.3.1 10 April 2021 > ENHANCEMENTS > check_curl: Add an option to verify the peer certificate & host using the > system CA's > > FIXES > check_icmp: fix simple typo, conspicuosly -> conspicuously > check_curl: fixed help, usage and errors for TLS 1.3 > check_curl: fixed a potential buffer overflow in url buffer > check_dns: split multiple IP addresses passed in one -a argument > check_curl: added string_statuscode function for printing HTTP/1.1 and > HTTP/2 correctly > check_curl: fix crash if http header contains leading spaces > check_curl: display a specific human-readable error message where possible > check_pgsql: Using snprintf which honors the buffers size and guarantees > null termination. > check_snmp: put the "c" (to mark a counter) after the perfdata value > check_http: Increase regexp limit > check_http: make -C obvious > check_curl: Increase regexp limit (to 1024 as in check_http) > check_curl: make -C obvious (from check_http) > check_curl: backported --show-body/-B to print body (from check_http) > > > [ Impact ] > The fixed issues from changelog will remain open in bullseye including > #982847, #886888, #950921 > > > [ Tests ] > make test (provided by upstream) was run after building for checking if > there are any regressions. I also rolled the package into some production > environments on Debian buster. > > [ Risks ] > The risk for (additional) regressions from 2.3.1 is very low, I also applied > one patch from upstream addressing an issue reported shortly after 2.3.1 was > released. > > [ Checklist ] > [x] all changes are documented in the d/changelog > [x] I reviewed all changes and I approve them > [x] attach debdiff against the package in testing > > [ Other info ] > You can also have a look into the changes at https://salsa.debian.org/nagios-team/pkg-monitoring-plugins/-/compare/debian%2F2.3-1...debian%2F2.3.1-1_exp2. > > Beside the changes in the package, there are also two changes not effecting > the binary packages (and so not included into d/changelog): > > * I stripped perlmods/ from upstream tarball, which made it accidentally > into the 2.3 upstream tarball > * I droped .github/workflows > > unblock monitoring-plugins/2.3.1-1 > > Many thank, Jan. > -- > Never write mail to <waja@spamfalle.info>, you have been warned! > -----BEGIN GEEK CODE BLOCK----- > Version: 3.12 > GIT d-- s+: a C+++ UL++++ P+ L+++ E--- W+++ N+++ o++ K++ w--- O M+ V- PS PE > Y++ > PGP++ t-- 5 X R tv- b+ DI D+ G++ e++ h---- r+++ y++++ > ------END GEEK CODE BLOCK------ > diff -Nru monitoring-plugins-2.3/AUTHORS monitoring-plugins-2.3.1/AUTHORS > --- monitoring-plugins-2.3/AUTHORS 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/AUTHORS 2021-04-10 14:13:41.000000000 +0200 > @@ -22,3 +22,4 @@ > Holger Weiss > Michael Wirtgen > Oliver Skibbe > +Andreas Baumann > diff -Nru monitoring-plugins-2.3/Makefile.am monitoring-plugins-2.3.1/Makefile.am > --- monitoring-plugins-2.3/Makefile.am 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/Makefile.am 2021-04-11 11:39:23.000000000 +0200 > @@ -7,7 +7,7 @@ > NP-VERSION-GEN REQUIREMENTS SUPPORT THANKS \ > NPTest.pm pkg \ > config_test/Makefile config_test/run_tests config_test/child_test.c \ > - perlmods tools/build_perl_modules \ > + tools/build_perl_modules \ > tools/tinderbox_build > > ACLOCAL_AMFLAGS = -I gl/m4 -I m4 > @@ -31,7 +31,7 @@ > > test test-debug: > cd lib && $(MAKE) $@ > - if test "$(PERLMODS_DIR)" != ""; then cd perlmods && $(MAKE) $@; fi > + if test "$(PERLMODS_DIR)" != ""; then cd && $(MAKE) $@; fi > cd plugins && $(MAKE) $@ > cd plugins-scripts && $(MAKE) $@ > cd plugins-root && $(MAKE) $@ > diff -Nru monitoring-plugins-2.3/Makefile.in monitoring-plugins-2.3.1/Makefile.in > --- monitoring-plugins-2.3/Makefile.in 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/Makefile.in 2021-04-11 11:39:23.000000000 +0200 > @@ -1374,7 +1374,7 @@ > NP-VERSION-GEN REQUIREMENTS SUPPORT THANKS \ > NPTest.pm pkg \ > config_test/Makefile config_test/run_tests config_test/child_test.c \ > - perlmods tools/build_perl_modules \ > + tools/build_perl_modules \ > tools/tinderbox_build > > ACLOCAL_AMFLAGS = -I gl/m4 -I m4 > @@ -1917,7 +1917,7 @@ > > test test-debug: > cd lib && $(MAKE) $@ > - if test "$(PERLMODS_DIR)" != ""; then cd perlmods && $(MAKE) $@; fi > + if test "$(PERLMODS_DIR)" != ""; then cd && $(MAKE) $@; fi > cd plugins && $(MAKE) $@ > cd plugins-scripts && $(MAKE) $@ > cd plugins-root && $(MAKE) $@ > diff -Nru monitoring-plugins-2.3/NEWS monitoring-plugins-2.3.1/NEWS > --- monitoring-plugins-2.3/NEWS 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/NEWS 2021-04-10 14:13:41.000000000 +0200 > @@ -1,5 +1,25 @@ > This file documents the major additions and syntax changes between releases. > > +2.3.1 10 April 2021 > + ENHANCEMENTS > + check_curl: Add an option to verify the peer certificate & host using the system CA's > + > + FIXES > + check_icmp: fix simple typo, conspicuosly -> conspicuously > + check_curl: fixed help, usage and errors for TLS 1.3 > + check_curl: fixed a potential buffer overflow in url buffer > + check_dns: split multiple IP addresses passed in one -a argument > + check_curl: added string_statuscode function for printing HTTP/1.1 and HTTP/2 correctly > + check_curl: fix crash if http header contains leading spaces > + check_curl: display a specific human-readable error message where possible > + check_pgsql: Using snprintf which honors the buffers size and guarantees null termination. > + check_snmp: put the "c" (to mark a counter) after the perfdata value > + check_http: Increase regexp limit > + check_http: make -C obvious > + check_curl: Increase regexp limit (to 1024 as in check_http) > + check_curl: make -C obvious (from check_http) > + check_curl: backported --show-body/-B to print body (from check_http) > + > 2.3 10th December 2020 > ENHANCEMENTS > check_dns: allow 'expected address' (-a) to be specified in CIDR notation > diff -Nru monitoring-plugins-2.3/NP-VERSION-GEN monitoring-plugins-2.3.1/NP-VERSION-GEN > --- monitoring-plugins-2.3/NP-VERSION-GEN 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/NP-VERSION-GEN 2021-04-10 14:13:41.000000000 +0200 > @@ -6,7 +6,7 @@ > SRC_ROOT=`dirname $0` > > NPVF=NP-VERSION-FILE > -DEF_VER=2.3 > +DEF_VER=2.3.1 > > LF=' > ' > diff -Nru monitoring-plugins-2.3/THANKS monitoring-plugins-2.3.1/THANKS > --- monitoring-plugins-2.3/THANKS 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/THANKS 2021-04-10 16:17:19.000000000 +0200 > @@ -47,6 +47,7 @@ > Jimmy Bergman > Jochen Bern > Tom Bertelston > +Stefan Bethke > Gunnar Beutner > Prathamesh Bhanuse > Daniel Bimschas > @@ -132,6 +133,7 @@ > John C. Frickson > Markus Frosch > Matt Garrett > +Tim Gates > Sven Geggus > Jonas Genannt > Robby Giffin > @@ -216,6 +218,7 @@ > Joerg Linge > Jan Lipphaus > Anton Lofgren > +Florian Lohoff > Larry Low > Jacob Lundqvist > Jason Lunn > @@ -247,6 +250,7 @@ > Russell Miller > Eric J. Mislivec > Janos Mohacsi > +Tomas Mozes > Gerd Mueller > Adrian Murphy > Michael Musikhin > @@ -325,6 +329,7 @@ > Lonny Selinger > Nathan Shafer > Tom Shields > +Barak Shohat > Sean Shore > Pall Sigurdsson > Antony Simmonds > diff -Nru monitoring-plugins-2.3/configure monitoring-plugins-2.3.1/configure > --- monitoring-plugins-2.3/configure 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/configure 2021-04-11 11:39:23.000000000 +0200 > @@ -1,6 +1,6 @@ > #! /bin/sh > # Guess values for system-dependent variables and create Makefiles. > -# Generated by GNU Autoconf 2.69 for monitoring-plugins 2.3. > +# Generated by GNU Autoconf 2.69 for monitoring-plugins 2.3.1. > # > # > # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. > @@ -587,8 +587,8 @@ > # Identity of this package. > PACKAGE_NAME='monitoring-plugins' > PACKAGE_TARNAME='monitoring-plugins' > -PACKAGE_VERSION='2.3' > -PACKAGE_STRING='monitoring-plugins 2.3' > +PACKAGE_VERSION='2.3.1' > +PACKAGE_STRING='monitoring-plugins 2.3.1' > PACKAGE_BUGREPORT='' > PACKAGE_URL='' > > @@ -2417,7 +2417,7 @@ > # Omit some internal or obsolete options to make the list less imposing. > # This message is too long to be a string in the A/UX 3.1 sh. > cat <<_ACEOF > -\`configure' configures monitoring-plugins 2.3 to adapt to many kinds of systems. > +\`configure' configures monitoring-plugins 2.3.1 to adapt to many kinds of systems. > > Usage: $0 [OPTION]... [VAR=VALUE]... > > @@ -2488,7 +2488,7 @@ > > if test -n "$ac_init_help"; then > case $ac_init_help in > - short | recursive ) echo "Configuration of monitoring-plugins 2.3:";; > + short | recursive ) echo "Configuration of monitoring-plugins 2.3.1:";; > esac > cat <<\_ACEOF > > @@ -2659,7 +2659,7 @@ > test -n "$ac_init_help" && exit $ac_status > if $ac_init_version; then > cat <<\_ACEOF > -monitoring-plugins configure 2.3 > +monitoring-plugins configure 2.3.1 > generated by GNU Autoconf 2.69 > > Copyright (C) 2012 Free Software Foundation, Inc. > @@ -3364,7 +3364,7 @@ > This file contains any messages produced by compilers while > running configure, to aid debugging if configure makes a mistake. > > -It was created by monitoring-plugins $as_me 2.3, which was > +It was created by monitoring-plugins $as_me 2.3.1, which was > generated by GNU Autoconf 2.69. Invocation command line was > > $ $0 $@ > @@ -4235,7 +4235,7 @@ > > # Define the identity of the package. > PACKAGE='monitoring-plugins' > - VERSION='2.3' > + VERSION='2.3.1' > > > cat >>confdefs.h <<_ACEOF > @@ -41554,7 +41554,7 @@ > as_fn_error $? "No ar found for Solaris - is /usr/ccs/bin in PATH?" "$LINENO" 5 > fi > > -ac_config_files="$ac_config_files Makefile tap/Makefile lib/Makefile plugins/Makefile lib/tests/Makefile plugins-root/Makefile plugins-scripts/Makefile plugins-scripts/utils.pm plugins-scripts/utils.sh perlmods/Makefile test.pl pkg/solaris/pkginfo po/Makefile.in" > +ac_config_files="$ac_config_files Makefile tap/Makefile lib/Makefile plugins/Makefile lib/tests/Makefile plugins-root/Makefile plugins-scripts/Makefile plugins-scripts/utils.pm plugins-scripts/utils.sh test.pl pkg/solaris/pkginfo po/Makefile.in" > > cat >confcache <<\_ACEOF > # This file is a shell script that caches the results of configure > @@ -42176,7 +42176,7 @@ > # report actual input values of CONFIG_FILES etc. instead of their > # values after options handling. > ac_log=" > -This file was extended by monitoring-plugins $as_me 2.3, which was > +This file was extended by monitoring-plugins $as_me 2.3.1, which was > generated by GNU Autoconf 2.69. Invocation command line was > > CONFIG_FILES = $CONFIG_FILES > @@ -42242,7 +42242,7 @@ > cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 > ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" > ac_cs_version="\\ > -monitoring-plugins config.status 2.3 > +monitoring-plugins config.status 2.3.1 > configured by $0, generated by GNU Autoconf 2.69, > with options \\"\$ac_cs_config\\" > > @@ -42670,7 +42670,6 @@ > "plugins-scripts/Makefile") CONFIG_FILES="$CONFIG_FILES plugins-scripts/Makefile" ;; > "plugins-scripts/utils.pm") CONFIG_FILES="$CONFIG_FILES plugins-scripts/utils.pm" ;; > "plugins-scripts/utils.sh") CONFIG_FILES="$CONFIG_FILES plugins-scripts/utils.sh" ;; > - "perlmods/Makefile") CONFIG_FILES="$CONFIG_FILES perlmods/Makefile" ;; > "test.pl") CONFIG_FILES="$CONFIG_FILES test.pl" ;; > "pkg/solaris/pkginfo") CONFIG_FILES="$CONFIG_FILES pkg/solaris/pkginfo" ;; > "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; > diff -Nru monitoring-plugins-2.3/configure.ac monitoring-plugins-2.3.1/configure.ac > --- monitoring-plugins-2.3/configure.ac 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/configure.ac 2021-04-11 11:39:23.000000000 +0200 > @@ -1,6 +1,6 @@ > dnl Process this file with autoconf to produce a configure script. > AC_PREREQ(2.59) > -AC_INIT(monitoring-plugins,2.3) > +AC_INIT(monitoring-plugins,2.3.1) > AC_CONFIG_SRCDIR(NPTest.pm) > AC_CONFIG_FILES([gl/Makefile]) > AC_CONFIG_AUX_DIR(build-aux) > @@ -1888,7 +1888,6 @@ > plugins-scripts/Makefile > plugins-scripts/utils.pm > plugins-scripts/utils.sh > - perlmods/Makefile > test.pl > pkg/solaris/pkginfo > po/Makefile.in > diff -Nru monitoring-plugins-2.3/debian/changelog monitoring-plugins-2.3.1/debian/changelog > --- monitoring-plugins-2.3/debian/changelog 2021-01-06 22:10:18.000000000 +0100 > +++ monitoring-plugins-2.3.1/debian/changelog 2021-04-13 13:05:28.000000000 +0200 > @@ -1,3 +1,16 @@ > +monitoring-plugins (2.3.1-1~exp2) experimental; urgency=medium > + > + * [eb7432c] Adding d/p/10_check_curl_header fixing HTTP_ heqders > + * [363955f] Adding d/p/03_epn disable epn in check_disk_smb > + > + -- Jan Wagner <waja@cyconet.org> Tue, 13 Apr 2021 13:05:28 +0200 > + > +monitoring-plugins (2.3.1-1~exp1) experimental; urgency=medium > + > + * [09f4277] New upstream version 2.3.1 (Closes: #982847, #886888, #950921) > + > + -- Jan Wagner <waja@cyconet.org> Sun, 11 Apr 2021 12:21:37 +0100 > + > monitoring-plugins (2.3-1) unstable; urgency=medium > > * Upload to unstable > diff -Nru monitoring-plugins-2.3/debian/patches/03_epn monitoring-plugins-2.3.1/debian/patches/03_epn > --- monitoring-plugins-2.3/debian/patches/03_epn 1970-01-01 01:00:00.000000000 +0100 > +++ monitoring-plugins-2.3.1/debian/patches/03_epn 2021-04-13 13:05:28.000000000 +0200 > @@ -0,0 +1,8 @@ > +--- a/plugins-scripts/check_disk_smb.pl > ++++ b/plugins-scripts/check_disk_smb.pl > +@@ -1,4 +1,5 @@ > + #!@PERL@ -w > ++# nagios: -epn > + # > + # > + # check_disk.pl <host> <share> <user> <pass> [warn] [critical] [port] > diff -Nru monitoring-plugins-2.3/debian/patches/10_check_curl_header monitoring-plugins-2.3.1/debian/patches/10_check_curl_header > --- monitoring-plugins-2.3/debian/patches/10_check_curl_header 1970-01-01 01:00:00.000000000 +0100 > +++ monitoring-plugins-2.3.1/debian/patches/10_check_curl_header 2021-04-13 13:05:28.000000000 +0200 > @@ -0,0 +1,23 @@ > +From f0ac7fcc7c40fab04c00fbbc8c091e89e77b0f74 Mon Sep 17 00:00:00 2001 > +From: Barak Shohat <barak@bazzisoft.com> > +Date: Mon, 12 Apr 2021 19:06:27 +0300 > +Subject: [PATCH] check_curl: Fix bug where headers beginning with HTTP_ cause > + the status line parsing to fail. > + > +--- > + plugins/check_curl.c | 2 +- > + 1 file changed, 1 insertion(+), 1 deletion(-) > + > +diff --git a/plugins/check_curl.c b/plugins/check_curl.c > +index 99833f6f..3e0a6f94 100644 > +--- a/plugins/check_curl.c > ++++ b/plugins/check_curl.c > +@@ -1995,7 +1995,7 @@ curlhelp_parse_statusline (const char *buf, curlhelp_statusline *status_line) > + char *first_line_buf; > + > + /* find last start of a new header */ > +- start = strrstr2 (buf, "\r\nHTTP"); > ++ start = strrstr2 (buf, "\r\nHTTP/"); > + if (start != NULL) { > + start += 2; > + buf = start; > diff -Nru monitoring-plugins-2.3/debian/patches/series monitoring-plugins-2.3.1/debian/patches/series > --- monitoring-plugins-2.3/debian/patches/series 2021-01-06 22:10:18.000000000 +0100 > +++ monitoring-plugins-2.3.1/debian/patches/series 2021-04-13 13:05:28.000000000 +0200 > @@ -1,2 +1,4 @@ > 02_check_icmp_links > +03_epn > # commited upstream > +10_check_curl_header > Binary files /tmp/uSsyKPTDEh/monitoring-plugins-2.3/perlmods/Class-Accessor-0.34.tar.gz and /tmp/KGXYzMpszb/monitoring-plugins-2.3.1/perlmods/Class-Accessor-0.34.tar.gz differ > Binary files /tmp/uSsyKPTDEh/monitoring-plugins-2.3/perlmods/Config-Tiny-2.14.tar.gz and /tmp/KGXYzMpszb/monitoring-plugins-2.3.1/perlmods/Config-Tiny-2.14.tar.gz differ > diff -Nru monitoring-plugins-2.3/perlmods/Makefile monitoring-plugins-2.3.1/perlmods/Makefile > --- monitoring-plugins-2.3/perlmods/Makefile 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/perlmods/Makefile 1970-01-01 01:00:00.000000000 +0100 > @@ -1,1514 +0,0 @@ > -# Makefile.in generated by automake 1.11.6 from Makefile.am. > -# perlmods/Makefile. Generated from Makefile.in by configure. > - > -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, > -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software > -# Foundation, Inc. > -# This Makefile.in is free software; the Free Software Foundation > -# gives unlimited permission to copy and/or distribute it, > -# with or without modifications, as long as this notice is preserved. > - > -# This program is distributed in the hope that it will be useful, > -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without > -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A > -# PARTICULAR PURPOSE. > - > - > - > -am__make_dryrun = \ > - { \ > - am__dry=no; \ > - case $$MAKEFLAGS in \ > - *\\[\ \ ]*) \ > - echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ > - | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ > - *) \ > - for am__flg in $$MAKEFLAGS; do \ > - case $$am__flg in \ > - *=*|--*) ;; \ > - *n*) am__dry=yes; break;; \ > - esac; \ > - done;; \ > - esac; \ > - test $$am__dry = yes; \ > - } > -pkgdatadir = $(datadir)/monitoring-plugins > -pkgincludedir = $(includedir)/monitoring-plugins > -pkglibdir = $(libdir)/monitoring-plugins > -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd > -install_sh_DATA = $(install_sh) -c -m 644 > -install_sh_PROGRAM = $(install_sh) -c > -install_sh_SCRIPT = $(install_sh) -c > -INSTALL_HEADER = $(INSTALL_DATA) > -transform = $(program_transform_name) > -NORMAL_INSTALL = : > -PRE_INSTALL = : > -POST_INSTALL = : > -NORMAL_UNINSTALL = : > -PRE_UNINSTALL = : > -POST_UNINSTALL = : > -build_triplet = x86_64-unknown-linux-gnu > -host_triplet = x86_64-unknown-linux-gnu > -subdir = perlmods > -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in > -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 > -am__aclocal_m4_deps = $(top_srcdir)/m4/libcurl.m4 \ > - $(top_srcdir)/m4/np_mysqlclient.m4 \ > - $(top_srcdir)/m4/uriparser.m4 $(top_srcdir)/gl/m4/00gnulib.m4 \ > - $(top_srcdir)/gl/m4/alloca.m4 \ > - $(top_srcdir)/gl/m4/arpa_inet_h.m4 \ > - $(top_srcdir)/gl/m4/base64.m4 $(top_srcdir)/gl/m4/btowc.m4 \ > - $(top_srcdir)/gl/m4/codeset.m4 \ > - $(top_srcdir)/gl/m4/configmake.m4 \ > - $(top_srcdir)/gl/m4/dirname.m4 \ > - $(top_srcdir)/gl/m4/double-slash-root.m4 \ > - $(top_srcdir)/gl/m4/eealloc.m4 $(top_srcdir)/gl/m4/environ.m4 \ > - $(top_srcdir)/gl/m4/errno_h.m4 $(top_srcdir)/gl/m4/error.m4 \ > - $(top_srcdir)/gl/m4/exponentd.m4 \ > - $(top_srcdir)/gl/m4/extensions.m4 \ > - $(top_srcdir)/gl/m4/extern-inline.m4 \ > - $(top_srcdir)/gl/m4/fcntl-o.m4 $(top_srcdir)/gl/m4/float_h.m4 \ > - $(top_srcdir)/gl/m4/floorf.m4 \ > - $(top_srcdir)/gl/m4/fstypename.m4 \ > - $(top_srcdir)/gl/m4/fsusage.m4 \ > - $(top_srcdir)/gl/m4/getaddrinfo.m4 \ > - $(top_srcdir)/gl/m4/gethostname.m4 \ > - $(top_srcdir)/gl/m4/getloadavg.m4 \ > - $(top_srcdir)/gl/m4/getopt.m4 $(top_srcdir)/gl/m4/gettext.m4 \ > - $(top_srcdir)/gl/m4/glibc21.m4 \ > - $(top_srcdir)/gl/m4/gnulib-common.m4 \ > - $(top_srcdir)/gl/m4/gnulib-comp.m4 \ > - $(top_srcdir)/gl/m4/hostent.m4 $(top_srcdir)/gl/m4/iconv.m4 \ > - $(top_srcdir)/gl/m4/idpriv.m4 \ > - $(top_srcdir)/gl/m4/include_next.m4 \ > - $(top_srcdir)/gl/m4/inet_ntop.m4 \ > - $(top_srcdir)/gl/m4/intlmacosx.m4 \ > - $(top_srcdir)/gl/m4/intmax_t.m4 \ > - $(top_srcdir)/gl/m4/inttypes_h.m4 \ > - $(top_srcdir)/gl/m4/langinfo_h.m4 \ > - $(top_srcdir)/gl/m4/largefile.m4 $(top_srcdir)/gl/m4/lib-ld.m4 \ > - $(top_srcdir)/gl/m4/lib-link.m4 \ > - $(top_srcdir)/gl/m4/lib-prefix.m4 \ > - $(top_srcdir)/gl/m4/libtool.m4 \ > - $(top_srcdir)/gl/m4/localcharset.m4 \ > - $(top_srcdir)/gl/m4/locale-fr.m4 \ > - $(top_srcdir)/gl/m4/locale-ja.m4 \ > - $(top_srcdir)/gl/m4/locale-zh.m4 \ > - $(top_srcdir)/gl/m4/locale_h.m4 \ > - $(top_srcdir)/gl/m4/localeconv.m4 $(top_srcdir)/gl/m4/lock.m4 \ > - $(top_srcdir)/gl/m4/longlong.m4 \ > - $(top_srcdir)/gl/m4/ls-mntd-fs.m4 \ > - $(top_srcdir)/gl/m4/ltoptions.m4 \ > - $(top_srcdir)/gl/m4/ltsugar.m4 \ > - $(top_srcdir)/gl/m4/ltversion.m4 \ > - $(top_srcdir)/gl/m4/lt~obsolete.m4 \ > - $(top_srcdir)/gl/m4/malloc.m4 $(top_srcdir)/gl/m4/malloca.m4 \ > - $(top_srcdir)/gl/m4/math_h.m4 $(top_srcdir)/gl/m4/mbrtowc.m4 \ > - $(top_srcdir)/gl/m4/mbsinit.m4 \ > - $(top_srcdir)/gl/m4/mbstate_t.m4 $(top_srcdir)/gl/m4/mbtowc.m4 \ > - $(top_srcdir)/gl/m4/memchr.m4 $(top_srcdir)/gl/m4/mktime.m4 \ > - $(top_srcdir)/gl/m4/mmap-anon.m4 \ > - $(top_srcdir)/gl/m4/mountlist.m4 \ > - $(top_srcdir)/gl/m4/msvc-inval.m4 \ > - $(top_srcdir)/gl/m4/msvc-nothrow.m4 \ > - $(top_srcdir)/gl/m4/multiarch.m4 \ > - $(top_srcdir)/gl/m4/netdb_h.m4 \ > - $(top_srcdir)/gl/m4/netinet_in_h.m4 \ > - $(top_srcdir)/gl/m4/nl_langinfo.m4 $(top_srcdir)/gl/m4/nls.m4 \ > - $(top_srcdir)/gl/m4/nocrash.m4 $(top_srcdir)/gl/m4/off_t.m4 \ > - $(top_srcdir)/gl/m4/onceonly.m4 $(top_srcdir)/gl/m4/po.m4 \ > - $(top_srcdir)/gl/m4/printf.m4 $(top_srcdir)/gl/m4/progtest.m4 \ > - $(top_srcdir)/gl/m4/read.m4 $(top_srcdir)/gl/m4/regex.m4 \ > - $(top_srcdir)/gl/m4/safe-read.m4 \ > - $(top_srcdir)/gl/m4/servent.m4 $(top_srcdir)/gl/m4/setenv.m4 \ > - $(top_srcdir)/gl/m4/sha1.m4 $(top_srcdir)/gl/m4/size_max.m4 \ > - $(top_srcdir)/gl/m4/snprintf.m4 \ > - $(top_srcdir)/gl/m4/socketlib.m4 \ > - $(top_srcdir)/gl/m4/sockets.m4 $(top_srcdir)/gl/m4/socklen.m4 \ > - $(top_srcdir)/gl/m4/sockpfaf.m4 $(top_srcdir)/gl/m4/ssize_t.m4 \ > - $(top_srcdir)/gl/m4/stdalign.m4 $(top_srcdir)/gl/m4/stdbool.m4 \ > - $(top_srcdir)/gl/m4/stddef_h.m4 $(top_srcdir)/gl/m4/stdint.m4 \ > - $(top_srcdir)/gl/m4/stdint_h.m4 $(top_srcdir)/gl/m4/stdio_h.m4 \ > - $(top_srcdir)/gl/m4/stdlib_h.m4 $(top_srcdir)/gl/m4/strcase.m4 \ > - $(top_srcdir)/gl/m4/strcasestr.m4 \ > - $(top_srcdir)/gl/m4/strerror.m4 \ > - $(top_srcdir)/gl/m4/string_h.m4 \ > - $(top_srcdir)/gl/m4/strings_h.m4 \ > - $(top_srcdir)/gl/m4/strndup.m4 $(top_srcdir)/gl/m4/strnlen.m4 \ > - $(top_srcdir)/gl/m4/strsep.m4 $(top_srcdir)/gl/m4/strstr.m4 \ > - $(top_srcdir)/gl/m4/sys_socket_h.m4 \ > - $(top_srcdir)/gl/m4/sys_types_h.m4 \ > - $(top_srcdir)/gl/m4/sys_uio_h.m4 \ > - $(top_srcdir)/gl/m4/threadlib.m4 $(top_srcdir)/gl/m4/time_h.m4 \ > - $(top_srcdir)/gl/m4/time_r.m4 $(top_srcdir)/gl/m4/timegm.m4 \ > - $(top_srcdir)/gl/m4/unistd_h.m4 \ > - $(top_srcdir)/gl/m4/vasnprintf.m4 \ > - $(top_srcdir)/gl/m4/vasprintf.m4 \ > - $(top_srcdir)/gl/m4/vsnprintf.m4 \ > - $(top_srcdir)/gl/m4/warn-on-use.m4 \ > - $(top_srcdir)/gl/m4/wchar_h.m4 $(top_srcdir)/gl/m4/wchar_t.m4 \ > - $(top_srcdir)/gl/m4/wcrtomb.m4 $(top_srcdir)/gl/m4/wctype_h.m4 \ > - $(top_srcdir)/gl/m4/wint_t.m4 $(top_srcdir)/gl/m4/xalloc.m4 \ > - $(top_srcdir)/gl/m4/xsize.m4 $(top_srcdir)/gl/m4/xstrndup.m4 \ > - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac > -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ > - $(ACLOCAL_M4) > -mkinstalldirs = $(SHELL) $(top_srcdir)/build-aux/mkinstalldirs > -CONFIG_HEADER = $(top_builddir)/config.h > -CONFIG_CLEAN_FILES = > -CONFIG_CLEAN_VPATH_FILES = > -SOURCES = > -DIST_SOURCES = > -am__can_run_installinfo = \ > - case $$AM_UPDATE_INFO_DIR in \ > - n|no|NO) false;; \ > - *) (install-info --version) >/dev/null 2>&1;; \ > - esac > -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) > -pkglibexecdir = ${libexecdir}/${PACKAGE} > -ACLOCAL = ${SHELL} /tmp/plugins/build-aux/missing --run aclocal-1.11 > -ALLOCA = > -ALLOCA_H = alloca.h > -AMTAR = $${TAR-tar} > -APPLE_UNIVERSAL_BUILD = 0 > -AR = ar > -ARFLAGS = cru > -AUTOCONF = ${SHELL} /tmp/plugins/build-aux/missing --run autoconf > -AUTOHEADER = ${SHELL} /tmp/plugins/build-aux/missing --run autoheader > -AUTOMAKE = ${SHELL} /tmp/plugins/build-aux/missing --run automake-1.11 > -AWK = mawk > -BASENAME = /usr/bin/basename > -BITSIZEOF_PTRDIFF_T = > -BITSIZEOF_SIG_ATOMIC_T = > -BITSIZEOF_SIZE_T = > -BITSIZEOF_WCHAR_T = > -BITSIZEOF_WINT_T = > -CC = gcc > -CCDEPMODE = depmode=gcc3 > -CFLAGS = -g -O2 > -CPP = gcc -E > -CPPFLAGS = > -CYGPATH_W = echo > -DBILIBS = -ldbi > -DEFS = -DHAVE_CONFIG_H > -DEPDIR = .deps > -DEPLIBS = > -DLLTOOL = false > -DSYMUTIL = > -DUMPBIN = > -ECHO_C = > -ECHO_N = -n > -ECHO_T = > -EGREP = /bin/grep -E > -EMULTIHOP_HIDDEN = > -EMULTIHOP_VALUE = > -ENOLINK_HIDDEN = > -ENOLINK_VALUE = > -EOVERFLOW_HIDDEN = > -EOVERFLOW_VALUE = > -ERRNO_H = > -EXEEXT = > -EXTRAS = check_pgsql$(EXEEXT) check_dbi$(EXEEXT) check_radius$(EXEEXT) check_ldap$(EXEEXT) check_ide_smart$(EXEEXT) check_mysql$(EXEEXT) check_mysql_query$(EXEEXT) check_procs check_nagios$(EXEEXT) check_dns$(EXEEXT) check_hpjd check_snmp$(EXEEXT) check_game$(EXEEXT) check_fping$(EXEEXT) check_by_ssh$(EXEEXT) check_swap$(EXEEXT) check_dig$(EXEEXT) check_apt$(EXEEXT) check_nt$(EXEEXT) > -EXTRAS_ROOT = > -EXTRA_NETOBJS = > -EXTRA_TEST = > -FGREP = /bin/grep -F > -FLOAT_H = > -FLOORF_LIBM = -lm > -GETADDRINFO_LIB = > -GETHOSTNAME_LIB = > -GETLOADAVG_LIBS = > -GETOPT_H = getopt.h > -GETTEXT_MACRO_VERSION = 0.18 > -GLIBC21 = yes > -GMSGFMT = /usr/bin/msgfmt > -GMSGFMT_015 = /usr/bin/msgfmt > -GNULIB_ACCEPT = 0 > -GNULIB_ACCEPT4 = 0 > -GNULIB_ACOSF = 0 > -GNULIB_ACOSL = 0 > -GNULIB_ASINF = 0 > -GNULIB_ASINL = 0 > -GNULIB_ATAN2F = 0 > -GNULIB_ATANF = 0 > -GNULIB_ATANL = 0 > -GNULIB_ATOLL = 0 > -GNULIB_BIND = 0 > -GNULIB_BTOWC = 1 > -GNULIB_CALLOC_POSIX = 0 > -GNULIB_CANONICALIZE_FILE_NAME = 0 > -GNULIB_CBRT = 0 > -GNULIB_CBRTF = 0 > -GNULIB_CBRTL = 0 > -GNULIB_CEIL = 0 > -GNULIB_CEILF = 0 > -GNULIB_CEILL = 0 > -GNULIB_CHDIR = 0 > -GNULIB_CHOWN = 0 > -GNULIB_CLOSE = 0 > -GNULIB_CONNECT = 0 > -GNULIB_COPYSIGN = 0 > -GNULIB_COPYSIGNF = 0 > -GNULIB_COPYSIGNL = 0 > -GNULIB_COSF = 0 > -GNULIB_COSHF = 0 > -GNULIB_COSL = 0 > -GNULIB_DPRINTF = 0 > -GNULIB_DUP = 0 > -GNULIB_DUP2 = 0 > -GNULIB_DUP3 = 0 > -GNULIB_DUPLOCALE = 0 > -GNULIB_ENVIRON = 1 > -GNULIB_EUIDACCESS = 0 > -GNULIB_EXP2 = 0 > -GNULIB_EXP2F = 0 > -GNULIB_EXP2L = 0 > -GNULIB_EXPF = 0 > -GNULIB_EXPL = 0 > -GNULIB_EXPM1 = 0 > -GNULIB_EXPM1F = 0 > -GNULIB_EXPM1L = 0 > -GNULIB_FABSF = 0 > -GNULIB_FABSL = 0 > -GNULIB_FACCESSAT = 0 > -GNULIB_FCHDIR = 0 > -GNULIB_FCHOWNAT = 0 > -GNULIB_FCLOSE = 0 > -GNULIB_FDATASYNC = 0 > -GNULIB_FDOPEN = 0 > -GNULIB_FFLUSH = 0 > -GNULIB_FFS = 0 > -GNULIB_FFSL = 0 > -GNULIB_FFSLL = 0 > -GNULIB_FGETC = 1 > -GNULIB_FGETS = 1 > -GNULIB_FLOOR = 0 > -GNULIB_FLOORF = 1 > -GNULIB_FLOORL = 0 > -GNULIB_FMA = 0 > -GNULIB_FMAF = 0 > -GNULIB_FMAL = 0 > -GNULIB_FMOD = 0 > -GNULIB_FMODF = 0 > -GNULIB_FMODL = 0 > -GNULIB_FOPEN = 0 > -GNULIB_FPRINTF = 1 > -GNULIB_FPRINTF_POSIX = 0 > -GNULIB_FPURGE = 0 > -GNULIB_FPUTC = 1 > -GNULIB_FPUTS = 1 > -GNULIB_FREAD = 1 > -GNULIB_FREOPEN = 0 > -GNULIB_FREXP = 0 > -GNULIB_FREXPF = 0 > -GNULIB_FREXPL = 0 > -GNULIB_FSCANF = 1 > -GNULIB_FSEEK = 0 > -GNULIB_FSEEKO = 0 > -GNULIB_FSYNC = 0 > -GNULIB_FTELL = 0 > -GNULIB_FTELLO = 0 > -GNULIB_FTRUNCATE = 0 > -GNULIB_FWRITE = 1 > -GNULIB_GETADDRINFO = 1 > -GNULIB_GETC = 1 > -GNULIB_GETCHAR = 1 > -GNULIB_GETCWD = 0 > -GNULIB_GETDELIM = 0 > -GNULIB_GETDOMAINNAME = 0 > -GNULIB_GETDTABLESIZE = 0 > -GNULIB_GETGROUPS = 0 > -GNULIB_GETHOSTNAME = 1 > -GNULIB_GETLINE = 0 > -GNULIB_GETLOADAVG = 1 > -GNULIB_GETLOGIN = 0 > -GNULIB_GETLOGIN_R = 0 > -GNULIB_GETPAGESIZE = 0 > -GNULIB_GETPEERNAME = 0 > -GNULIB_GETSOCKNAME = 0 > -GNULIB_GETSOCKOPT = 0 > -GNULIB_GETSUBOPT = 0 > -GNULIB_GETUSERSHELL = 0 > -GNULIB_GL_UNISTD_H_GETOPT = 1 > -GNULIB_GRANTPT = 0 > -GNULIB_GROUP_MEMBER = 0 > -GNULIB_HYPOT = 0 > -GNULIB_HYPOTF = 0 > -GNULIB_HYPOTL = 0 > -GNULIB_ILOGB = 0 > -GNULIB_ILOGBF = 0 > -GNULIB_ILOGBL = 0 > -GNULIB_INET_NTOP = 1 > -GNULIB_INET_PTON = 0 > -GNULIB_ISATTY = 0 > -GNULIB_ISFINITE = 0 > -GNULIB_ISINF = 0 > -GNULIB_ISNAN = 0 > -GNULIB_ISNAND = 0 > -GNULIB_ISNANF = 0 > -GNULIB_ISNANL = 0 > -GNULIB_ISWBLANK = 0 > -GNULIB_ISWCTYPE = 0 > -GNULIB_LCHOWN = 0 > -GNULIB_LDEXPF = 0 > -GNULIB_LDEXPL = 0 > -GNULIB_LINK = 0 > -GNULIB_LINKAT = 0 > -GNULIB_LISTEN = 0 > -GNULIB_LOCALECONV = 1 > -GNULIB_LOG = 0 > -GNULIB_LOG10 = 0 > -GNULIB_LOG10F = 0 > -GNULIB_LOG10L = 0 > -GNULIB_LOG1P = 0 > -GNULIB_LOG1PF = 0 > -GNULIB_LOG1PL = 0 > -GNULIB_LOG2 = 0 > -GNULIB_LOG2F = 0 > -GNULIB_LOG2L = 0 > -GNULIB_LOGB = 0 > -GNULIB_LOGBF = 0 > -GNULIB_LOGBL = 0 > -GNULIB_LOGF = 0 > -GNULIB_LOGL = 0 > -GNULIB_LSEEK = 0 > -GNULIB_MALLOC_POSIX = 1 > -GNULIB_MBRLEN = 0 > -GNULIB_MBRTOWC = 1 > -GNULIB_MBSCASECMP = 0 > -GNULIB_MBSCASESTR = 0 > -GNULIB_MBSCHR = 0 > -GNULIB_MBSCSPN = 0 > -GNULIB_MBSINIT = 1 > -GNULIB_MBSLEN = 0 > -GNULIB_MBSNCASECMP = 0 > -GNULIB_MBSNLEN = 0 > -GNULIB_MBSNRTOWCS = 0 > -GNULIB_MBSPBRK = 0 > -GNULIB_MBSPCASECMP = 0 > -GNULIB_MBSRCHR = 0 > -GNULIB_MBSRTOWCS = 0 > -GNULIB_MBSSEP = 0 > -GNULIB_MBSSPN = 0 > -GNULIB_MBSSTR = 0 > -GNULIB_MBSTOK_R = 0 > -GNULIB_MBTOWC = 1 > -GNULIB_MEMCHR = 1 > -GNULIB_MEMMEM = 0 > -GNULIB_MEMPCPY = 0 > -GNULIB_MEMRCHR = 0 > -GNULIB_MKDTEMP = 0 > -GNULIB_MKOSTEMP = 0 > -GNULIB_MKOSTEMPS = 0 > -GNULIB_MKSTEMP = 0 > -GNULIB_MKSTEMPS = 0 > -GNULIB_MKTIME = 1 > -GNULIB_MODF = 0 > -GNULIB_MODFF = 0 > -GNULIB_MODFL = 0 > -GNULIB_NANOSLEEP = 0 > -GNULIB_NL_LANGINFO = 1 > -GNULIB_OBSTACK_PRINTF = 0 > -GNULIB_OBSTACK_PRINTF_POSIX = 0 > -GNULIB_PCLOSE = 0 > -GNULIB_PERROR = 0 > -GNULIB_PIPE = 0 > -GNULIB_PIPE2 = 0 > -GNULIB_POPEN = 0 > -GNULIB_POSIX_OPENPT = 0 > -GNULIB_POWF = 0 > -GNULIB_PREAD = 0 > -GNULIB_PRINTF = 1 > -GNULIB_PRINTF_POSIX = 0 > -GNULIB_PTSNAME = 0 > -GNULIB_PTSNAME_R = 0 > -GNULIB_PUTC = 1 > -GNULIB_PUTCHAR = 1 > -GNULIB_PUTENV = 0 > -GNULIB_PUTS = 1 > -GNULIB_PWRITE = 0 > -GNULIB_RANDOM = 0 > -GNULIB_RANDOM_R = 0 > -GNULIB_RAWMEMCHR = 0 > -GNULIB_READ = 1 > -GNULIB_READLINK = 0 > -GNULIB_READLINKAT = 0 > -GNULIB_REALLOC_POSIX = 0 > -GNULIB_REALPATH = 0 > -GNULIB_RECV = 0 > -GNULIB_RECVFROM = 0 > -GNULIB_REMAINDER = 0 > -GNULIB_REMAINDERF = 0 > -GNULIB_REMAINDERL = 0 > -GNULIB_REMOVE = 0 > -GNULIB_RENAME = 0 > -GNULIB_RENAMEAT = 0 > -GNULIB_RINT = 0 > -GNULIB_RINTF = 0 > -GNULIB_RINTL = 0 > -GNULIB_RMDIR = 0 > -GNULIB_ROUND = 0 > -GNULIB_ROUNDF = 0 > -GNULIB_ROUNDL = 0 > -GNULIB_RPMATCH = 0 > -GNULIB_SCANF = 1 > -GNULIB_SECURE_GETENV = 0 > -GNULIB_SEND = 0 > -GNULIB_SENDTO = 0 > -GNULIB_SETENV = 1 > -GNULIB_SETHOSTNAME = 0 > -GNULIB_SETLOCALE = 0 > -GNULIB_SETSOCKOPT = 0 > -GNULIB_SHUTDOWN = 0 > -GNULIB_SIGNBIT = 0 > -GNULIB_SINF = 0 > -GNULIB_SINHF = 0 > -GNULIB_SINL = 0 > -GNULIB_SLEEP = 0 > -GNULIB_SNPRINTF = 1 > -GNULIB_SOCKET = 0 > -GNULIB_SPRINTF_POSIX = 0 > -GNULIB_SQRTF = 0 > -GNULIB_SQRTL = 0 > -GNULIB_STDIO_H_NONBLOCKING = 0 > -GNULIB_STDIO_H_SIGPIPE = 0 > -GNULIB_STPCPY = 0 > -GNULIB_STPNCPY = 0 > -GNULIB_STRCASESTR = 1 > -GNULIB_STRCHRNUL = 0 > -GNULIB_STRDUP = 0 > -GNULIB_STRERROR = 1 > -GNULIB_STRERROR_R = 0 > -GNULIB_STRNCAT = 0 > -GNULIB_STRNDUP = 1 > -GNULIB_STRNLEN = 1 > -GNULIB_STRPBRK = 0 > -GNULIB_STRPTIME = 0 > -GNULIB_STRSEP = 1 > -GNULIB_STRSIGNAL = 0 > -GNULIB_STRSTR = 1 > -GNULIB_STRTOD = 0 > -GNULIB_STRTOK_R = 0 > -GNULIB_STRTOLL = 0 > -GNULIB_STRTOULL = 0 > -GNULIB_STRVERSCMP = 0 > -GNULIB_SYMLINK = 0 > -GNULIB_SYMLINKAT = 0 > -GNULIB_SYSTEM_POSIX = 0 > -GNULIB_TANF = 0 > -GNULIB_TANHF = 0 > -GNULIB_TANL = 0 > -GNULIB_TIMEGM = 1 > -GNULIB_TIME_R = 1 > -GNULIB_TMPFILE = 0 > -GNULIB_TOWCTRANS = 0 > -GNULIB_TRUNC = 0 > -GNULIB_TRUNCF = 0 > -GNULIB_TRUNCL = 0 > -GNULIB_TTYNAME_R = 0 > -GNULIB_UNISTD_H_NONBLOCKING = 0 > -GNULIB_UNISTD_H_SIGPIPE = 0 > -GNULIB_UNLINK = 0 > -GNULIB_UNLINKAT = 0 > -GNULIB_UNLOCKPT = 0 > -GNULIB_UNSETENV = 1 > -GNULIB_USLEEP = 0 > -GNULIB_VASPRINTF = 1 > -GNULIB_VDPRINTF = 0 > -GNULIB_VFPRINTF = 1 > -GNULIB_VFPRINTF_POSIX = 0 > -GNULIB_VFSCANF = 0 > -GNULIB_VPRINTF = 1 > -GNULIB_VPRINTF_POSIX = 0 > -GNULIB_VSCANF = 0 > -GNULIB_VSNPRINTF = 1 > -GNULIB_VSPRINTF_POSIX = 0 > -GNULIB_WCPCPY = 0 > -GNULIB_WCPNCPY = 0 > -GNULIB_WCRTOMB = 1 > -GNULIB_WCSCASECMP = 0 > -GNULIB_WCSCAT = 0 > -GNULIB_WCSCHR = 0 > -GNULIB_WCSCMP = 0 > -GNULIB_WCSCOLL = 0 > -GNULIB_WCSCPY = 0 > -GNULIB_WCSCSPN = 0 > -GNULIB_WCSDUP = 0 > -GNULIB_WCSLEN = 0 > -GNULIB_WCSNCASECMP = 0 > -GNULIB_WCSNCAT = 0 > -GNULIB_WCSNCMP = 0 > -GNULIB_WCSNCPY = 0 > -GNULIB_WCSNLEN = 0 > -GNULIB_WCSNRTOMBS = 0 > -GNULIB_WCSPBRK = 0 > -GNULIB_WCSRCHR = 0 > -GNULIB_WCSRTOMBS = 0 > -GNULIB_WCSSPN = 0 > -GNULIB_WCSSTR = 0 > -GNULIB_WCSTOK = 0 > -GNULIB_WCSWIDTH = 0 > -GNULIB_WCSXFRM = 0 > -GNULIB_WCTOB = 0 > -GNULIB_WCTOMB = 0 > -GNULIB_WCTRANS = 0 > -GNULIB_WCTYPE = 0 > -GNULIB_WCWIDTH = 0 > -GNULIB_WMEMCHR = 0 > -GNULIB_WMEMCMP = 0 > -GNULIB_WMEMCPY = 0 > -GNULIB_WMEMMOVE = 0 > -GNULIB_WMEMSET = 0 > -GNULIB_WRITE = 0 > -GNULIB__EXIT = 0 > -GREP = /bin/grep > -HAVE_ACCEPT4 = 1 > -HAVE_ACOSF = 1 > -HAVE_ACOSL = 1 > -HAVE_ARPA_INET_H = 1 > -HAVE_ASINF = 1 > -HAVE_ASINL = 1 > -HAVE_ATAN2F = 1 > -HAVE_ATANF = 1 > -HAVE_ATANL = 1 > -HAVE_ATOLL = 1 > -HAVE_BTOWC = 1 > -HAVE_CANONICALIZE_FILE_NAME = 1 > -HAVE_CBRT = 1 > -HAVE_CBRTF = 1 > -HAVE_CBRTL = 1 > -HAVE_CHOWN = 1 > -HAVE_COPYSIGN = 1 > -HAVE_COPYSIGNL = 1 > -HAVE_COSF = 1 > -HAVE_COSHF = 1 > -HAVE_COSL = 1 > -HAVE_DECL_ACOSL = 1 > -HAVE_DECL_ASINL = 1 > -HAVE_DECL_ATANL = 1 > -HAVE_DECL_CBRTF = 1 > -HAVE_DECL_CBRTL = 1 > -HAVE_DECL_CEILF = 1 > -HAVE_DECL_CEILL = 1 > -HAVE_DECL_COPYSIGNF = 1 > -HAVE_DECL_COSL = 1 > -HAVE_DECL_ENVIRON = 1 > -HAVE_DECL_EXP2 = 1 > -HAVE_DECL_EXP2F = 1 > -HAVE_DECL_EXP2L = 1 > -HAVE_DECL_EXPL = 1 > -HAVE_DECL_EXPM1L = 1 > -HAVE_DECL_FCHDIR = 1 > -HAVE_DECL_FDATASYNC = 1 > -HAVE_DECL_FLOORF = 1 > -HAVE_DECL_FLOORL = 1 > -HAVE_DECL_FPURGE = 1 > -HAVE_DECL_FREEADDRINFO = 1 > -HAVE_DECL_FREXPL = 1 > -HAVE_DECL_FSEEKO = 1 > -HAVE_DECL_FTELLO = 1 > -HAVE_DECL_GAI_STRERROR = 1 > -HAVE_DECL_GETADDRINFO = 1 > -HAVE_DECL_GETDELIM = 1 > -HAVE_DECL_GETDOMAINNAME = 1 > -HAVE_DECL_GETLINE = 1 > -HAVE_DECL_GETLOADAVG = 1 > -HAVE_DECL_GETLOGIN_R = 1 > -HAVE_DECL_GETNAMEINFO = 1 > -HAVE_DECL_GETPAGESIZE = 1 > -HAVE_DECL_GETUSERSHELL = 1 > -HAVE_DECL_INET_NTOP = 1 > -HAVE_DECL_INET_PTON = 1 > -HAVE_DECL_LDEXPL = 1 > -HAVE_DECL_LOCALTIME_R = 1 > -HAVE_DECL_LOG10L = 1 > -HAVE_DECL_LOG2 = 1 > -HAVE_DECL_LOG2F = 1 > -HAVE_DECL_LOG2L = 1 > -HAVE_DECL_LOGB = 1 > -HAVE_DECL_LOGL = 1 > -HAVE_DECL_MEMMEM = 1 > -HAVE_DECL_MEMRCHR = 1 > -HAVE_DECL_OBSTACK_PRINTF = 1 > -HAVE_DECL_REMAINDER = 1 > -HAVE_DECL_REMAINDERL = 1 > -HAVE_DECL_RINTF = 1 > -HAVE_DECL_ROUND = 1 > -HAVE_DECL_ROUNDF = 1 > -HAVE_DECL_ROUNDL = 1 > -HAVE_DECL_SETENV = 1 > -HAVE_DECL_SETHOSTNAME = 1 > -HAVE_DECL_SINL = 1 > -HAVE_DECL_SNPRINTF = 1 > -HAVE_DECL_SQRTL = 1 > -HAVE_DECL_STRDUP = 1 > -HAVE_DECL_STRERROR_R = 1 > -HAVE_DECL_STRNCASECMP = 1 > -HAVE_DECL_STRNDUP = 1 > -HAVE_DECL_STRNLEN = 1 > -HAVE_DECL_STRSIGNAL = 1 > -HAVE_DECL_STRTOK_R = 1 > -HAVE_DECL_TANL = 1 > -HAVE_DECL_TRUNC = 1 > -HAVE_DECL_TRUNCF = 1 > -HAVE_DECL_TRUNCL = 1 > -HAVE_DECL_TTYNAME_R = 1 > -HAVE_DECL_UNSETENV = 1 > -HAVE_DECL_VSNPRINTF = 1 > -HAVE_DECL_WCTOB = 1 > -HAVE_DECL_WCWIDTH = 1 > -HAVE_DPRINTF = 1 > -HAVE_DUP2 = 1 > -HAVE_DUP3 = 1 > -HAVE_DUPLOCALE = 1 > -HAVE_EUIDACCESS = 1 > -HAVE_EXPF = 1 > -HAVE_EXPL = 1 > -HAVE_EXPM1 = 1 > -HAVE_EXPM1F = 1 > -HAVE_FABSF = 1 > -HAVE_FABSL = 1 > -HAVE_FACCESSAT = 1 > -HAVE_FCHDIR = 1 > -HAVE_FCHOWNAT = 1 > -HAVE_FDATASYNC = 1 > -HAVE_FEATURES_H = 1 > -HAVE_FFS = 1 > -HAVE_FFSL = 1 > -HAVE_FFSLL = 1 > -HAVE_FMA = 1 > -HAVE_FMAF = 1 > -HAVE_FMAL = 1 > -HAVE_FMODF = 1 > -HAVE_FMODL = 1 > -HAVE_FREXPF = 1 > -HAVE_FSEEKO = 1 > -HAVE_FSYNC = 1 > -HAVE_FTELLO = 1 > -HAVE_FTRUNCATE = 1 > -HAVE_GETDTABLESIZE = 1 > -HAVE_GETGROUPS = 1 > -HAVE_GETHOSTNAME = 1 > -HAVE_GETLOGIN = 1 > -HAVE_GETOPT_H = 1 > -HAVE_GETPAGESIZE = 1 > -HAVE_GETSUBOPT = 1 > -HAVE_GRANTPT = 1 > -HAVE_GROUP_MEMBER = 1 > -HAVE_HYPOTF = 1 > -HAVE_HYPOTL = 1 > -HAVE_ILOGB = 1 > -HAVE_ILOGBF = 1 > -HAVE_ILOGBL = 1 > -HAVE_INTTYPES_H = 1 > -HAVE_ISNAND = 1 > -HAVE_ISNANF = 1 > -HAVE_ISNANL = 1 > -HAVE_ISWBLANK = 1 > -HAVE_ISWCNTRL = 1 > -HAVE_LANGINFO_CODESET = 1 > -HAVE_LANGINFO_ERA = 1 > -HAVE_LANGINFO_H = 1 > -HAVE_LANGINFO_T_FMT_AMPM = 1 > -HAVE_LANGINFO_YESEXPR = 1 > -HAVE_LCHOWN = 1 > -HAVE_LDEXPF = 1 > -HAVE_LINK = 1 > -HAVE_LINKAT = 1 > -HAVE_LOG10F = 1 > -HAVE_LOG10L = 1 > -HAVE_LOG1P = 1 > -HAVE_LOG1PF = 1 > -HAVE_LOG1PL = 1 > -HAVE_LOGBF = 1 > -HAVE_LOGBL = 1 > -HAVE_LOGF = 1 > -HAVE_LOGL = 1 > -HAVE_LONG_LONG_INT = 1 > -HAVE_MBRLEN = 1 > -HAVE_MBRTOWC = 1 > -HAVE_MBSINIT = 1 > -HAVE_MBSLEN = 0 > -HAVE_MBSNRTOWCS = 1 > -HAVE_MBSRTOWCS = 1 > -HAVE_MEMCHR = 1 > -HAVE_MEMPCPY = 1 > -HAVE_MKDTEMP = 1 > -HAVE_MKOSTEMP = 1 > -HAVE_MKOSTEMPS = 1 > -HAVE_MKSTEMP = 1 > -HAVE_MKSTEMPS = 1 > -HAVE_MODFF = 1 > -HAVE_MODFL = 1 > -HAVE_MSVC_INVALID_PARAMETER_HANDLER = 0 > -HAVE_NANOSLEEP = 1 > -HAVE_NETDB_H = 1 > -HAVE_NETINET_IN_H = > -HAVE_NL_LANGINFO = 1 > -HAVE_OS_H = 0 > -HAVE_PCLOSE = 1 > -HAVE_PIPE = 1 > -HAVE_PIPE2 = 1 > -HAVE_POPEN = 1 > -HAVE_POSIX_OPENPT = 1 > -HAVE_POWF = 1 > -HAVE_PREAD = 1 > -HAVE_PTSNAME = 1 > -HAVE_PTSNAME_R = 1 > -HAVE_PWRITE = 1 > -HAVE_RANDOM = 1 > -HAVE_RANDOM_H = 1 > -HAVE_RANDOM_R = 1 > -HAVE_RAWMEMCHR = 1 > -HAVE_READLINK = 1 > -HAVE_READLINKAT = 1 > -HAVE_REALPATH = 1 > -HAVE_REMAINDER = 1 > -HAVE_REMAINDERF = 1 > -HAVE_RENAMEAT = 1 > -HAVE_RINT = 1 > -HAVE_RINTL = 1 > -HAVE_RPMATCH = 1 > -HAVE_SA_FAMILY_T = 1 > -HAVE_SECURE_GETENV = 1 > -HAVE_SETENV = 1 > -HAVE_SETHOSTNAME = 1 > -HAVE_SIGNED_SIG_ATOMIC_T = > -HAVE_SIGNED_WCHAR_T = > -HAVE_SIGNED_WINT_T = > -HAVE_SINF = 1 > -HAVE_SINHF = 1 > -HAVE_SINL = 1 > -HAVE_SLEEP = 1 > -HAVE_SQRTF = 1 > -HAVE_SQRTL = 1 > -HAVE_STDINT_H = 1 > -HAVE_STPCPY = 1 > -HAVE_STPNCPY = 1 > -HAVE_STRCASECMP = 1 > -HAVE_STRCASESTR = 1 > -HAVE_STRCHRNUL = 1 > -HAVE_STRINGS_H = 1 > -HAVE_STRPBRK = 1 > -HAVE_STRPTIME = 1 > -HAVE_STRSEP = 1 > -HAVE_STRTOD = 1 > -HAVE_STRTOLL = 1 > -HAVE_STRTOULL = 1 > -HAVE_STRUCT_ADDRINFO = 1 > -HAVE_STRUCT_RANDOM_DATA = 1 > -HAVE_STRUCT_SOCKADDR_STORAGE = 1 > -HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY = 1 > -HAVE_STRVERSCMP = 1 > -HAVE_SYMLINK = 1 > -HAVE_SYMLINKAT = 1 > -HAVE_SYS_BITYPES_H = > -HAVE_SYS_INTTYPES_H = > -HAVE_SYS_LOADAVG_H = 0 > -HAVE_SYS_PARAM_H = 0 > -HAVE_SYS_SOCKET_H = 1 > -HAVE_SYS_TYPES_H = 1 > -HAVE_SYS_UIO_H = 1 > -HAVE_TANF = 1 > -HAVE_TANHF = 1 > -HAVE_TANL = 1 > -HAVE_TIMEGM = 1 > -HAVE_UNISTD_H = 1 > -HAVE_UNLINKAT = 1 > -HAVE_UNLOCKPT = 1 > -HAVE_UNSIGNED_LONG_LONG_INT = 1 > -HAVE_USLEEP = 1 > -HAVE_VASPRINTF = 1 > -HAVE_VDPRINTF = 1 > -HAVE_WCHAR_H = 1 > -HAVE_WCHAR_T = 1 > -HAVE_WCPCPY = 1 > -HAVE_WCPNCPY = 1 > -HAVE_WCRTOMB = 1 > -HAVE_WCSCASECMP = 1 > -HAVE_WCSCAT = 1 > -HAVE_WCSCHR = 1 > -HAVE_WCSCMP = 1 > -HAVE_WCSCOLL = 1 > -HAVE_WCSCPY = 1 > -HAVE_WCSCSPN = 1 > -HAVE_WCSDUP = 1 > -HAVE_WCSLEN = 1 > -HAVE_WCSNCASECMP = 1 > -HAVE_WCSNCAT = 1 > -HAVE_WCSNCMP = 1 > -HAVE_WCSNCPY = 1 > -HAVE_WCSNLEN = 1 > -HAVE_WCSNRTOMBS = 1 > -HAVE_WCSPBRK = 1 > -HAVE_WCSRCHR = 1 > -HAVE_WCSRTOMBS = 1 > -HAVE_WCSSPN = 1 > -HAVE_WCSSTR = 1 > -HAVE_WCSTOK = 1 > -HAVE_WCSWIDTH = 1 > -HAVE_WCSXFRM = 1 > -HAVE_WCTRANS_T = 1 > -HAVE_WCTYPE_H = 1 > -HAVE_WCTYPE_T = 1 > -HAVE_WINSOCK2_H = 0 > -HAVE_WINT_T = 1 > -HAVE_WMEMCHR = 1 > -HAVE_WMEMCMP = 1 > -HAVE_WMEMCPY = 1 > -HAVE_WMEMMOVE = 1 > -HAVE_WMEMSET = 1 > -HAVE_WS2TCPIP_H = 0 > -HAVE_XLOCALE_H = 1 > -HAVE__BOOL = 1 > -HAVE__EXIT = 1 > -HOSTENT_LIB = > -HOSTNAME = /bin/hostname > -INCLUDE_NEXT = include_next > -INCLUDE_NEXT_AS_FIRST_DIRECTIVE = include_next > -INET_NTOP_LIB = > -INSTALL = /usr/bin/install -c > -INSTALL_DATA = ${INSTALL} -m 644 > -INSTALL_PROGRAM = ${INSTALL} > -INSTALL_SCRIPT = ${INSTALL} > -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s > -INTLLIBS = > -INTL_MACOSX_LIBS = > -KRBINCLUDE = > -LD = /usr/bin/ld -m elf_x86_64 > -LDAPINCLUDE = -I/usr/include/ldap > -LDAPLIBS = -lldap -llber > -LDFLAGS = -L. > -LIBCURL = > -LIBCURLCFLAGS = > -LIBCURLINCLUDE = > -LIBCURLLIBS = > -LIBCURL_CPPFLAGS = > -LIBGNU_LIBDEPS = > -LIBGNU_LTLIBDEPS = > -LIBICONV = -liconv > -LIBINTL = > -LIBMULTITHREAD = -lpthread > -LIBOBJS = > -LIBPTH = > -LIBPTH_PREFIX = > -LIBS = -lpthread -ldl > -LIBSOCKET = > -LIBTHREAD = > -LIBTOOL = $(SHELL) $(top_builddir)/libtool > -LIPO = > -LN_S = ln -s > -LOCALCHARSET_TESTS_ENVIRONMENT = CHARSETALIASDIR="$(abs_top_builddir)/gl" > -LOCALE_FR = none > -LOCALE_FR_UTF8 = none > -LOCALE_JA = none > -LOCALE_ZH_CN = none > -LTLIBICONV = -liconv > -LTLIBINTL = > -LTLIBMULTITHREAD = -lpthread > -LTLIBOBJS = > -LTLIBPTH = > -LTLIBTHREAD = > -MAINT = > -MAKEINFO = ${SHELL} /tmp/plugins/build-aux/missing --run makeinfo > -MANIFEST_TOOL = : > -MATHLIBS = -lm > -MKDIR_P = /bin/mkdir -p > -MSGFMT = /usr/bin/msgfmt > -MSGFMT_015 = /usr/bin/msgfmt > -MSGMERGE = /usr/bin/msgmerge > -MYSQLCFLAGS = -I/usr/include/mysql -DBIG_JOINS=1 -fno-strict-aliasing -g > -MYSQLINCLUDE = -I/usr/include/mysql > -MYSQLLIBS = -L/usr/lib/x86_64-linux-gnu -lmysqlclient -lpthread -lz -lm -lrt -ldl > -NETINET_IN_H = > -NEXT_ARPA_INET_H = <arpa/inet.h> > -NEXT_AS_FIRST_DIRECTIVE_ARPA_INET_H = <arpa/inet.h> > -NEXT_AS_FIRST_DIRECTIVE_ERRNO_H = > -NEXT_AS_FIRST_DIRECTIVE_FLOAT_H = > -NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = <getopt.h> > -NEXT_AS_FIRST_DIRECTIVE_LANGINFO_H = <langinfo.h> > -NEXT_AS_FIRST_DIRECTIVE_LOCALE_H = <locale.h> > -NEXT_AS_FIRST_DIRECTIVE_MATH_H = <math.h> > -NEXT_AS_FIRST_DIRECTIVE_NETDB_H = <netdb.h> > -NEXT_AS_FIRST_DIRECTIVE_NETINET_IN_H = > -NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = > -NEXT_AS_FIRST_DIRECTIVE_STDINT_H = <stdint.h> > -NEXT_AS_FIRST_DIRECTIVE_STDIO_H = <stdio.h> > -NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = <stdlib.h> > -NEXT_AS_FIRST_DIRECTIVE_STRINGS_H = <strings.h> > -NEXT_AS_FIRST_DIRECTIVE_STRING_H = <string.h> > -NEXT_AS_FIRST_DIRECTIVE_SYS_SOCKET_H = <sys/socket.h> > -NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = <sys/types.h> > -NEXT_AS_FIRST_DIRECTIVE_SYS_UIO_H = <sys/uio.h> > -NEXT_AS_FIRST_DIRECTIVE_TIME_H = <time.h> > -NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = <unistd.h> > -NEXT_AS_FIRST_DIRECTIVE_WCHAR_H = <wchar.h> > -NEXT_AS_FIRST_DIRECTIVE_WCTYPE_H = <wctype.h> > -NEXT_ERRNO_H = > -NEXT_FLOAT_H = > -NEXT_GETOPT_H = <getopt.h> > -NEXT_LANGINFO_H = <langinfo.h> > -NEXT_LOCALE_H = <locale.h> > -NEXT_MATH_H = <math.h> > -NEXT_NETDB_H = <netdb.h> > -NEXT_NETINET_IN_H = > -NEXT_STDDEF_H = > -NEXT_STDINT_H = <stdint.h> > -NEXT_STDIO_H = <stdio.h> > -NEXT_STDLIB_H = <stdlib.h> > -NEXT_STRINGS_H = <strings.h> > -NEXT_STRING_H = <string.h> > -NEXT_SYS_SOCKET_H = <sys/socket.h> > -NEXT_SYS_TYPES_H = <sys/types.h> > -NEXT_SYS_UIO_H = <sys/uio.h> > -NEXT_TIME_H = <time.h> > -NEXT_UNISTD_H = <unistd.h> > -NEXT_WCHAR_H = <wchar.h> > -NEXT_WCTYPE_H = <wctype.h> > -NM = /usr/bin/nm -B > -NMEDIT = > -NP_RELEASE = 2.3 > -OBJDUMP = objdump > -OBJEXT = o > -OTOOL = > -OTOOL64 = > -PACKAGE = monitoring-plugins > -PACKAGE_BUGREPORT = > -PACKAGE_NAME = monitoring-plugins > -PACKAGE_STRING = monitoring-plugins 2.3 > -PACKAGE_TARNAME = monitoring-plugins > -PACKAGE_URL = > -PACKAGE_VERSION = 2.3 > -PATH_SEPARATOR = : > -PATH_TO_APTGET = /usr/bin/apt-get > -PATH_TO_DIG = /usr/bin/dig > -PATH_TO_ENV = /usr/bin/env > -PATH_TO_FPING = /usr/bin/fping > -PATH_TO_FPING6 = /usr/bin/fping6 > -PATH_TO_LMSTAT = > -PATH_TO_LSPS = > -PATH_TO_MAILQ = /usr/bin/mailq > -PATH_TO_NSLOOKUP = /usr/bin/nslookup > -PATH_TO_PING = /bin/ping > -PATH_TO_PING6 = /bin/ping6 > -PATH_TO_PS = /bin/ps > -PATH_TO_QMAIL_QSTAT = /usr/sbin/qmail-qstat > -PATH_TO_QSTAT = > -PATH_TO_QUAKESTAT = /usr/bin/quakestat > -PATH_TO_RPCINFO = /usr/bin/rpcinfo > -PATH_TO_SMBCLIENT = /usr/bin/smbclient > -PATH_TO_SNMPGET = /usr/bin/snmpget > -PATH_TO_SNMPGETNEXT = /usr/bin/snmpgetnext > -PATH_TO_SSH = /usr/bin/ssh > -PATH_TO_SUDO = /usr/bin/sudo > -PATH_TO_SWAP = > -PATH_TO_SWAPINFO = > -PATH_TO_UPTIME = /usr/bin/uptime > -PATH_TO_WHO = > -PERL = /usr/bin/perl > -PERLMODS_DIR = > -PGINCLUDE = -I/usr/include/postgresql > -PGLIBS = -L/lib -lpq -lcrypt > -PKGCONFIG = pkg-config > -PKG_ARCH = unknown > -PLUGIN_TEST = t/check_apt.t t/check_by_ssh.t t/check_cluster.t t/check_curl.t t/check_dbi.t t/check_dig.t t/check_disk.t t/check_dns.t t/check_dummy.t t/check_fping.t t/check_ftp.t t/check_hpjd.t t/check_http.t t/check_imap.t t/check_jabber.t t/check_ldap.t t/check_load.t t/check_mysql.t t/check_mysql_query.t t/check_nagios.t t/check_ntp.t t/check_ping.t t/check_pop.t t/check_procs.t t/check_smtp.t t/check_snmp.t t/check_ssh.t t/check_swap.t t/check_tcp.t t/check_time.t t/check_udp.t t/check_users.t t/negate.t > -POSUB = po > -POW_LIB = > -PRAGMA_COLUMNS = > -PRAGMA_SYSTEM_HEADER = #pragma GCC system_header > -PST3CFLAGS = > -PTHREAD_H_DEFINES_STRUCT_TIMESPEC = 0 > -PTRDIFF_T_SUFFIX = > -RADIUSLIBS = -lfreeradius-client > -RANLIB = ranlib > -RELEASE = 1 > -REPLACE_BTOWC = 0 > -REPLACE_CALLOC = 0 > -REPLACE_CANONICALIZE_FILE_NAME = 0 > -REPLACE_CBRTF = 0 > -REPLACE_CBRTL = 0 > -REPLACE_CEIL = 0 > -REPLACE_CEILF = 0 > -REPLACE_CEILL = 0 > -REPLACE_CHOWN = 0 > -REPLACE_CLOSE = 0 > -REPLACE_DPRINTF = 0 > -REPLACE_DUP = 0 > -REPLACE_DUP2 = 0 > -REPLACE_DUPLOCALE = 0 > -REPLACE_EXP2 = 0 > -REPLACE_EXP2L = 0 > -REPLACE_EXPM1 = 0 > -REPLACE_EXPM1F = 0 > -REPLACE_FABSL = 0 > -REPLACE_FCHOWNAT = 0 > -REPLACE_FCLOSE = 0 > -REPLACE_FDOPEN = 0 > -REPLACE_FFLUSH = 0 > -REPLACE_FLOOR = 0 > -REPLACE_FLOORF = 0 > -REPLACE_FLOORL = 0 > -REPLACE_FMA = 0 > -REPLACE_FMAF = 0 > -REPLACE_FMAL = 0 > -REPLACE_FMOD = 0 > -REPLACE_FMODF = 0 > -REPLACE_FMODL = 0 > -REPLACE_FOPEN = 0 > -REPLACE_FPRINTF = 0 > -REPLACE_FPURGE = 0 > -REPLACE_FREOPEN = 0 > -REPLACE_FREXP = 0 > -REPLACE_FREXPF = 0 > -REPLACE_FREXPL = 0 > -REPLACE_FSEEK = 0 > -REPLACE_FSEEKO = 0 > -REPLACE_FTELL = 0 > -REPLACE_FTELLO = 0 > -REPLACE_FTRUNCATE = 0 > -REPLACE_GAI_STRERROR = 0 > -REPLACE_GETCWD = 0 > -REPLACE_GETDELIM = 0 > -REPLACE_GETDOMAINNAME = 0 > -REPLACE_GETGROUPS = 0 > -REPLACE_GETLINE = 0 > -REPLACE_GETLOGIN_R = 0 > -REPLACE_GETPAGESIZE = 0 > -REPLACE_HUGE_VAL = 0 > -REPLACE_HYPOT = 0 > -REPLACE_HYPOTF = 0 > -REPLACE_HYPOTL = 0 > -REPLACE_ILOGB = 0 > -REPLACE_ILOGBF = 0 > -REPLACE_INET_NTOP = 0 > -REPLACE_INET_PTON = 0 > -REPLACE_ISATTY = 0 > -REPLACE_ISFINITE = 0 > -REPLACE_ISINF = 0 > -REPLACE_ISNAN = 0 > -REPLACE_ISWBLANK = 0 > -REPLACE_ISWCNTRL = 0 > -REPLACE_ITOLD = 0 > -REPLACE_LCHOWN = 0 > -REPLACE_LDEXPL = 0 > -REPLACE_LINK = 0 > -REPLACE_LINKAT = 0 > -REPLACE_LOCALECONV = 0 > -REPLACE_LOCALTIME_R = 0 > -REPLACE_LOG = 0 > -REPLACE_LOG10 = 0 > -REPLACE_LOG10F = 0 > -REPLACE_LOG10L = 0 > -REPLACE_LOG1P = 0 > -REPLACE_LOG1PF = 0 > -REPLACE_LOG1PL = 0 > -REPLACE_LOG2 = 0 > -REPLACE_LOG2F = 0 > -REPLACE_LOG2L = 0 > -REPLACE_LOGB = 0 > -REPLACE_LOGBF = 0 > -REPLACE_LOGBL = 0 > -REPLACE_LOGF = 0 > -REPLACE_LOGL = 0 > -REPLACE_LSEEK = 0 > -REPLACE_MALLOC = 0 > -REPLACE_MBRLEN = 0 > -REPLACE_MBRTOWC = 0 > -REPLACE_MBSINIT = 0 > -REPLACE_MBSNRTOWCS = 0 > -REPLACE_MBSRTOWCS = 0 > -REPLACE_MBSTATE_T = 0 > -REPLACE_MBTOWC = 0 > -REPLACE_MEMCHR = 0 > -REPLACE_MEMMEM = 0 > -REPLACE_MKSTEMP = 0 > -REPLACE_MKTIME = 1 > -REPLACE_MODF = 0 > -REPLACE_MODFF = 0 > -REPLACE_MODFL = 0 > -REPLACE_NAN = 0 > -REPLACE_NANOSLEEP = GNULIB_PORTCHECK > -REPLACE_NL_LANGINFO = 0 > -REPLACE_NULL = 0 > -REPLACE_OBSTACK_PRINTF = 0 > -REPLACE_PERROR = 0 > -REPLACE_POPEN = 0 > -REPLACE_PREAD = 0 > -REPLACE_PRINTF = 0 > -REPLACE_PTSNAME = 0 > -REPLACE_PTSNAME_R = 0 > -REPLACE_PUTENV = 0 > -REPLACE_PWRITE = 0 > -REPLACE_RANDOM_R = 0 > -REPLACE_READ = 0 > -REPLACE_READLINK = 0 > -REPLACE_REALLOC = 0 > -REPLACE_REALPATH = 0 > -REPLACE_REMAINDER = 0 > -REPLACE_REMAINDERF = 0 > -REPLACE_REMAINDERL = 0 > -REPLACE_REMOVE = 0 > -REPLACE_RENAME = 0 > -REPLACE_RENAMEAT = 0 > -REPLACE_RMDIR = 0 > -REPLACE_ROUND = 0 > -REPLACE_ROUNDF = 0 > -REPLACE_ROUNDL = 0 > -REPLACE_SETENV = 0 > -REPLACE_SETLOCALE = 0 > -REPLACE_SIGNBIT = 0 > -REPLACE_SIGNBIT_USING_GCC = 0 > -REPLACE_SLEEP = 0 > -REPLACE_SNPRINTF = 0 > -REPLACE_SPRINTF = 0 > -REPLACE_SQRTL = 0 > -REPLACE_STDIO_READ_FUNCS = 0 > -REPLACE_STDIO_WRITE_FUNCS = 0 > -REPLACE_STPNCPY = 0 > -REPLACE_STRCASESTR = 0 > -REPLACE_STRCHRNUL = 0 > -REPLACE_STRDUP = 0 > -REPLACE_STRERROR = 0 > -REPLACE_STRERROR_R = 0 > -REPLACE_STRNCAT = 0 > -REPLACE_STRNDUP = 0 > -REPLACE_STRNLEN = 0 > -REPLACE_STRSIGNAL = 0 > -REPLACE_STRSTR = 0 > -REPLACE_STRTOD = 0 > -REPLACE_STRTOK_R = 0 > -REPLACE_STRUCT_LCONV = 0 > -REPLACE_SYMLINK = 0 > -REPLACE_TIMEGM = 0 > -REPLACE_TMPFILE = 0 > -REPLACE_TOWLOWER = 0 > -REPLACE_TRUNC = 0 > -REPLACE_TRUNCF = 0 > -REPLACE_TRUNCL = 0 > -REPLACE_TTYNAME_R = 0 > -REPLACE_UNLINK = 0 > -REPLACE_UNLINKAT = 0 > -REPLACE_UNSETENV = 0 > -REPLACE_USLEEP = 0 > -REPLACE_VASPRINTF = 0 > -REPLACE_VDPRINTF = 0 > -REPLACE_VFPRINTF = 0 > -REPLACE_VPRINTF = 0 > -REPLACE_VSNPRINTF = 0 > -REPLACE_VSPRINTF = 0 > -REPLACE_WCRTOMB = 0 > -REPLACE_WCSNRTOMBS = 0 > -REPLACE_WCSRTOMBS = 0 > -REPLACE_WCSWIDTH = 0 > -REPLACE_WCTOB = 0 > -REPLACE_WCTOMB = 0 > -REPLACE_WCWIDTH = 0 > -REPLACE_WRITE = 0 > -REV_DATESTAMP = 2020.12.09.22.48 > -REV_TIMESTAMP = 20201209224822 > -SCRIPT_TEST = t/check_disk_smb.t t/check_file_age.t t/check_ifoperstatus.t t/check_ifstatus.t t/check_rpc.t t/check_uptime.t t/utils.t > -SED = /bin/sed > -SERVENT_LIB = > -SET_MAKE = > -SHELL = /bin/bash > -SIG_ATOMIC_T_SUFFIX = > -SIZE_T_SUFFIX = > -SOCKETLIBS = -lnsl -lresolv > -SSLINCLUDE = -I/usr/include > -SSLLIBS = -lssl -lcrypto > -STDALIGN_H = > -STDBOOL_H = > -STDDEF_H = > -STDINT_H = > -STRIP = strip > -SUPPORT = Send email to help@monitoring-plugins.org if you have questions regarding use\nof this software. To submit patches or suggest improvements, send email to\ndevel@monitoring-plugins.org. Please include version information with all\ncorrespondence (when possible, use output from the --version option of the\nplugin itself).\n > -SYS_TIME_H_DEFINES_STRUCT_TIMESPEC = 0 > -TIME_H_DEFINES_STRUCT_TIMESPEC = 1 > -UNDEFINE_STRTOK_R = 0 > -UNISTD_H_HAVE_WINSOCK2_H = 0 > -UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = 0 > -URIPARSER = > -URIPARSERCFLAGS = > -URIPARSERINCLUDE = > -URIPARSERLIBS = > -URIPARSER_CPPFLAGS = > -USE_NLS = yes > -VERSION = 2.3 > -WARRANTY = The Monitoring Plugins come with ABSOLUTELY NO WARRANTY. You may redistribute\ncopies of the plugins under the terms of the GNU General Public License.\nFor more information about these matters, see the file named COPYING.\n > -WCHAR_T_SUFFIX = > -WINDOWS_64_BIT_OFF_T = 0 > -WINT_T_SUFFIX = > -WTSAPI32LIBS = > -XGETTEXT = /usr/bin/xgettext > -XGETTEXT_015 = /usr/bin/xgettext > -XGETTEXT_EXTRA_OPTIONS = --flag=error:3:c-format --flag=error_at_line:5:c-format --flag=asprintf:2:c-format --flag=vasprintf:2:c-format > -_libcurl_config = > -abs_builddir = /tmp/plugins/perlmods > -abs_srcdir = /tmp/plugins/perlmods > -abs_top_builddir = /tmp/plugins > -abs_top_srcdir = /tmp/plugins > -ac_ct_AR = ar > -ac_ct_CC = gcc > -ac_ct_DUMPBIN = > -am__include = include > -am__leading_dot = . > -am__quote = > -am__tar = $${TAR-tar} chof - "$$tardir" > -am__untar = $${TAR-tar} xf - > -bindir = ${exec_prefix}/bin > -build = x86_64-unknown-linux-gnu > -build_alias = > -build_cpu = x86_64 > -build_os = linux-gnu > -build_vendor = unknown > -builddir = . > -check_tcp_ssl = check_simap check_spop check_jabber check_nntps check_ssmtp > -datadir = ${datarootdir} > -datarootdir = ${prefix}/share > -docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} > -dvidir = ${docdir} > -exec_prefix = ${prefix} > -gl_LIBOBJS = asnprintf.o fsusage.o getopt.o getopt1.o mktime.o mountlist.o printf-args.o printf-parse.o vasnprintf.o > -gl_LTLIBOBJS = asnprintf.lo fsusage.lo getopt.lo getopt1.lo mktime.lo mountlist.lo printf-args.lo printf-parse.lo vasnprintf.lo > -gltests_LIBOBJS = > -gltests_LTLIBOBJS = > -gltests_WITNESS = IN_MONITORING_PLUGINS_GNULIB_TESTS > -host = x86_64-unknown-linux-gnu > -host_alias = > -host_cpu = x86_64 > -host_os = linux-gnu > -host_vendor = unknown > -htmldir = ${docdir} > -includedir = ${prefix}/include > -infodir = ${datarootdir}/info > -install_sh = ${SHELL} /tmp/plugins/build-aux/install-sh > -libdir = ${exec_prefix}/lib > -libexecdir = ${exec_prefix}/libexec > -lispdir = ${datarootdir}/emacs/site-lisp > -localedir = ${datarootdir}/locale > -localstatedir = ${prefix}/var > -mandir = ${datarootdir}/man > -mkdir_p = /bin/mkdir -p > -np_mysql_config = /usr/bin/mysql_config > -oldincludedir = /usr/include > -pdfdir = ${docdir} > -prefix = /usr/local > -program_transform_name = s,x,x, > -psdir = ${docdir} > -sbindir = ${exec_prefix}/sbin > -sharedstatedir = ${prefix}/com > -srcdir = . > -sysconfdir = ${prefix}/etc > -target_alias = > -top_build_prefix = ../ > -top_builddir = .. > -top_srcdir = .. > -with_trusted_path = /usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin > -perlmoduledir = $(exec_prefix)/perl > -all: all-am > - > -.SUFFIXES: > -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) > - @for dep in $?; do \ > - case '$(am__configure_deps)' in \ > - *$$dep*) \ > - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ > - && { if test -f $@; then exit 0; else break; fi; }; \ > - exit 1;; \ > - esac; \ > - done; \ > - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu perlmods/Makefile'; \ > - $(am__cd) $(top_srcdir) && \ > - $(AUTOMAKE) --gnu perlmods/Makefile > -.PRECIOUS: Makefile > -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status > - @case '$?' in \ > - *config.status*) \ > - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ > - *) \ > - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ > - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ > - esac; > - > -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) > - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh > - > -$(top_srcdir)/configure: $(am__configure_deps) > - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh > -$(ACLOCAL_M4): $(am__aclocal_m4_deps) > - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh > -$(am__aclocal_m4_deps): > - > -mostlyclean-libtool: > - -rm -f *.lo > - > -clean-libtool: > - -rm -rf .libs _libs > -tags: TAGS > -TAGS: > - > -ctags: CTAGS > -CTAGS: > - > - > -distdir: $(DISTFILES) > - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ > - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ > - list='$(DISTFILES)'; \ > - dist_files=`for file in $$list; do echo $$file; done | \ > - sed -e "s|^$$srcdirstrip/||;t" \ > - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ > - case $$dist_files in \ > - */*) $(MKDIR_P) `echo "$$dist_files" | \ > - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ > - sort -u` ;; \ > - esac; \ > - for file in $$dist_files; do \ > - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ > - if test -d $$d/$$file; then \ > - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ > - if test -d "$(distdir)/$$file"; then \ > - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ > - fi; \ > - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ > - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ > - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ > - fi; \ > - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ > - else \ > - test -f "$(distdir)/$$file" \ > - || cp -p $$d/$$file "$(distdir)/$$file" \ > - || exit 1; \ > - fi; \ > - done > -check-am: all-am > -check: check-am > -all-am: Makefile all-local > -installdirs: > -install: install-am > -install-exec: install-exec-am > -install-data: install-data-am > -uninstall: uninstall-am > - > -install-am: all-am > - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am > - > -installcheck: installcheck-am > -install-strip: > - if test -z '$(STRIP)'; then \ > - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ > - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ > - install; \ > - else \ > - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ > - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ > - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ > - fi > -mostlyclean-generic: > - > -clean-generic: > - > -distclean-generic: > - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) > - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) > - > -maintainer-clean-generic: > - @echo "This command is intended for maintainers to use" > - @echo "it deletes files that may require special tools to rebuild." > -clean: clean-am > - > -clean-am: clean-generic clean-libtool clean-local mostlyclean-am > - > -distclean: distclean-am > - -rm -f Makefile > -distclean-am: clean-am distclean-generic > - > -dvi: dvi-am > - > -dvi-am: > - > -html: html-am > - > -html-am: > - > -info: info-am > - > -info-am: > - > -install-data-am: > - > -install-dvi: install-dvi-am > - > -install-dvi-am: > - > -install-exec-am: install-exec-local > - > -install-html: install-html-am > - > -install-html-am: > - > -install-info: install-info-am > - > -install-info-am: > - > -install-man: > - > -install-pdf: install-pdf-am > - > -install-pdf-am: > - > -install-ps: install-ps-am > - > -install-ps-am: > - > -installcheck-am: > - > -maintainer-clean: maintainer-clean-am > - -rm -f Makefile > -maintainer-clean-am: distclean-am maintainer-clean-generic > - > -mostlyclean: mostlyclean-am > - > -mostlyclean-am: mostlyclean-generic mostlyclean-libtool > - > -pdf: pdf-am > - > -pdf-am: > - > -ps: ps-am > - > -ps-am: > - > -uninstall-am: > - > -.MAKE: install-am install-strip > - > -.PHONY: all all-am all-local check check-am clean clean-generic \ > - clean-libtool clean-local distclean distclean-generic \ > - distclean-libtool distdir dvi dvi-am html html-am info info-am \ > - install install-am install-data install-data-am install-dvi \ > - install-dvi-am install-exec install-exec-am install-exec-local \ > - install-html install-html-am install-info install-info-am \ > - install-man install-pdf install-pdf-am install-ps \ > - install-ps-am install-strip installcheck installcheck-am \ > - installdirs maintainer-clean maintainer-clean-generic \ > - mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ > - ps ps-am uninstall uninstall-am > - > - > -all-local: > - $(top_srcdir)/tools/build_perl_modules -d $(perlmoduledir) -em . > - > -install-exec-local: > - $(top_srcdir)/tools/build_perl_modules -d $(perlmoduledir) -i . > - > -# Don't run test-debug differently here yet > -test test-debug: > - $(top_srcdir)/tools/build_perl_modules -d $(perlmoduledir) -t . > - > -clean-local: > - $(top_srcdir)/tools/build_perl_modules -d $(perlmoduledir) -c . > - > -# Tell versions [3.59,3.63) of GNU make to not export all variables. > -# Otherwise a system limit (for SysV at least) may be exceeded. > -.NOEXPORT: > diff -Nru monitoring-plugins-2.3/perlmods/Makefile.am monitoring-plugins-2.3.1/perlmods/Makefile.am > --- monitoring-plugins-2.3/perlmods/Makefile.am 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/perlmods/Makefile.am 1970-01-01 01:00:00.000000000 +0100 > @@ -1,14 +0,0 @@ > -perlmoduledir = $(exec_prefix)/perl > - > -all-local: > - $(top_srcdir)/tools/build_perl_modules -d $(perlmoduledir) -em . > - > -install-exec-local: > - $(top_srcdir)/tools/build_perl_modules -d $(perlmoduledir) -i . > - > -# Don't run test-debug differently here yet > -test test-debug: > - $(top_srcdir)/tools/build_perl_modules -d $(perlmoduledir) -t . > - > -clean-local: > - $(top_srcdir)/tools/build_perl_modules -d $(perlmoduledir) -c . > diff -Nru monitoring-plugins-2.3/perlmods/Makefile.in monitoring-plugins-2.3.1/perlmods/Makefile.in > --- monitoring-plugins-2.3/perlmods/Makefile.in 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/perlmods/Makefile.in 1970-01-01 01:00:00.000000000 +0100 > @@ -1,1514 +0,0 @@ > -# Makefile.in generated by automake 1.11.6 from Makefile.am. > -# @configure_input@ > - > -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, > -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software > -# Foundation, Inc. > -# This Makefile.in is free software; the Free Software Foundation > -# gives unlimited permission to copy and/or distribute it, > -# with or without modifications, as long as this notice is preserved. > - > -# This program is distributed in the hope that it will be useful, > -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without > -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A > -# PARTICULAR PURPOSE. > - > -@SET_MAKE@ > -VPATH = @srcdir@ > -am__make_dryrun = \ > - { \ > - am__dry=no; \ > - case $$MAKEFLAGS in \ > - *\\[\ \ ]*) \ > - echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ > - | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ > - *) \ > - for am__flg in $$MAKEFLAGS; do \ > - case $$am__flg in \ > - *=*|--*) ;; \ > - *n*) am__dry=yes; break;; \ > - esac; \ > - done;; \ > - esac; \ > - test $$am__dry = yes; \ > - } > -pkgdatadir = $(datadir)/@PACKAGE@ > -pkgincludedir = $(includedir)/@PACKAGE@ > -pkglibdir = $(libdir)/@PACKAGE@ > -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd > -install_sh_DATA = $(install_sh) -c -m 644 > -install_sh_PROGRAM = $(install_sh) -c > -install_sh_SCRIPT = $(install_sh) -c > -INSTALL_HEADER = $(INSTALL_DATA) > -transform = $(program_transform_name) > -NORMAL_INSTALL = : > -PRE_INSTALL = : > -POST_INSTALL = : > -NORMAL_UNINSTALL = : > -PRE_UNINSTALL = : > -POST_UNINSTALL = : > -build_triplet = @build@ > -host_triplet = @host@ > -subdir = perlmods > -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in > -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 > -am__aclocal_m4_deps = $(top_srcdir)/m4/libcurl.m4 \ > - $(top_srcdir)/m4/np_mysqlclient.m4 \ > - $(top_srcdir)/m4/uriparser.m4 $(top_srcdir)/gl/m4/00gnulib.m4 \ > - $(top_srcdir)/gl/m4/alloca.m4 \ > - $(top_srcdir)/gl/m4/arpa_inet_h.m4 \ > - $(top_srcdir)/gl/m4/base64.m4 $(top_srcdir)/gl/m4/btowc.m4 \ > - $(top_srcdir)/gl/m4/codeset.m4 \ > - $(top_srcdir)/gl/m4/configmake.m4 \ > - $(top_srcdir)/gl/m4/dirname.m4 \ > - $(top_srcdir)/gl/m4/double-slash-root.m4 \ > - $(top_srcdir)/gl/m4/eealloc.m4 $(top_srcdir)/gl/m4/environ.m4 \ > - $(top_srcdir)/gl/m4/errno_h.m4 $(top_srcdir)/gl/m4/error.m4 \ > - $(top_srcdir)/gl/m4/exponentd.m4 \ > - $(top_srcdir)/gl/m4/extensions.m4 \ > - $(top_srcdir)/gl/m4/extern-inline.m4 \ > - $(top_srcdir)/gl/m4/fcntl-o.m4 $(top_srcdir)/gl/m4/float_h.m4 \ > - $(top_srcdir)/gl/m4/floorf.m4 \ > - $(top_srcdir)/gl/m4/fstypename.m4 \ > - $(top_srcdir)/gl/m4/fsusage.m4 \ > - $(top_srcdir)/gl/m4/getaddrinfo.m4 \ > - $(top_srcdir)/gl/m4/gethostname.m4 \ > - $(top_srcdir)/gl/m4/getloadavg.m4 \ > - $(top_srcdir)/gl/m4/getopt.m4 $(top_srcdir)/gl/m4/gettext.m4 \ > - $(top_srcdir)/gl/m4/glibc21.m4 \ > - $(top_srcdir)/gl/m4/gnulib-common.m4 \ > - $(top_srcdir)/gl/m4/gnulib-comp.m4 \ > - $(top_srcdir)/gl/m4/hostent.m4 $(top_srcdir)/gl/m4/iconv.m4 \ > - $(top_srcdir)/gl/m4/idpriv.m4 \ > - $(top_srcdir)/gl/m4/include_next.m4 \ > - $(top_srcdir)/gl/m4/inet_ntop.m4 \ > - $(top_srcdir)/gl/m4/intlmacosx.m4 \ > - $(top_srcdir)/gl/m4/intmax_t.m4 \ > - $(top_srcdir)/gl/m4/inttypes_h.m4 \ > - $(top_srcdir)/gl/m4/langinfo_h.m4 \ > - $(top_srcdir)/gl/m4/largefile.m4 $(top_srcdir)/gl/m4/lib-ld.m4 \ > - $(top_srcdir)/gl/m4/lib-link.m4 \ > - $(top_srcdir)/gl/m4/lib-prefix.m4 \ > - $(top_srcdir)/gl/m4/libtool.m4 \ > - $(top_srcdir)/gl/m4/localcharset.m4 \ > - $(top_srcdir)/gl/m4/locale-fr.m4 \ > - $(top_srcdir)/gl/m4/locale-ja.m4 \ > - $(top_srcdir)/gl/m4/locale-zh.m4 \ > - $(top_srcdir)/gl/m4/locale_h.m4 \ > - $(top_srcdir)/gl/m4/localeconv.m4 $(top_srcdir)/gl/m4/lock.m4 \ > - $(top_srcdir)/gl/m4/longlong.m4 \ > - $(top_srcdir)/gl/m4/ls-mntd-fs.m4 \ > - $(top_srcdir)/gl/m4/ltoptions.m4 \ > - $(top_srcdir)/gl/m4/ltsugar.m4 \ > - $(top_srcdir)/gl/m4/ltversion.m4 \ > - $(top_srcdir)/gl/m4/lt~obsolete.m4 \ > - $(top_srcdir)/gl/m4/malloc.m4 $(top_srcdir)/gl/m4/malloca.m4 \ > - $(top_srcdir)/gl/m4/math_h.m4 $(top_srcdir)/gl/m4/mbrtowc.m4 \ > - $(top_srcdir)/gl/m4/mbsinit.m4 \ > - $(top_srcdir)/gl/m4/mbstate_t.m4 $(top_srcdir)/gl/m4/mbtowc.m4 \ > - $(top_srcdir)/gl/m4/memchr.m4 $(top_srcdir)/gl/m4/mktime.m4 \ > - $(top_srcdir)/gl/m4/mmap-anon.m4 \ > - $(top_srcdir)/gl/m4/mountlist.m4 \ > - $(top_srcdir)/gl/m4/msvc-inval.m4 \ > - $(top_srcdir)/gl/m4/msvc-nothrow.m4 \ > - $(top_srcdir)/gl/m4/multiarch.m4 \ > - $(top_srcdir)/gl/m4/netdb_h.m4 \ > - $(top_srcdir)/gl/m4/netinet_in_h.m4 \ > - $(top_srcdir)/gl/m4/nl_langinfo.m4 $(top_srcdir)/gl/m4/nls.m4 \ > - $(top_srcdir)/gl/m4/nocrash.m4 $(top_srcdir)/gl/m4/off_t.m4 \ > - $(top_srcdir)/gl/m4/onceonly.m4 $(top_srcdir)/gl/m4/po.m4 \ > - $(top_srcdir)/gl/m4/printf.m4 $(top_srcdir)/gl/m4/progtest.m4 \ > - $(top_srcdir)/gl/m4/read.m4 $(top_srcdir)/gl/m4/regex.m4 \ > - $(top_srcdir)/gl/m4/safe-read.m4 \ > - $(top_srcdir)/gl/m4/servent.m4 $(top_srcdir)/gl/m4/setenv.m4 \ > - $(top_srcdir)/gl/m4/sha1.m4 $(top_srcdir)/gl/m4/size_max.m4 \ > - $(top_srcdir)/gl/m4/snprintf.m4 \ > - $(top_srcdir)/gl/m4/socketlib.m4 \ > - $(top_srcdir)/gl/m4/sockets.m4 $(top_srcdir)/gl/m4/socklen.m4 \ > - $(top_srcdir)/gl/m4/sockpfaf.m4 $(top_srcdir)/gl/m4/ssize_t.m4 \ > - $(top_srcdir)/gl/m4/stdalign.m4 $(top_srcdir)/gl/m4/stdbool.m4 \ > - $(top_srcdir)/gl/m4/stddef_h.m4 $(top_srcdir)/gl/m4/stdint.m4 \ > - $(top_srcdir)/gl/m4/stdint_h.m4 $(top_srcdir)/gl/m4/stdio_h.m4 \ > - $(top_srcdir)/gl/m4/stdlib_h.m4 $(top_srcdir)/gl/m4/strcase.m4 \ > - $(top_srcdir)/gl/m4/strcasestr.m4 \ > - $(top_srcdir)/gl/m4/strerror.m4 \ > - $(top_srcdir)/gl/m4/string_h.m4 \ > - $(top_srcdir)/gl/m4/strings_h.m4 \ > - $(top_srcdir)/gl/m4/strndup.m4 $(top_srcdir)/gl/m4/strnlen.m4 \ > - $(top_srcdir)/gl/m4/strsep.m4 $(top_srcdir)/gl/m4/strstr.m4 \ > - $(top_srcdir)/gl/m4/sys_socket_h.m4 \ > - $(top_srcdir)/gl/m4/sys_types_h.m4 \ > - $(top_srcdir)/gl/m4/sys_uio_h.m4 \ > - $(top_srcdir)/gl/m4/threadlib.m4 $(top_srcdir)/gl/m4/time_h.m4 \ > - $(top_srcdir)/gl/m4/time_r.m4 $(top_srcdir)/gl/m4/timegm.m4 \ > - $(top_srcdir)/gl/m4/unistd_h.m4 \ > - $(top_srcdir)/gl/m4/vasnprintf.m4 \ > - $(top_srcdir)/gl/m4/vasprintf.m4 \ > - $(top_srcdir)/gl/m4/vsnprintf.m4 \ > - $(top_srcdir)/gl/m4/warn-on-use.m4 \ > - $(top_srcdir)/gl/m4/wchar_h.m4 $(top_srcdir)/gl/m4/wchar_t.m4 \ > - $(top_srcdir)/gl/m4/wcrtomb.m4 $(top_srcdir)/gl/m4/wctype_h.m4 \ > - $(top_srcdir)/gl/m4/wint_t.m4 $(top_srcdir)/gl/m4/xalloc.m4 \ > - $(top_srcdir)/gl/m4/xsize.m4 $(top_srcdir)/gl/m4/xstrndup.m4 \ > - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac > -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ > - $(ACLOCAL_M4) > -mkinstalldirs = $(SHELL) $(top_srcdir)/build-aux/mkinstalldirs > -CONFIG_HEADER = $(top_builddir)/config.h > -CONFIG_CLEAN_FILES = > -CONFIG_CLEAN_VPATH_FILES = > -SOURCES = > -DIST_SOURCES = > -am__can_run_installinfo = \ > - case $$AM_UPDATE_INFO_DIR in \ > - n|no|NO) false;; \ > - *) (install-info --version) >/dev/null 2>&1;; \ > - esac > -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) > -pkglibexecdir = @pkglibexecdir@ > -ACLOCAL = @ACLOCAL@ > -ALLOCA = @ALLOCA@ > -ALLOCA_H = @ALLOCA_H@ > -AMTAR = @AMTAR@ > -APPLE_UNIVERSAL_BUILD = @APPLE_UNIVERSAL_BUILD@ > -AR = @AR@ > -ARFLAGS = @ARFLAGS@ > -AUTOCONF = @AUTOCONF@ > -AUTOHEADER = @AUTOHEADER@ > -AUTOMAKE = @AUTOMAKE@ > -AWK = @AWK@ > -BASENAME = @BASENAME@ > -BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@ > -BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@ > -BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@ > -BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@ > -BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@ > -CC = @CC@ > -CCDEPMODE = @CCDEPMODE@ > -CFLAGS = @CFLAGS@ > -CPP = @CPP@ > -CPPFLAGS = @CPPFLAGS@ > -CYGPATH_W = @CYGPATH_W@ > -DBILIBS = @DBILIBS@ > -DEFS = @DEFS@ > -DEPDIR = @DEPDIR@ > -DEPLIBS = @DEPLIBS@ > -DLLTOOL = @DLLTOOL@ > -DSYMUTIL = @DSYMUTIL@ > -DUMPBIN = @DUMPBIN@ > -ECHO_C = @ECHO_C@ > -ECHO_N = @ECHO_N@ > -ECHO_T = @ECHO_T@ > -EGREP = @EGREP@ > -EMULTIHOP_HIDDEN = @EMULTIHOP_HIDDEN@ > -EMULTIHOP_VALUE = @EMULTIHOP_VALUE@ > -ENOLINK_HIDDEN = @ENOLINK_HIDDEN@ > -ENOLINK_VALUE = @ENOLINK_VALUE@ > -EOVERFLOW_HIDDEN = @EOVERFLOW_HIDDEN@ > -EOVERFLOW_VALUE = @EOVERFLOW_VALUE@ > -ERRNO_H = @ERRNO_H@ > -EXEEXT = @EXEEXT@ > -EXTRAS = @EXTRAS@ > -EXTRAS_ROOT = @EXTRAS_ROOT@ > -EXTRA_NETOBJS = @EXTRA_NETOBJS@ > -EXTRA_TEST = @EXTRA_TEST@ > -FGREP = @FGREP@ > -FLOAT_H = @FLOAT_H@ > -FLOORF_LIBM = @FLOORF_LIBM@ > -GETADDRINFO_LIB = @GETADDRINFO_LIB@ > -GETHOSTNAME_LIB = @GETHOSTNAME_LIB@ > -GETLOADAVG_LIBS = @GETLOADAVG_LIBS@ > -GETOPT_H = @GETOPT_H@ > -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ > -GLIBC21 = @GLIBC21@ > -GMSGFMT = @GMSGFMT@ > -GMSGFMT_015 = @GMSGFMT_015@ > -GNULIB_ACCEPT = @GNULIB_ACCEPT@ > -GNULIB_ACCEPT4 = @GNULIB_ACCEPT4@ > -GNULIB_ACOSF = @GNULIB_ACOSF@ > -GNULIB_ACOSL = @GNULIB_ACOSL@ > -GNULIB_ASINF = @GNULIB_ASINF@ > -GNULIB_ASINL = @GNULIB_ASINL@ > -GNULIB_ATAN2F = @GNULIB_ATAN2F@ > -GNULIB_ATANF = @GNULIB_ATANF@ > -GNULIB_ATANL = @GNULIB_ATANL@ > -GNULIB_ATOLL = @GNULIB_ATOLL@ > -GNULIB_BIND = @GNULIB_BIND@ > -GNULIB_BTOWC = @GNULIB_BTOWC@ > -GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ > -GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ > -GNULIB_CBRT = @GNULIB_CBRT@ > -GNULIB_CBRTF = @GNULIB_CBRTF@ > -GNULIB_CBRTL = @GNULIB_CBRTL@ > -GNULIB_CEIL = @GNULIB_CEIL@ > -GNULIB_CEILF = @GNULIB_CEILF@ > -GNULIB_CEILL = @GNULIB_CEILL@ > -GNULIB_CHDIR = @GNULIB_CHDIR@ > -GNULIB_CHOWN = @GNULIB_CHOWN@ > -GNULIB_CLOSE = @GNULIB_CLOSE@ > -GNULIB_CONNECT = @GNULIB_CONNECT@ > -GNULIB_COPYSIGN = @GNULIB_COPYSIGN@ > -GNULIB_COPYSIGNF = @GNULIB_COPYSIGNF@ > -GNULIB_COPYSIGNL = @GNULIB_COPYSIGNL@ > -GNULIB_COSF = @GNULIB_COSF@ > -GNULIB_COSHF = @GNULIB_COSHF@ > -GNULIB_COSL = @GNULIB_COSL@ > -GNULIB_DPRINTF = @GNULIB_DPRINTF@ > -GNULIB_DUP = @GNULIB_DUP@ > -GNULIB_DUP2 = @GNULIB_DUP2@ > -GNULIB_DUP3 = @GNULIB_DUP3@ > -GNULIB_DUPLOCALE = @GNULIB_DUPLOCALE@ > -GNULIB_ENVIRON = @GNULIB_ENVIRON@ > -GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ > -GNULIB_EXP2 = @GNULIB_EXP2@ > -GNULIB_EXP2F = @GNULIB_EXP2F@ > -GNULIB_EXP2L = @GNULIB_EXP2L@ > -GNULIB_EXPF = @GNULIB_EXPF@ > -GNULIB_EXPL = @GNULIB_EXPL@ > -GNULIB_EXPM1 = @GNULIB_EXPM1@ > -GNULIB_EXPM1F = @GNULIB_EXPM1F@ > -GNULIB_EXPM1L = @GNULIB_EXPM1L@ > -GNULIB_FABSF = @GNULIB_FABSF@ > -GNULIB_FABSL = @GNULIB_FABSL@ > -GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ > -GNULIB_FCHDIR = @GNULIB_FCHDIR@ > -GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ > -GNULIB_FCLOSE = @GNULIB_FCLOSE@ > -GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ > -GNULIB_FDOPEN = @GNULIB_FDOPEN@ > -GNULIB_FFLUSH = @GNULIB_FFLUSH@ > -GNULIB_FFS = @GNULIB_FFS@ > -GNULIB_FFSL = @GNULIB_FFSL@ > -GNULIB_FFSLL = @GNULIB_FFSLL@ > -GNULIB_FGETC = @GNULIB_FGETC@ > -GNULIB_FGETS = @GNULIB_FGETS@ > -GNULIB_FLOOR = @GNULIB_FLOOR@ > -GNULIB_FLOORF = @GNULIB_FLOORF@ > -GNULIB_FLOORL = @GNULIB_FLOORL@ > -GNULIB_FMA = @GNULIB_FMA@ > -GNULIB_FMAF = @GNULIB_FMAF@ > -GNULIB_FMAL = @GNULIB_FMAL@ > -GNULIB_FMOD = @GNULIB_FMOD@ > -GNULIB_FMODF = @GNULIB_FMODF@ > -GNULIB_FMODL = @GNULIB_FMODL@ > -GNULIB_FOPEN = @GNULIB_FOPEN@ > -GNULIB_FPRINTF = @GNULIB_FPRINTF@ > -GNULIB_FPRINTF_POSIX = @GNULIB_FPRINTF_POSIX@ > -GNULIB_FPURGE = @GNULIB_FPURGE@ > -GNULIB_FPUTC = @GNULIB_FPUTC@ > -GNULIB_FPUTS = @GNULIB_FPUTS@ > -GNULIB_FREAD = @GNULIB_FREAD@ > -GNULIB_FREOPEN = @GNULIB_FREOPEN@ > -GNULIB_FREXP = @GNULIB_FREXP@ > -GNULIB_FREXPF = @GNULIB_FREXPF@ > -GNULIB_FREXPL = @GNULIB_FREXPL@ > -GNULIB_FSCANF = @GNULIB_FSCANF@ > -GNULIB_FSEEK = @GNULIB_FSEEK@ > -GNULIB_FSEEKO = @GNULIB_FSEEKO@ > -GNULIB_FSYNC = @GNULIB_FSYNC@ > -GNULIB_FTELL = @GNULIB_FTELL@ > -GNULIB_FTELLO = @GNULIB_FTELLO@ > -GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ > -GNULIB_FWRITE = @GNULIB_FWRITE@ > -GNULIB_GETADDRINFO = @GNULIB_GETADDRINFO@ > -GNULIB_GETC = @GNULIB_GETC@ > -GNULIB_GETCHAR = @GNULIB_GETCHAR@ > -GNULIB_GETCWD = @GNULIB_GETCWD@ > -GNULIB_GETDELIM = @GNULIB_GETDELIM@ > -GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ > -GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ > -GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ > -GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ > -GNULIB_GETLINE = @GNULIB_GETLINE@ > -GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ > -GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ > -GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ > -GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ > -GNULIB_GETPEERNAME = @GNULIB_GETPEERNAME@ > -GNULIB_GETSOCKNAME = @GNULIB_GETSOCKNAME@ > -GNULIB_GETSOCKOPT = @GNULIB_GETSOCKOPT@ > -GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ > -GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ > -GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ > -GNULIB_GRANTPT = @GNULIB_GRANTPT@ > -GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ > -GNULIB_HYPOT = @GNULIB_HYPOT@ > -GNULIB_HYPOTF = @GNULIB_HYPOTF@ > -GNULIB_HYPOTL = @GNULIB_HYPOTL@ > -GNULIB_ILOGB = @GNULIB_ILOGB@ > -GNULIB_ILOGBF = @GNULIB_ILOGBF@ > -GNULIB_ILOGBL = @GNULIB_ILOGBL@ > -GNULIB_INET_NTOP = @GNULIB_INET_NTOP@ > -GNULIB_INET_PTON = @GNULIB_INET_PTON@ > -GNULIB_ISATTY = @GNULIB_ISATTY@ > -GNULIB_ISFINITE = @GNULIB_ISFINITE@ > -GNULIB_ISINF = @GNULIB_ISINF@ > -GNULIB_ISNAN = @GNULIB_ISNAN@ > -GNULIB_ISNAND = @GNULIB_ISNAND@ > -GNULIB_ISNANF = @GNULIB_ISNANF@ > -GNULIB_ISNANL = @GNULIB_ISNANL@ > -GNULIB_ISWBLANK = @GNULIB_ISWBLANK@ > -GNULIB_ISWCTYPE = @GNULIB_ISWCTYPE@ > -GNULIB_LCHOWN = @GNULIB_LCHOWN@ > -GNULIB_LDEXPF = @GNULIB_LDEXPF@ > -GNULIB_LDEXPL = @GNULIB_LDEXPL@ > -GNULIB_LINK = @GNULIB_LINK@ > -GNULIB_LINKAT = @GNULIB_LINKAT@ > -GNULIB_LISTEN = @GNULIB_LISTEN@ > -GNULIB_LOCALECONV = @GNULIB_LOCALECONV@ > -GNULIB_LOG = @GNULIB_LOG@ > -GNULIB_LOG10 = @GNULIB_LOG10@ > -GNULIB_LOG10F = @GNULIB_LOG10F@ > -GNULIB_LOG10L = @GNULIB_LOG10L@ > -GNULIB_LOG1P = @GNULIB_LOG1P@ > -GNULIB_LOG1PF = @GNULIB_LOG1PF@ > -GNULIB_LOG1PL = @GNULIB_LOG1PL@ > -GNULIB_LOG2 = @GNULIB_LOG2@ > -GNULIB_LOG2F = @GNULIB_LOG2F@ > -GNULIB_LOG2L = @GNULIB_LOG2L@ > -GNULIB_LOGB = @GNULIB_LOGB@ > -GNULIB_LOGBF = @GNULIB_LOGBF@ > -GNULIB_LOGBL = @GNULIB_LOGBL@ > -GNULIB_LOGF = @GNULIB_LOGF@ > -GNULIB_LOGL = @GNULIB_LOGL@ > -GNULIB_LSEEK = @GNULIB_LSEEK@ > -GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ > -GNULIB_MBRLEN = @GNULIB_MBRLEN@ > -GNULIB_MBRTOWC = @GNULIB_MBRTOWC@ > -GNULIB_MBSCASECMP = @GNULIB_MBSCASECMP@ > -GNULIB_MBSCASESTR = @GNULIB_MBSCASESTR@ > -GNULIB_MBSCHR = @GNULIB_MBSCHR@ > -GNULIB_MBSCSPN = @GNULIB_MBSCSPN@ > -GNULIB_MBSINIT = @GNULIB_MBSINIT@ > -GNULIB_MBSLEN = @GNULIB_MBSLEN@ > -GNULIB_MBSNCASECMP = @GNULIB_MBSNCASECMP@ > -GNULIB_MBSNLEN = @GNULIB_MBSNLEN@ > -GNULIB_MBSNRTOWCS = @GNULIB_MBSNRTOWCS@ > -GNULIB_MBSPBRK = @GNULIB_MBSPBRK@ > -GNULIB_MBSPCASECMP = @GNULIB_MBSPCASECMP@ > -GNULIB_MBSRCHR = @GNULIB_MBSRCHR@ > -GNULIB_MBSRTOWCS = @GNULIB_MBSRTOWCS@ > -GNULIB_MBSSEP = @GNULIB_MBSSEP@ > -GNULIB_MBSSPN = @GNULIB_MBSSPN@ > -GNULIB_MBSSTR = @GNULIB_MBSSTR@ > -GNULIB_MBSTOK_R = @GNULIB_MBSTOK_R@ > -GNULIB_MBTOWC = @GNULIB_MBTOWC@ > -GNULIB_MEMCHR = @GNULIB_MEMCHR@ > -GNULIB_MEMMEM = @GNULIB_MEMMEM@ > -GNULIB_MEMPCPY = @GNULIB_MEMPCPY@ > -GNULIB_MEMRCHR = @GNULIB_MEMRCHR@ > -GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ > -GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ > -GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ > -GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ > -GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ > -GNULIB_MKTIME = @GNULIB_MKTIME@ > -GNULIB_MODF = @GNULIB_MODF@ > -GNULIB_MODFF = @GNULIB_MODFF@ > -GNULIB_MODFL = @GNULIB_MODFL@ > -GNULIB_NANOSLEEP = @GNULIB_NANOSLEEP@ > -GNULIB_NL_LANGINFO = @GNULIB_NL_LANGINFO@ > -GNULIB_OBSTACK_PRINTF = @GNULIB_OBSTACK_PRINTF@ > -GNULIB_OBSTACK_PRINTF_POSIX = @GNULIB_OBSTACK_PRINTF_POSIX@ > -GNULIB_PCLOSE = @GNULIB_PCLOSE@ > -GNULIB_PERROR = @GNULIB_PERROR@ > -GNULIB_PIPE = @GNULIB_PIPE@ > -GNULIB_PIPE2 = @GNULIB_PIPE2@ > -GNULIB_POPEN = @GNULIB_POPEN@ > -GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ > -GNULIB_POWF = @GNULIB_POWF@ > -GNULIB_PREAD = @GNULIB_PREAD@ > -GNULIB_PRINTF = @GNULIB_PRINTF@ > -GNULIB_PRINTF_POSIX = @GNULIB_PRINTF_POSIX@ > -GNULIB_PTSNAME = @GNULIB_PTSNAME@ > -GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ > -GNULIB_PUTC = @GNULIB_PUTC@ > -GNULIB_PUTCHAR = @GNULIB_PUTCHAR@ > -GNULIB_PUTENV = @GNULIB_PUTENV@ > -GNULIB_PUTS = @GNULIB_PUTS@ > -GNULIB_PWRITE = @GNULIB_PWRITE@ > -GNULIB_RANDOM = @GNULIB_RANDOM@ > -GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ > -GNULIB_RAWMEMCHR = @GNULIB_RAWMEMCHR@ > -GNULIB_READ = @GNULIB_READ@ > -GNULIB_READLINK = @GNULIB_READLINK@ > -GNULIB_READLINKAT = @GNULIB_READLINKAT@ > -GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ > -GNULIB_REALPATH = @GNULIB_REALPATH@ > -GNULIB_RECV = @GNULIB_RECV@ > -GNULIB_RECVFROM = @GNULIB_RECVFROM@ > -GNULIB_REMAINDER = @GNULIB_REMAINDER@ > -GNULIB_REMAINDERF = @GNULIB_REMAINDERF@ > -GNULIB_REMAINDERL = @GNULIB_REMAINDERL@ > -GNULIB_REMOVE = @GNULIB_REMOVE@ > -GNULIB_RENAME = @GNULIB_RENAME@ > -GNULIB_RENAMEAT = @GNULIB_RENAMEAT@ > -GNULIB_RINT = @GNULIB_RINT@ > -GNULIB_RINTF = @GNULIB_RINTF@ > -GNULIB_RINTL = @GNULIB_RINTL@ > -GNULIB_RMDIR = @GNULIB_RMDIR@ > -GNULIB_ROUND = @GNULIB_ROUND@ > -GNULIB_ROUNDF = @GNULIB_ROUNDF@ > -GNULIB_ROUNDL = @GNULIB_ROUNDL@ > -GNULIB_RPMATCH = @GNULIB_RPMATCH@ > -GNULIB_SCANF = @GNULIB_SCANF@ > -GNULIB_SECURE_GETENV = @GNULIB_SECURE_GETENV@ > -GNULIB_SEND = @GNULIB_SEND@ > -GNULIB_SENDTO = @GNULIB_SENDTO@ > -GNULIB_SETENV = @GNULIB_SETENV@ > -GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ > -GNULIB_SETLOCALE = @GNULIB_SETLOCALE@ > -GNULIB_SETSOCKOPT = @GNULIB_SETSOCKOPT@ > -GNULIB_SHUTDOWN = @GNULIB_SHUTDOWN@ > -GNULIB_SIGNBIT = @GNULIB_SIGNBIT@ > -GNULIB_SINF = @GNULIB_SINF@ > -GNULIB_SINHF = @GNULIB_SINHF@ > -GNULIB_SINL = @GNULIB_SINL@ > -GNULIB_SLEEP = @GNULIB_SLEEP@ > -GNULIB_SNPRINTF = @GNULIB_SNPRINTF@ > -GNULIB_SOCKET = @GNULIB_SOCKET@ > -GNULIB_SPRINTF_POSIX = @GNULIB_SPRINTF_POSIX@ > -GNULIB_SQRTF = @GNULIB_SQRTF@ > -GNULIB_SQRTL = @GNULIB_SQRTL@ > -GNULIB_STDIO_H_NONBLOCKING = @GNULIB_STDIO_H_NONBLOCKING@ > -GNULIB_STDIO_H_SIGPIPE = @GNULIB_STDIO_H_SIGPIPE@ > -GNULIB_STPCPY = @GNULIB_STPCPY@ > -GNULIB_STPNCPY = @GNULIB_STPNCPY@ > -GNULIB_STRCASESTR = @GNULIB_STRCASESTR@ > -GNULIB_STRCHRNUL = @GNULIB_STRCHRNUL@ > -GNULIB_STRDUP = @GNULIB_STRDUP@ > -GNULIB_STRERROR = @GNULIB_STRERROR@ > -GNULIB_STRERROR_R = @GNULIB_STRERROR_R@ > -GNULIB_STRNCAT = @GNULIB_STRNCAT@ > -GNULIB_STRNDUP = @GNULIB_STRNDUP@ > -GNULIB_STRNLEN = @GNULIB_STRNLEN@ > -GNULIB_STRPBRK = @GNULIB_STRPBRK@ > -GNULIB_STRPTIME = @GNULIB_STRPTIME@ > -GNULIB_STRSEP = @GNULIB_STRSEP@ > -GNULIB_STRSIGNAL = @GNULIB_STRSIGNAL@ > -GNULIB_STRSTR = @GNULIB_STRSTR@ > -GNULIB_STRTOD = @GNULIB_STRTOD@ > -GNULIB_STRTOK_R = @GNULIB_STRTOK_R@ > -GNULIB_STRTOLL = @GNULIB_STRTOLL@ > -GNULIB_STRTOULL = @GNULIB_STRTOULL@ > -GNULIB_STRVERSCMP = @GNULIB_STRVERSCMP@ > -GNULIB_SYMLINK = @GNULIB_SYMLINK@ > -GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ > -GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ > -GNULIB_TANF = @GNULIB_TANF@ > -GNULIB_TANHF = @GNULIB_TANHF@ > -GNULIB_TANL = @GNULIB_TANL@ > -GNULIB_TIMEGM = @GNULIB_TIMEGM@ > -GNULIB_TIME_R = @GNULIB_TIME_R@ > -GNULIB_TMPFILE = @GNULIB_TMPFILE@ > -GNULIB_TOWCTRANS = @GNULIB_TOWCTRANS@ > -GNULIB_TRUNC = @GNULIB_TRUNC@ > -GNULIB_TRUNCF = @GNULIB_TRUNCF@ > -GNULIB_TRUNCL = @GNULIB_TRUNCL@ > -GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ > -GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ > -GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ > -GNULIB_UNLINK = @GNULIB_UNLINK@ > -GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ > -GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ > -GNULIB_UNSETENV = @GNULIB_UNSETENV@ > -GNULIB_USLEEP = @GNULIB_USLEEP@ > -GNULIB_VASPRINTF = @GNULIB_VASPRINTF@ > -GNULIB_VDPRINTF = @GNULIB_VDPRINTF@ > -GNULIB_VFPRINTF = @GNULIB_VFPRINTF@ > -GNULIB_VFPRINTF_POSIX = @GNULIB_VFPRINTF_POSIX@ > -GNULIB_VFSCANF = @GNULIB_VFSCANF@ > -GNULIB_VPRINTF = @GNULIB_VPRINTF@ > -GNULIB_VPRINTF_POSIX = @GNULIB_VPRINTF_POSIX@ > -GNULIB_VSCANF = @GNULIB_VSCANF@ > -GNULIB_VSNPRINTF = @GNULIB_VSNPRINTF@ > -GNULIB_VSPRINTF_POSIX = @GNULIB_VSPRINTF_POSIX@ > -GNULIB_WCPCPY = @GNULIB_WCPCPY@ > -GNULIB_WCPNCPY = @GNULIB_WCPNCPY@ > -GNULIB_WCRTOMB = @GNULIB_WCRTOMB@ > -GNULIB_WCSCASECMP = @GNULIB_WCSCASECMP@ > -GNULIB_WCSCAT = @GNULIB_WCSCAT@ > -GNULIB_WCSCHR = @GNULIB_WCSCHR@ > -GNULIB_WCSCMP = @GNULIB_WCSCMP@ > -GNULIB_WCSCOLL = @GNULIB_WCSCOLL@ > -GNULIB_WCSCPY = @GNULIB_WCSCPY@ > -GNULIB_WCSCSPN = @GNULIB_WCSCSPN@ > -GNULIB_WCSDUP = @GNULIB_WCSDUP@ > -GNULIB_WCSLEN = @GNULIB_WCSLEN@ > -GNULIB_WCSNCASECMP = @GNULIB_WCSNCASECMP@ > -GNULIB_WCSNCAT = @GNULIB_WCSNCAT@ > -GNULIB_WCSNCMP = @GNULIB_WCSNCMP@ > -GNULIB_WCSNCPY = @GNULIB_WCSNCPY@ > -GNULIB_WCSNLEN = @GNULIB_WCSNLEN@ > -GNULIB_WCSNRTOMBS = @GNULIB_WCSNRTOMBS@ > -GNULIB_WCSPBRK = @GNULIB_WCSPBRK@ > -GNULIB_WCSRCHR = @GNULIB_WCSRCHR@ > -GNULIB_WCSRTOMBS = @GNULIB_WCSRTOMBS@ > -GNULIB_WCSSPN = @GNULIB_WCSSPN@ > -GNULIB_WCSSTR = @GNULIB_WCSSTR@ > -GNULIB_WCSTOK = @GNULIB_WCSTOK@ > -GNULIB_WCSWIDTH = @GNULIB_WCSWIDTH@ > -GNULIB_WCSXFRM = @GNULIB_WCSXFRM@ > -GNULIB_WCTOB = @GNULIB_WCTOB@ > -GNULIB_WCTOMB = @GNULIB_WCTOMB@ > -GNULIB_WCTRANS = @GNULIB_WCTRANS@ > -GNULIB_WCTYPE = @GNULIB_WCTYPE@ > -GNULIB_WCWIDTH = @GNULIB_WCWIDTH@ > -GNULIB_WMEMCHR = @GNULIB_WMEMCHR@ > -GNULIB_WMEMCMP = @GNULIB_WMEMCMP@ > -GNULIB_WMEMCPY = @GNULIB_WMEMCPY@ > -GNULIB_WMEMMOVE = @GNULIB_WMEMMOVE@ > -GNULIB_WMEMSET = @GNULIB_WMEMSET@ > -GNULIB_WRITE = @GNULIB_WRITE@ > -GNULIB__EXIT = @GNULIB__EXIT@ > -GREP = @GREP@ > -HAVE_ACCEPT4 = @HAVE_ACCEPT4@ > -HAVE_ACOSF = @HAVE_ACOSF@ > -HAVE_ACOSL = @HAVE_ACOSL@ > -HAVE_ARPA_INET_H = @HAVE_ARPA_INET_H@ > -HAVE_ASINF = @HAVE_ASINF@ > -HAVE_ASINL = @HAVE_ASINL@ > -HAVE_ATAN2F = @HAVE_ATAN2F@ > -HAVE_ATANF = @HAVE_ATANF@ > -HAVE_ATANL = @HAVE_ATANL@ > -HAVE_ATOLL = @HAVE_ATOLL@ > -HAVE_BTOWC = @HAVE_BTOWC@ > -HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ > -HAVE_CBRT = @HAVE_CBRT@ > -HAVE_CBRTF = @HAVE_CBRTF@ > -HAVE_CBRTL = @HAVE_CBRTL@ > -HAVE_CHOWN = @HAVE_CHOWN@ > -HAVE_COPYSIGN = @HAVE_COPYSIGN@ > -HAVE_COPYSIGNL = @HAVE_COPYSIGNL@ > -HAVE_COSF = @HAVE_COSF@ > -HAVE_COSHF = @HAVE_COSHF@ > -HAVE_COSL = @HAVE_COSL@ > -HAVE_DECL_ACOSL = @HAVE_DECL_ACOSL@ > -HAVE_DECL_ASINL = @HAVE_DECL_ASINL@ > -HAVE_DECL_ATANL = @HAVE_DECL_ATANL@ > -HAVE_DECL_CBRTF = @HAVE_DECL_CBRTF@ > -HAVE_DECL_CBRTL = @HAVE_DECL_CBRTL@ > -HAVE_DECL_CEILF = @HAVE_DECL_CEILF@ > -HAVE_DECL_CEILL = @HAVE_DECL_CEILL@ > -HAVE_DECL_COPYSIGNF = @HAVE_DECL_COPYSIGNF@ > -HAVE_DECL_COSL = @HAVE_DECL_COSL@ > -HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ > -HAVE_DECL_EXP2 = @HAVE_DECL_EXP2@ > -HAVE_DECL_EXP2F = @HAVE_DECL_EXP2F@ > -HAVE_DECL_EXP2L = @HAVE_DECL_EXP2L@ > -HAVE_DECL_EXPL = @HAVE_DECL_EXPL@ > -HAVE_DECL_EXPM1L = @HAVE_DECL_EXPM1L@ > -HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ > -HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ > -HAVE_DECL_FLOORF = @HAVE_DECL_FLOORF@ > -HAVE_DECL_FLOORL = @HAVE_DECL_FLOORL@ > -HAVE_DECL_FPURGE = @HAVE_DECL_FPURGE@ > -HAVE_DECL_FREEADDRINFO = @HAVE_DECL_FREEADDRINFO@ > -HAVE_DECL_FREXPL = @HAVE_DECL_FREXPL@ > -HAVE_DECL_FSEEKO = @HAVE_DECL_FSEEKO@ > -HAVE_DECL_FTELLO = @HAVE_DECL_FTELLO@ > -HAVE_DECL_GAI_STRERROR = @HAVE_DECL_GAI_STRERROR@ > -HAVE_DECL_GETADDRINFO = @HAVE_DECL_GETADDRINFO@ > -HAVE_DECL_GETDELIM = @HAVE_DECL_GETDELIM@ > -HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ > -HAVE_DECL_GETLINE = @HAVE_DECL_GETLINE@ > -HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ > -HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ > -HAVE_DECL_GETNAMEINFO = @HAVE_DECL_GETNAMEINFO@ > -HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ > -HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ > -HAVE_DECL_INET_NTOP = @HAVE_DECL_INET_NTOP@ > -HAVE_DECL_INET_PTON = @HAVE_DECL_INET_PTON@ > -HAVE_DECL_LDEXPL = @HAVE_DECL_LDEXPL@ > -HAVE_DECL_LOCALTIME_R = @HAVE_DECL_LOCALTIME_R@ > -HAVE_DECL_LOG10L = @HAVE_DECL_LOG10L@ > -HAVE_DECL_LOG2 = @HAVE_DECL_LOG2@ > -HAVE_DECL_LOG2F = @HAVE_DECL_LOG2F@ > -HAVE_DECL_LOG2L = @HAVE_DECL_LOG2L@ > -HAVE_DECL_LOGB = @HAVE_DECL_LOGB@ > -HAVE_DECL_LOGL = @HAVE_DECL_LOGL@ > -HAVE_DECL_MEMMEM = @HAVE_DECL_MEMMEM@ > -HAVE_DECL_MEMRCHR = @HAVE_DECL_MEMRCHR@ > -HAVE_DECL_OBSTACK_PRINTF = @HAVE_DECL_OBSTACK_PRINTF@ > -HAVE_DECL_REMAINDER = @HAVE_DECL_REMAINDER@ > -HAVE_DECL_REMAINDERL = @HAVE_DECL_REMAINDERL@ > -HAVE_DECL_RINTF = @HAVE_DECL_RINTF@ > -HAVE_DECL_ROUND = @HAVE_DECL_ROUND@ > -HAVE_DECL_ROUNDF = @HAVE_DECL_ROUNDF@ > -HAVE_DECL_ROUNDL = @HAVE_DECL_ROUNDL@ > -HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ > -HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ > -HAVE_DECL_SINL = @HAVE_DECL_SINL@ > -HAVE_DECL_SNPRINTF = @HAVE_DECL_SNPRINTF@ > -HAVE_DECL_SQRTL = @HAVE_DECL_SQRTL@ > -HAVE_DECL_STRDUP = @HAVE_DECL_STRDUP@ > -HAVE_DECL_STRERROR_R = @HAVE_DECL_STRERROR_R@ > -HAVE_DECL_STRNCASECMP = @HAVE_DECL_STRNCASECMP@ > -HAVE_DECL_STRNDUP = @HAVE_DECL_STRNDUP@ > -HAVE_DECL_STRNLEN = @HAVE_DECL_STRNLEN@ > -HAVE_DECL_STRSIGNAL = @HAVE_DECL_STRSIGNAL@ > -HAVE_DECL_STRTOK_R = @HAVE_DECL_STRTOK_R@ > -HAVE_DECL_TANL = @HAVE_DECL_TANL@ > -HAVE_DECL_TRUNC = @HAVE_DECL_TRUNC@ > -HAVE_DECL_TRUNCF = @HAVE_DECL_TRUNCF@ > -HAVE_DECL_TRUNCL = @HAVE_DECL_TRUNCL@ > -HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ > -HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ > -HAVE_DECL_VSNPRINTF = @HAVE_DECL_VSNPRINTF@ > -HAVE_DECL_WCTOB = @HAVE_DECL_WCTOB@ > -HAVE_DECL_WCWIDTH = @HAVE_DECL_WCWIDTH@ > -HAVE_DPRINTF = @HAVE_DPRINTF@ > -HAVE_DUP2 = @HAVE_DUP2@ > -HAVE_DUP3 = @HAVE_DUP3@ > -HAVE_DUPLOCALE = @HAVE_DUPLOCALE@ > -HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ > -HAVE_EXPF = @HAVE_EXPF@ > -HAVE_EXPL = @HAVE_EXPL@ > -HAVE_EXPM1 = @HAVE_EXPM1@ > -HAVE_EXPM1F = @HAVE_EXPM1F@ > -HAVE_FABSF = @HAVE_FABSF@ > -HAVE_FABSL = @HAVE_FABSL@ > -HAVE_FACCESSAT = @HAVE_FACCESSAT@ > -HAVE_FCHDIR = @HAVE_FCHDIR@ > -HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ > -HAVE_FDATASYNC = @HAVE_FDATASYNC@ > -HAVE_FEATURES_H = @HAVE_FEATURES_H@ > -HAVE_FFS = @HAVE_FFS@ > -HAVE_FFSL = @HAVE_FFSL@ > -HAVE_FFSLL = @HAVE_FFSLL@ > -HAVE_FMA = @HAVE_FMA@ > -HAVE_FMAF = @HAVE_FMAF@ > -HAVE_FMAL = @HAVE_FMAL@ > -HAVE_FMODF = @HAVE_FMODF@ > -HAVE_FMODL = @HAVE_FMODL@ > -HAVE_FREXPF = @HAVE_FREXPF@ > -HAVE_FSEEKO = @HAVE_FSEEKO@ > -HAVE_FSYNC = @HAVE_FSYNC@ > -HAVE_FTELLO = @HAVE_FTELLO@ > -HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ > -HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ > -HAVE_GETGROUPS = @HAVE_GETGROUPS@ > -HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ > -HAVE_GETLOGIN = @HAVE_GETLOGIN@ > -HAVE_GETOPT_H = @HAVE_GETOPT_H@ > -HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ > -HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ > -HAVE_GRANTPT = @HAVE_GRANTPT@ > -HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ > -HAVE_HYPOTF = @HAVE_HYPOTF@ > -HAVE_HYPOTL = @HAVE_HYPOTL@ > -HAVE_ILOGB = @HAVE_ILOGB@ > -HAVE_ILOGBF = @HAVE_ILOGBF@ > -HAVE_ILOGBL = @HAVE_ILOGBL@ > -HAVE_INTTYPES_H = @HAVE_INTTYPES_H@ > -HAVE_ISNAND = @HAVE_ISNAND@ > -HAVE_ISNANF = @HAVE_ISNANF@ > -HAVE_ISNANL = @HAVE_ISNANL@ > -HAVE_ISWBLANK = @HAVE_ISWBLANK@ > -HAVE_ISWCNTRL = @HAVE_ISWCNTRL@ > -HAVE_LANGINFO_CODESET = @HAVE_LANGINFO_CODESET@ > -HAVE_LANGINFO_ERA = @HAVE_LANGINFO_ERA@ > -HAVE_LANGINFO_H = @HAVE_LANGINFO_H@ > -HAVE_LANGINFO_T_FMT_AMPM = @HAVE_LANGINFO_T_FMT_AMPM@ > -HAVE_LANGINFO_YESEXPR = @HAVE_LANGINFO_YESEXPR@ > -HAVE_LCHOWN = @HAVE_LCHOWN@ > -HAVE_LDEXPF = @HAVE_LDEXPF@ > -HAVE_LINK = @HAVE_LINK@ > -HAVE_LINKAT = @HAVE_LINKAT@ > -HAVE_LOG10F = @HAVE_LOG10F@ > -HAVE_LOG10L = @HAVE_LOG10L@ > -HAVE_LOG1P = @HAVE_LOG1P@ > -HAVE_LOG1PF = @HAVE_LOG1PF@ > -HAVE_LOG1PL = @HAVE_LOG1PL@ > -HAVE_LOGBF = @HAVE_LOGBF@ > -HAVE_LOGBL = @HAVE_LOGBL@ > -HAVE_LOGF = @HAVE_LOGF@ > -HAVE_LOGL = @HAVE_LOGL@ > -HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@ > -HAVE_MBRLEN = @HAVE_MBRLEN@ > -HAVE_MBRTOWC = @HAVE_MBRTOWC@ > -HAVE_MBSINIT = @HAVE_MBSINIT@ > -HAVE_MBSLEN = @HAVE_MBSLEN@ > -HAVE_MBSNRTOWCS = @HAVE_MBSNRTOWCS@ > -HAVE_MBSRTOWCS = @HAVE_MBSRTOWCS@ > -HAVE_MEMCHR = @HAVE_MEMCHR@ > -HAVE_MEMPCPY = @HAVE_MEMPCPY@ > -HAVE_MKDTEMP = @HAVE_MKDTEMP@ > -HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ > -HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ > -HAVE_MKSTEMP = @HAVE_MKSTEMP@ > -HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ > -HAVE_MODFF = @HAVE_MODFF@ > -HAVE_MODFL = @HAVE_MODFL@ > -HAVE_MSVC_INVALID_PARAMETER_HANDLER = @HAVE_MSVC_INVALID_PARAMETER_HANDLER@ > -HAVE_NANOSLEEP = @HAVE_NANOSLEEP@ > -HAVE_NETDB_H = @HAVE_NETDB_H@ > -HAVE_NETINET_IN_H = @HAVE_NETINET_IN_H@ > -HAVE_NL_LANGINFO = @HAVE_NL_LANGINFO@ > -HAVE_OS_H = @HAVE_OS_H@ > -HAVE_PCLOSE = @HAVE_PCLOSE@ > -HAVE_PIPE = @HAVE_PIPE@ > -HAVE_PIPE2 = @HAVE_PIPE2@ > -HAVE_POPEN = @HAVE_POPEN@ > -HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ > -HAVE_POWF = @HAVE_POWF@ > -HAVE_PREAD = @HAVE_PREAD@ > -HAVE_PTSNAME = @HAVE_PTSNAME@ > -HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ > -HAVE_PWRITE = @HAVE_PWRITE@ > -HAVE_RANDOM = @HAVE_RANDOM@ > -HAVE_RANDOM_H = @HAVE_RANDOM_H@ > -HAVE_RANDOM_R = @HAVE_RANDOM_R@ > -HAVE_RAWMEMCHR = @HAVE_RAWMEMCHR@ > -HAVE_READLINK = @HAVE_READLINK@ > -HAVE_READLINKAT = @HAVE_READLINKAT@ > -HAVE_REALPATH = @HAVE_REALPATH@ > -HAVE_REMAINDER = @HAVE_REMAINDER@ > -HAVE_REMAINDERF = @HAVE_REMAINDERF@ > -HAVE_RENAMEAT = @HAVE_RENAMEAT@ > -HAVE_RINT = @HAVE_RINT@ > -HAVE_RINTL = @HAVE_RINTL@ > -HAVE_RPMATCH = @HAVE_RPMATCH@ > -HAVE_SA_FAMILY_T = @HAVE_SA_FAMILY_T@ > -HAVE_SECURE_GETENV = @HAVE_SECURE_GETENV@ > -HAVE_SETENV = @HAVE_SETENV@ > -HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ > -HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@ > -HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@ > -HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@ > -HAVE_SINF = @HAVE_SINF@ > -HAVE_SINHF = @HAVE_SINHF@ > -HAVE_SINL = @HAVE_SINL@ > -HAVE_SLEEP = @HAVE_SLEEP@ > -HAVE_SQRTF = @HAVE_SQRTF@ > -HAVE_SQRTL = @HAVE_SQRTL@ > -HAVE_STDINT_H = @HAVE_STDINT_H@ > -HAVE_STPCPY = @HAVE_STPCPY@ > -HAVE_STPNCPY = @HAVE_STPNCPY@ > -HAVE_STRCASECMP = @HAVE_STRCASECMP@ > -HAVE_STRCASESTR = @HAVE_STRCASESTR@ > -HAVE_STRCHRNUL = @HAVE_STRCHRNUL@ > -HAVE_STRINGS_H = @HAVE_STRINGS_H@ > -HAVE_STRPBRK = @HAVE_STRPBRK@ > -HAVE_STRPTIME = @HAVE_STRPTIME@ > -HAVE_STRSEP = @HAVE_STRSEP@ > -HAVE_STRTOD = @HAVE_STRTOD@ > -HAVE_STRTOLL = @HAVE_STRTOLL@ > -HAVE_STRTOULL = @HAVE_STRTOULL@ > -HAVE_STRUCT_ADDRINFO = @HAVE_STRUCT_ADDRINFO@ > -HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ > -HAVE_STRUCT_SOCKADDR_STORAGE = @HAVE_STRUCT_SOCKADDR_STORAGE@ > -HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY = @HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY@ > -HAVE_STRVERSCMP = @HAVE_STRVERSCMP@ > -HAVE_SYMLINK = @HAVE_SYMLINK@ > -HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ > -HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@ > -HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@ > -HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ > -HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ > -HAVE_SYS_SOCKET_H = @HAVE_SYS_SOCKET_H@ > -HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@ > -HAVE_SYS_UIO_H = @HAVE_SYS_UIO_H@ > -HAVE_TANF = @HAVE_TANF@ > -HAVE_TANHF = @HAVE_TANHF@ > -HAVE_TANL = @HAVE_TANL@ > -HAVE_TIMEGM = @HAVE_TIMEGM@ > -HAVE_UNISTD_H = @HAVE_UNISTD_H@ > -HAVE_UNLINKAT = @HAVE_UNLINKAT@ > -HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ > -HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@ > -HAVE_USLEEP = @HAVE_USLEEP@ > -HAVE_VASPRINTF = @HAVE_VASPRINTF@ > -HAVE_VDPRINTF = @HAVE_VDPRINTF@ > -HAVE_WCHAR_H = @HAVE_WCHAR_H@ > -HAVE_WCHAR_T = @HAVE_WCHAR_T@ > -HAVE_WCPCPY = @HAVE_WCPCPY@ > -HAVE_WCPNCPY = @HAVE_WCPNCPY@ > -HAVE_WCRTOMB = @HAVE_WCRTOMB@ > -HAVE_WCSCASECMP = @HAVE_WCSCASECMP@ > -HAVE_WCSCAT = @HAVE_WCSCAT@ > -HAVE_WCSCHR = @HAVE_WCSCHR@ > -HAVE_WCSCMP = @HAVE_WCSCMP@ > -HAVE_WCSCOLL = @HAVE_WCSCOLL@ > -HAVE_WCSCPY = @HAVE_WCSCPY@ > -HAVE_WCSCSPN = @HAVE_WCSCSPN@ > -HAVE_WCSDUP = @HAVE_WCSDUP@ > -HAVE_WCSLEN = @HAVE_WCSLEN@ > -HAVE_WCSNCASECMP = @HAVE_WCSNCASECMP@ > -HAVE_WCSNCAT = @HAVE_WCSNCAT@ > -HAVE_WCSNCMP = @HAVE_WCSNCMP@ > -HAVE_WCSNCPY = @HAVE_WCSNCPY@ > -HAVE_WCSNLEN = @HAVE_WCSNLEN@ > -HAVE_WCSNRTOMBS = @HAVE_WCSNRTOMBS@ > -HAVE_WCSPBRK = @HAVE_WCSPBRK@ > -HAVE_WCSRCHR = @HAVE_WCSRCHR@ > -HAVE_WCSRTOMBS = @HAVE_WCSRTOMBS@ > -HAVE_WCSSPN = @HAVE_WCSSPN@ > -HAVE_WCSSTR = @HAVE_WCSSTR@ > -HAVE_WCSTOK = @HAVE_WCSTOK@ > -HAVE_WCSWIDTH = @HAVE_WCSWIDTH@ > -HAVE_WCSXFRM = @HAVE_WCSXFRM@ > -HAVE_WCTRANS_T = @HAVE_WCTRANS_T@ > -HAVE_WCTYPE_H = @HAVE_WCTYPE_H@ > -HAVE_WCTYPE_T = @HAVE_WCTYPE_T@ > -HAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@ > -HAVE_WINT_T = @HAVE_WINT_T@ > -HAVE_WMEMCHR = @HAVE_WMEMCHR@ > -HAVE_WMEMCMP = @HAVE_WMEMCMP@ > -HAVE_WMEMCPY = @HAVE_WMEMCPY@ > -HAVE_WMEMMOVE = @HAVE_WMEMMOVE@ > -HAVE_WMEMSET = @HAVE_WMEMSET@ > -HAVE_WS2TCPIP_H = @HAVE_WS2TCPIP_H@ > -HAVE_XLOCALE_H = @HAVE_XLOCALE_H@ > -HAVE__BOOL = @HAVE__BOOL@ > -HAVE__EXIT = @HAVE__EXIT@ > -HOSTENT_LIB = @HOSTENT_LIB@ > -HOSTNAME = @HOSTNAME@ > -INCLUDE_NEXT = @INCLUDE_NEXT@ > -INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ > -INET_NTOP_LIB = @INET_NTOP_LIB@ > -INSTALL = @INSTALL@ > -INSTALL_DATA = @INSTALL_DATA@ > -INSTALL_PROGRAM = @INSTALL_PROGRAM@ > -INSTALL_SCRIPT = @INSTALL_SCRIPT@ > -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ > -INTLLIBS = @INTLLIBS@ > -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ > -KRBINCLUDE = @KRBINCLUDE@ > -LD = @LD@ > -LDAPINCLUDE = @LDAPINCLUDE@ > -LDAPLIBS = @LDAPLIBS@ > -LDFLAGS = @LDFLAGS@ > -LIBCURL = @LIBCURL@ > -LIBCURLCFLAGS = @LIBCURLCFLAGS@ > -LIBCURLINCLUDE = @LIBCURLINCLUDE@ > -LIBCURLLIBS = @LIBCURLLIBS@ > -LIBCURL_CPPFLAGS = @LIBCURL_CPPFLAGS@ > -LIBGNU_LIBDEPS = @LIBGNU_LIBDEPS@ > -LIBGNU_LTLIBDEPS = @LIBGNU_LTLIBDEPS@ > -LIBICONV = @LIBICONV@ > -LIBINTL = @LIBINTL@ > -LIBMULTITHREAD = @LIBMULTITHREAD@ > -LIBOBJS = @LIBOBJS@ > -LIBPTH = @LIBPTH@ > -LIBPTH_PREFIX = @LIBPTH_PREFIX@ > -LIBS = @LIBS@ > -LIBSOCKET = @LIBSOCKET@ > -LIBTHREAD = @LIBTHREAD@ > -LIBTOOL = @LIBTOOL@ > -LIPO = @LIPO@ > -LN_S = @LN_S@ > -LOCALCHARSET_TESTS_ENVIRONMENT = @LOCALCHARSET_TESTS_ENVIRONMENT@ > -LOCALE_FR = @LOCALE_FR@ > -LOCALE_FR_UTF8 = @LOCALE_FR_UTF8@ > -LOCALE_JA = @LOCALE_JA@ > -LOCALE_ZH_CN = @LOCALE_ZH_CN@ > -LTLIBICONV = @LTLIBICONV@ > -LTLIBINTL = @LTLIBINTL@ > -LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ > -LTLIBOBJS = @LTLIBOBJS@ > -LTLIBPTH = @LTLIBPTH@ > -LTLIBTHREAD = @LTLIBTHREAD@ > -MAINT = @MAINT@ > -MAKEINFO = @MAKEINFO@ > -MANIFEST_TOOL = @MANIFEST_TOOL@ > -MATHLIBS = @MATHLIBS@ > -MKDIR_P = @MKDIR_P@ > -MSGFMT = @MSGFMT@ > -MSGFMT_015 = @MSGFMT_015@ > -MSGMERGE = @MSGMERGE@ > -MYSQLCFLAGS = @MYSQLCFLAGS@ > -MYSQLINCLUDE = @MYSQLINCLUDE@ > -MYSQLLIBS = @MYSQLLIBS@ > -NETINET_IN_H = @NETINET_IN_H@ > -NEXT_ARPA_INET_H = @NEXT_ARPA_INET_H@ > -NEXT_AS_FIRST_DIRECTIVE_ARPA_INET_H = @NEXT_AS_FIRST_DIRECTIVE_ARPA_INET_H@ > -NEXT_AS_FIRST_DIRECTIVE_ERRNO_H = @NEXT_AS_FIRST_DIRECTIVE_ERRNO_H@ > -NEXT_AS_FIRST_DIRECTIVE_FLOAT_H = @NEXT_AS_FIRST_DIRECTIVE_FLOAT_H@ > -NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ > -NEXT_AS_FIRST_DIRECTIVE_LANGINFO_H = @NEXT_AS_FIRST_DIRECTIVE_LANGINFO_H@ > -NEXT_AS_FIRST_DIRECTIVE_LOCALE_H = @NEXT_AS_FIRST_DIRECTIVE_LOCALE_H@ > -NEXT_AS_FIRST_DIRECTIVE_MATH_H = @NEXT_AS_FIRST_DIRECTIVE_MATH_H@ > -NEXT_AS_FIRST_DIRECTIVE_NETDB_H = @NEXT_AS_FIRST_DIRECTIVE_NETDB_H@ > -NEXT_AS_FIRST_DIRECTIVE_NETINET_IN_H = @NEXT_AS_FIRST_DIRECTIVE_NETINET_IN_H@ > -NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ > -NEXT_AS_FIRST_DIRECTIVE_STDINT_H = @NEXT_AS_FIRST_DIRECTIVE_STDINT_H@ > -NEXT_AS_FIRST_DIRECTIVE_STDIO_H = @NEXT_AS_FIRST_DIRECTIVE_STDIO_H@ > -NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ > -NEXT_AS_FIRST_DIRECTIVE_STRINGS_H = @NEXT_AS_FIRST_DIRECTIVE_STRINGS_H@ > -NEXT_AS_FIRST_DIRECTIVE_STRING_H = @NEXT_AS_FIRST_DIRECTIVE_STRING_H@ > -NEXT_AS_FIRST_DIRECTIVE_SYS_SOCKET_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_SOCKET_H@ > -NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ > -NEXT_AS_FIRST_DIRECTIVE_SYS_UIO_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_UIO_H@ > -NEXT_AS_FIRST_DIRECTIVE_TIME_H = @NEXT_AS_FIRST_DIRECTIVE_TIME_H@ > -NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ > -NEXT_AS_FIRST_DIRECTIVE_WCHAR_H = @NEXT_AS_FIRST_DIRECTIVE_WCHAR_H@ > -NEXT_AS_FIRST_DIRECTIVE_WCTYPE_H = @NEXT_AS_FIRST_DIRECTIVE_WCTYPE_H@ > -NEXT_ERRNO_H = @NEXT_ERRNO_H@ > -NEXT_FLOAT_H = @NEXT_FLOAT_H@ > -NEXT_GETOPT_H = @NEXT_GETOPT_H@ > -NEXT_LANGINFO_H = @NEXT_LANGINFO_H@ > -NEXT_LOCALE_H = @NEXT_LOCALE_H@ > -NEXT_MATH_H = @NEXT_MATH_H@ > -NEXT_NETDB_H = @NEXT_NETDB_H@ > -NEXT_NETINET_IN_H = @NEXT_NETINET_IN_H@ > -NEXT_STDDEF_H = @NEXT_STDDEF_H@ > -NEXT_STDINT_H = @NEXT_STDINT_H@ > -NEXT_STDIO_H = @NEXT_STDIO_H@ > -NEXT_STDLIB_H = @NEXT_STDLIB_H@ > -NEXT_STRINGS_H = @NEXT_STRINGS_H@ > -NEXT_STRING_H = @NEXT_STRING_H@ > -NEXT_SYS_SOCKET_H = @NEXT_SYS_SOCKET_H@ > -NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ > -NEXT_SYS_UIO_H = @NEXT_SYS_UIO_H@ > -NEXT_TIME_H = @NEXT_TIME_H@ > -NEXT_UNISTD_H = @NEXT_UNISTD_H@ > -NEXT_WCHAR_H = @NEXT_WCHAR_H@ > -NEXT_WCTYPE_H = @NEXT_WCTYPE_H@ > -NM = @NM@ > -NMEDIT = @NMEDIT@ > -NP_RELEASE = @NP_RELEASE@ > -OBJDUMP = @OBJDUMP@ > -OBJEXT = @OBJEXT@ > -OTOOL = @OTOOL@ > -OTOOL64 = @OTOOL64@ > -PACKAGE = @PACKAGE@ > -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ > -PACKAGE_NAME = @PACKAGE_NAME@ > -PACKAGE_STRING = @PACKAGE_STRING@ > -PACKAGE_TARNAME = @PACKAGE_TARNAME@ > -PACKAGE_URL = @PACKAGE_URL@ > -PACKAGE_VERSION = @PACKAGE_VERSION@ > -PATH_SEPARATOR = @PATH_SEPARATOR@ > -PATH_TO_APTGET = @PATH_TO_APTGET@ > -PATH_TO_DIG = @PATH_TO_DIG@ > -PATH_TO_ENV = @PATH_TO_ENV@ > -PATH_TO_FPING = @PATH_TO_FPING@ > -PATH_TO_FPING6 = @PATH_TO_FPING6@ > -PATH_TO_LMSTAT = @PATH_TO_LMSTAT@ > -PATH_TO_LSPS = @PATH_TO_LSPS@ > -PATH_TO_MAILQ = @PATH_TO_MAILQ@ > -PATH_TO_NSLOOKUP = @PATH_TO_NSLOOKUP@ > -PATH_TO_PING = @PATH_TO_PING@ > -PATH_TO_PING6 = @PATH_TO_PING6@ > -PATH_TO_PS = @PATH_TO_PS@ > -PATH_TO_QMAIL_QSTAT = @PATH_TO_QMAIL_QSTAT@ > -PATH_TO_QSTAT = @PATH_TO_QSTAT@ > -PATH_TO_QUAKESTAT = @PATH_TO_QUAKESTAT@ > -PATH_TO_RPCINFO = @PATH_TO_RPCINFO@ > -PATH_TO_SMBCLIENT = @PATH_TO_SMBCLIENT@ > -PATH_TO_SNMPGET = @PATH_TO_SNMPGET@ > -PATH_TO_SNMPGETNEXT = @PATH_TO_SNMPGETNEXT@ > -PATH_TO_SSH = @PATH_TO_SSH@ > -PATH_TO_SUDO = @PATH_TO_SUDO@ > -PATH_TO_SWAP = @PATH_TO_SWAP@ > -PATH_TO_SWAPINFO = @PATH_TO_SWAPINFO@ > -PATH_TO_UPTIME = @PATH_TO_UPTIME@ > -PATH_TO_WHO = @PATH_TO_WHO@ > -PERL = @PERL@ > -PERLMODS_DIR = @PERLMODS_DIR@ > -PGINCLUDE = @PGINCLUDE@ > -PGLIBS = @PGLIBS@ > -PKGCONFIG = @PKGCONFIG@ > -PKG_ARCH = @PKG_ARCH@ > -PLUGIN_TEST = @PLUGIN_TEST@ > -POSUB = @POSUB@ > -POW_LIB = @POW_LIB@ > -PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ > -PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ > -PST3CFLAGS = @PST3CFLAGS@ > -PTHREAD_H_DEFINES_STRUCT_TIMESPEC = @PTHREAD_H_DEFINES_STRUCT_TIMESPEC@ > -PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@ > -RADIUSLIBS = @RADIUSLIBS@ > -RANLIB = @RANLIB@ > -RELEASE = @RELEASE@ > -REPLACE_BTOWC = @REPLACE_BTOWC@ > -REPLACE_CALLOC = @REPLACE_CALLOC@ > -REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ > -REPLACE_CBRTF = @REPLACE_CBRTF@ > -REPLACE_CBRTL = @REPLACE_CBRTL@ > -REPLACE_CEIL = @REPLACE_CEIL@ > -REPLACE_CEILF = @REPLACE_CEILF@ > -REPLACE_CEILL = @REPLACE_CEILL@ > -REPLACE_CHOWN = @REPLACE_CHOWN@ > -REPLACE_CLOSE = @REPLACE_CLOSE@ > -REPLACE_DPRINTF = @REPLACE_DPRINTF@ > -REPLACE_DUP = @REPLACE_DUP@ > -REPLACE_DUP2 = @REPLACE_DUP2@ > -REPLACE_DUPLOCALE = @REPLACE_DUPLOCALE@ > -REPLACE_EXP2 = @REPLACE_EXP2@ > -REPLACE_EXP2L = @REPLACE_EXP2L@ > -REPLACE_EXPM1 = @REPLACE_EXPM1@ > -REPLACE_EXPM1F = @REPLACE_EXPM1F@ > -REPLACE_FABSL = @REPLACE_FABSL@ > -REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ > -REPLACE_FCLOSE = @REPLACE_FCLOSE@ > -REPLACE_FDOPEN = @REPLACE_FDOPEN@ > -REPLACE_FFLUSH = @REPLACE_FFLUSH@ > -REPLACE_FLOOR = @REPLACE_FLOOR@ > -REPLACE_FLOORF = @REPLACE_FLOORF@ > -REPLACE_FLOORL = @REPLACE_FLOORL@ > -REPLACE_FMA = @REPLACE_FMA@ > -REPLACE_FMAF = @REPLACE_FMAF@ > -REPLACE_FMAL = @REPLACE_FMAL@ > -REPLACE_FMOD = @REPLACE_FMOD@ > -REPLACE_FMODF = @REPLACE_FMODF@ > -REPLACE_FMODL = @REPLACE_FMODL@ > -REPLACE_FOPEN = @REPLACE_FOPEN@ > -REPLACE_FPRINTF = @REPLACE_FPRINTF@ > -REPLACE_FPURGE = @REPLACE_FPURGE@ > -REPLACE_FREOPEN = @REPLACE_FREOPEN@ > -REPLACE_FREXP = @REPLACE_FREXP@ > -REPLACE_FREXPF = @REPLACE_FREXPF@ > -REPLACE_FREXPL = @REPLACE_FREXPL@ > -REPLACE_FSEEK = @REPLACE_FSEEK@ > -REPLACE_FSEEKO = @REPLACE_FSEEKO@ > -REPLACE_FTELL = @REPLACE_FTELL@ > -REPLACE_FTELLO = @REPLACE_FTELLO@ > -REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ > -REPLACE_GAI_STRERROR = @REPLACE_GAI_STRERROR@ > -REPLACE_GETCWD = @REPLACE_GETCWD@ > -REPLACE_GETDELIM = @REPLACE_GETDELIM@ > -REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ > -REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ > -REPLACE_GETLINE = @REPLACE_GETLINE@ > -REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ > -REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ > -REPLACE_HUGE_VAL = @REPLACE_HUGE_VAL@ > -REPLACE_HYPOT = @REPLACE_HYPOT@ > -REPLACE_HYPOTF = @REPLACE_HYPOTF@ > -REPLACE_HYPOTL = @REPLACE_HYPOTL@ > -REPLACE_ILOGB = @REPLACE_ILOGB@ > -REPLACE_ILOGBF = @REPLACE_ILOGBF@ > -REPLACE_INET_NTOP = @REPLACE_INET_NTOP@ > -REPLACE_INET_PTON = @REPLACE_INET_PTON@ > -REPLACE_ISATTY = @REPLACE_ISATTY@ > -REPLACE_ISFINITE = @REPLACE_ISFINITE@ > -REPLACE_ISINF = @REPLACE_ISINF@ > -REPLACE_ISNAN = @REPLACE_ISNAN@ > -REPLACE_ISWBLANK = @REPLACE_ISWBLANK@ > -REPLACE_ISWCNTRL = @REPLACE_ISWCNTRL@ > -REPLACE_ITOLD = @REPLACE_ITOLD@ > -REPLACE_LCHOWN = @REPLACE_LCHOWN@ > -REPLACE_LDEXPL = @REPLACE_LDEXPL@ > -REPLACE_LINK = @REPLACE_LINK@ > -REPLACE_LINKAT = @REPLACE_LINKAT@ > -REPLACE_LOCALECONV = @REPLACE_LOCALECONV@ > -REPLACE_LOCALTIME_R = @REPLACE_LOCALTIME_R@ > -REPLACE_LOG = @REPLACE_LOG@ > -REPLACE_LOG10 = @REPLACE_LOG10@ > -REPLACE_LOG10F = @REPLACE_LOG10F@ > -REPLACE_LOG10L = @REPLACE_LOG10L@ > -REPLACE_LOG1P = @REPLACE_LOG1P@ > -REPLACE_LOG1PF = @REPLACE_LOG1PF@ > -REPLACE_LOG1PL = @REPLACE_LOG1PL@ > -REPLACE_LOG2 = @REPLACE_LOG2@ > -REPLACE_LOG2F = @REPLACE_LOG2F@ > -REPLACE_LOG2L = @REPLACE_LOG2L@ > -REPLACE_LOGB = @REPLACE_LOGB@ > -REPLACE_LOGBF = @REPLACE_LOGBF@ > -REPLACE_LOGBL = @REPLACE_LOGBL@ > -REPLACE_LOGF = @REPLACE_LOGF@ > -REPLACE_LOGL = @REPLACE_LOGL@ > -REPLACE_LSEEK = @REPLACE_LSEEK@ > -REPLACE_MALLOC = @REPLACE_MALLOC@ > -REPLACE_MBRLEN = @REPLACE_MBRLEN@ > -REPLACE_MBRTOWC = @REPLACE_MBRTOWC@ > -REPLACE_MBSINIT = @REPLACE_MBSINIT@ > -REPLACE_MBSNRTOWCS = @REPLACE_MBSNRTOWCS@ > -REPLACE_MBSRTOWCS = @REPLACE_MBSRTOWCS@ > -REPLACE_MBSTATE_T = @REPLACE_MBSTATE_T@ > -REPLACE_MBTOWC = @REPLACE_MBTOWC@ > -REPLACE_MEMCHR = @REPLACE_MEMCHR@ > -REPLACE_MEMMEM = @REPLACE_MEMMEM@ > -REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ > -REPLACE_MKTIME = @REPLACE_MKTIME@ > -REPLACE_MODF = @REPLACE_MODF@ > -REPLACE_MODFF = @REPLACE_MODFF@ > -REPLACE_MODFL = @REPLACE_MODFL@ > -REPLACE_NAN = @REPLACE_NAN@ > -REPLACE_NANOSLEEP = @REPLACE_NANOSLEEP@ > -REPLACE_NL_LANGINFO = @REPLACE_NL_LANGINFO@ > -REPLACE_NULL = @REPLACE_NULL@ > -REPLACE_OBSTACK_PRINTF = @REPLACE_OBSTACK_PRINTF@ > -REPLACE_PERROR = @REPLACE_PERROR@ > -REPLACE_POPEN = @REPLACE_POPEN@ > -REPLACE_PREAD = @REPLACE_PREAD@ > -REPLACE_PRINTF = @REPLACE_PRINTF@ > -REPLACE_PTSNAME = @REPLACE_PTSNAME@ > -REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ > -REPLACE_PUTENV = @REPLACE_PUTENV@ > -REPLACE_PWRITE = @REPLACE_PWRITE@ > -REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ > -REPLACE_READ = @REPLACE_READ@ > -REPLACE_READLINK = @REPLACE_READLINK@ > -REPLACE_REALLOC = @REPLACE_REALLOC@ > -REPLACE_REALPATH = @REPLACE_REALPATH@ > -REPLACE_REMAINDER = @REPLACE_REMAINDER@ > -REPLACE_REMAINDERF = @REPLACE_REMAINDERF@ > -REPLACE_REMAINDERL = @REPLACE_REMAINDERL@ > -REPLACE_REMOVE = @REPLACE_REMOVE@ > -REPLACE_RENAME = @REPLACE_RENAME@ > -REPLACE_RENAMEAT = @REPLACE_RENAMEAT@ > -REPLACE_RMDIR = @REPLACE_RMDIR@ > -REPLACE_ROUND = @REPLACE_ROUND@ > -REPLACE_ROUNDF = @REPLACE_ROUNDF@ > -REPLACE_ROUNDL = @REPLACE_ROUNDL@ > -REPLACE_SETENV = @REPLACE_SETENV@ > -REPLACE_SETLOCALE = @REPLACE_SETLOCALE@ > -REPLACE_SIGNBIT = @REPLACE_SIGNBIT@ > -REPLACE_SIGNBIT_USING_GCC = @REPLACE_SIGNBIT_USING_GCC@ > -REPLACE_SLEEP = @REPLACE_SLEEP@ > -REPLACE_SNPRINTF = @REPLACE_SNPRINTF@ > -REPLACE_SPRINTF = @REPLACE_SPRINTF@ > -REPLACE_SQRTL = @REPLACE_SQRTL@ > -REPLACE_STDIO_READ_FUNCS = @REPLACE_STDIO_READ_FUNCS@ > -REPLACE_STDIO_WRITE_FUNCS = @REPLACE_STDIO_WRITE_FUNCS@ > -REPLACE_STPNCPY = @REPLACE_STPNCPY@ > -REPLACE_STRCASESTR = @REPLACE_STRCASESTR@ > -REPLACE_STRCHRNUL = @REPLACE_STRCHRNUL@ > -REPLACE_STRDUP = @REPLACE_STRDUP@ > -REPLACE_STRERROR = @REPLACE_STRERROR@ > -REPLACE_STRERROR_R = @REPLACE_STRERROR_R@ > -REPLACE_STRNCAT = @REPLACE_STRNCAT@ > -REPLACE_STRNDUP = @REPLACE_STRNDUP@ > -REPLACE_STRNLEN = @REPLACE_STRNLEN@ > -REPLACE_STRSIGNAL = @REPLACE_STRSIGNAL@ > -REPLACE_STRSTR = @REPLACE_STRSTR@ > -REPLACE_STRTOD = @REPLACE_STRTOD@ > -REPLACE_STRTOK_R = @REPLACE_STRTOK_R@ > -REPLACE_STRUCT_LCONV = @REPLACE_STRUCT_LCONV@ > -REPLACE_SYMLINK = @REPLACE_SYMLINK@ > -REPLACE_TIMEGM = @REPLACE_TIMEGM@ > -REPLACE_TMPFILE = @REPLACE_TMPFILE@ > -REPLACE_TOWLOWER = @REPLACE_TOWLOWER@ > -REPLACE_TRUNC = @REPLACE_TRUNC@ > -REPLACE_TRUNCF = @REPLACE_TRUNCF@ > -REPLACE_TRUNCL = @REPLACE_TRUNCL@ > -REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ > -REPLACE_UNLINK = @REPLACE_UNLINK@ > -REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ > -REPLACE_UNSETENV = @REPLACE_UNSETENV@ > -REPLACE_USLEEP = @REPLACE_USLEEP@ > -REPLACE_VASPRINTF = @REPLACE_VASPRINTF@ > -REPLACE_VDPRINTF = @REPLACE_VDPRINTF@ > -REPLACE_VFPRINTF = @REPLACE_VFPRINTF@ > -REPLACE_VPRINTF = @REPLACE_VPRINTF@ > -REPLACE_VSNPRINTF = @REPLACE_VSNPRINTF@ > -REPLACE_VSPRINTF = @REPLACE_VSPRINTF@ > -REPLACE_WCRTOMB = @REPLACE_WCRTOMB@ > -REPLACE_WCSNRTOMBS = @REPLACE_WCSNRTOMBS@ > -REPLACE_WCSRTOMBS = @REPLACE_WCSRTOMBS@ > -REPLACE_WCSWIDTH = @REPLACE_WCSWIDTH@ > -REPLACE_WCTOB = @REPLACE_WCTOB@ > -REPLACE_WCTOMB = @REPLACE_WCTOMB@ > -REPLACE_WCWIDTH = @REPLACE_WCWIDTH@ > -REPLACE_WRITE = @REPLACE_WRITE@ > -REV_DATESTAMP = @REV_DATESTAMP@ > -REV_TIMESTAMP = @REV_TIMESTAMP@ > -SCRIPT_TEST = @SCRIPT_TEST@ > -SED = @SED@ > -SERVENT_LIB = @SERVENT_LIB@ > -SET_MAKE = @SET_MAKE@ > -SHELL = @SHELL@ > -SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@ > -SIZE_T_SUFFIX = @SIZE_T_SUFFIX@ > -SOCKETLIBS = @SOCKETLIBS@ > -SSLINCLUDE = @SSLINCLUDE@ > -SSLLIBS = @SSLLIBS@ > -STDALIGN_H = @STDALIGN_H@ > -STDBOOL_H = @STDBOOL_H@ > -STDDEF_H = @STDDEF_H@ > -STDINT_H = @STDINT_H@ > -STRIP = @STRIP@ > -SUPPORT = @SUPPORT@ > -SYS_TIME_H_DEFINES_STRUCT_TIMESPEC = @SYS_TIME_H_DEFINES_STRUCT_TIMESPEC@ > -TIME_H_DEFINES_STRUCT_TIMESPEC = @TIME_H_DEFINES_STRUCT_TIMESPEC@ > -UNDEFINE_STRTOK_R = @UNDEFINE_STRTOK_R@ > -UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ > -UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ > -URIPARSER = @URIPARSER@ > -URIPARSERCFLAGS = @URIPARSERCFLAGS@ > -URIPARSERINCLUDE = @URIPARSERINCLUDE@ > -URIPARSERLIBS = @URIPARSERLIBS@ > -URIPARSER_CPPFLAGS = @URIPARSER_CPPFLAGS@ > -USE_NLS = @USE_NLS@ > -VERSION = @VERSION@ > -WARRANTY = @WARRANTY@ > -WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ > -WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ > -WINT_T_SUFFIX = @WINT_T_SUFFIX@ > -WTSAPI32LIBS = @WTSAPI32LIBS@ > -XGETTEXT = @XGETTEXT@ > -XGETTEXT_015 = @XGETTEXT_015@ > -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ > -_libcurl_config = @_libcurl_config@ > -abs_builddir = @abs_builddir@ > -abs_srcdir = @abs_srcdir@ > -abs_top_builddir = @abs_top_builddir@ > -abs_top_srcdir = @abs_top_srcdir@ > -ac_ct_AR = @ac_ct_AR@ > -ac_ct_CC = @ac_ct_CC@ > -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ > -am__include = @am__include@ > -am__leading_dot = @am__leading_dot@ > -am__quote = @am__quote@ > -am__tar = @am__tar@ > -am__untar = @am__untar@ > -bindir = @bindir@ > -build = @build@ > -build_alias = @build_alias@ > -build_cpu = @build_cpu@ > -build_os = @build_os@ > -build_vendor = @build_vendor@ > -builddir = @builddir@ > -check_tcp_ssl = @check_tcp_ssl@ > -datadir = @datadir@ > -datarootdir = @datarootdir@ > -docdir = @docdir@ > -dvidir = @dvidir@ > -exec_prefix = @exec_prefix@ > -gl_LIBOBJS = @gl_LIBOBJS@ > -gl_LTLIBOBJS = @gl_LTLIBOBJS@ > -gltests_LIBOBJS = @gltests_LIBOBJS@ > -gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ > -gltests_WITNESS = @gltests_WITNESS@ > -host = @host@ > -host_alias = @host_alias@ > -host_cpu = @host_cpu@ > -host_os = @host_os@ > -host_vendor = @host_vendor@ > -htmldir = @htmldir@ > -includedir = @includedir@ > -infodir = @infodir@ > -install_sh = @install_sh@ > -libdir = @libdir@ > -libexecdir = @libexecdir@ > -lispdir = @lispdir@ > -localedir = @localedir@ > -localstatedir = @localstatedir@ > -mandir = @mandir@ > -mkdir_p = @mkdir_p@ > -np_mysql_config = @np_mysql_config@ > -oldincludedir = @oldincludedir@ > -pdfdir = @pdfdir@ > -prefix = @prefix@ > -program_transform_name = @program_transform_name@ > -psdir = @psdir@ > -sbindir = @sbindir@ > -sharedstatedir = @sharedstatedir@ > -srcdir = @srcdir@ > -sysconfdir = @sysconfdir@ > -target_alias = @target_alias@ > -top_build_prefix = @top_build_prefix@ > -top_builddir = @top_builddir@ > -top_srcdir = @top_srcdir@ > -with_trusted_path = @with_trusted_path@ > -perlmoduledir = $(exec_prefix)/perl > -all: all-am > - > -.SUFFIXES: > -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) > - @for dep in $?; do \ > - case '$(am__configure_deps)' in \ > - *$$dep*) \ > - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ > - && { if test -f $@; then exit 0; else break; fi; }; \ > - exit 1;; \ > - esac; \ > - done; \ > - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu perlmods/Makefile'; \ > - $(am__cd) $(top_srcdir) && \ > - $(AUTOMAKE) --gnu perlmods/Makefile > -.PRECIOUS: Makefile > -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status > - @case '$?' in \ > - *config.status*) \ > - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ > - *) \ > - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ > - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ > - esac; > - > -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) > - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh > - > -$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) > - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh > -$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) > - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh > -$(am__aclocal_m4_deps): > - > -mostlyclean-libtool: > - -rm -f *.lo > - > -clean-libtool: > - -rm -rf .libs _libs > -tags: TAGS > -TAGS: > - > -ctags: CTAGS > -CTAGS: > - > - > -distdir: $(DISTFILES) > - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ > - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ > - list='$(DISTFILES)'; \ > - dist_files=`for file in $$list; do echo $$file; done | \ > - sed -e "s|^$$srcdirstrip/||;t" \ > - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ > - case $$dist_files in \ > - */*) $(MKDIR_P) `echo "$$dist_files" | \ > - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ > - sort -u` ;; \ > - esac; \ > - for file in $$dist_files; do \ > - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ > - if test -d $$d/$$file; then \ > - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ > - if test -d "$(distdir)/$$file"; then \ > - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ > - fi; \ > - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ > - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ > - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ > - fi; \ > - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ > - else \ > - test -f "$(distdir)/$$file" \ > - || cp -p $$d/$$file "$(distdir)/$$file" \ > - || exit 1; \ > - fi; \ > - done > -check-am: all-am > -check: check-am > -all-am: Makefile all-local > -installdirs: > -install: install-am > -install-exec: install-exec-am > -install-data: install-data-am > -uninstall: uninstall-am > - > -install-am: all-am > - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am > - > -installcheck: installcheck-am > -install-strip: > - if test -z '$(STRIP)'; then \ > - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ > - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ > - install; \ > - else \ > - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ > - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ > - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ > - fi > -mostlyclean-generic: > - > -clean-generic: > - > -distclean-generic: > - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) > - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) > - > -maintainer-clean-generic: > - @echo "This command is intended for maintainers to use" > - @echo "it deletes files that may require special tools to rebuild." > -clean: clean-am > - > -clean-am: clean-generic clean-libtool clean-local mostlyclean-am > - > -distclean: distclean-am > - -rm -f Makefile > -distclean-am: clean-am distclean-generic > - > -dvi: dvi-am > - > -dvi-am: > - > -html: html-am > - > -html-am: > - > -info: info-am > - > -info-am: > - > -install-data-am: > - > -install-dvi: install-dvi-am > - > -install-dvi-am: > - > -install-exec-am: install-exec-local > - > -install-html: install-html-am > - > -install-html-am: > - > -install-info: install-info-am > - > -install-info-am: > - > -install-man: > - > -install-pdf: install-pdf-am > - > -install-pdf-am: > - > -install-ps: install-ps-am > - > -install-ps-am: > - > -installcheck-am: > - > -maintainer-clean: maintainer-clean-am > - -rm -f Makefile > -maintainer-clean-am: distclean-am maintainer-clean-generic > - > -mostlyclean: mostlyclean-am > - > -mostlyclean-am: mostlyclean-generic mostlyclean-libtool > - > -pdf: pdf-am > - > -pdf-am: > - > -ps: ps-am > - > -ps-am: > - > -uninstall-am: > - > -.MAKE: install-am install-strip > - > -.PHONY: all all-am all-local check check-am clean clean-generic \ > - clean-libtool clean-local distclean distclean-generic \ > - distclean-libtool distdir dvi dvi-am html html-am info info-am \ > - install install-am install-data install-data-am install-dvi \ > - install-dvi-am install-exec install-exec-am install-exec-local \ > - install-html install-html-am install-info install-info-am \ > - install-man install-pdf install-pdf-am install-ps \ > - install-ps-am install-strip installcheck installcheck-am \ > - installdirs maintainer-clean maintainer-clean-generic \ > - mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ > - ps ps-am uninstall uninstall-am > - > - > -all-local: > - $(top_srcdir)/tools/build_perl_modules -d $(perlmoduledir) -em . > - > -install-exec-local: > - $(top_srcdir)/tools/build_perl_modules -d $(perlmoduledir) -i . > - > -# Don't run test-debug differently here yet > -test test-debug: > - $(top_srcdir)/tools/build_perl_modules -d $(perlmoduledir) -t . > - > -clean-local: > - $(top_srcdir)/tools/build_perl_modules -d $(perlmoduledir) -c . > - > -# Tell versions [3.59,3.63) of GNU make to not export all variables. > -# Otherwise a system limit (for SysV at least) may be exceeded. > -.NOEXPORT: > Binary files /tmp/uSsyKPTDEh/monitoring-plugins-2.3/perlmods/Math-Calc-Units-1.07.tar.gz and /tmp/KGXYzMpszb/monitoring-plugins-2.3.1/perlmods/Math-Calc-Units-1.07.tar.gz differ > Binary files /tmp/uSsyKPTDEh/monitoring-plugins-2.3/perlmods/Module-Build-0.4007.tar.gz and /tmp/KGXYzMpszb/monitoring-plugins-2.3.1/perlmods/Module-Build-0.4007.tar.gz differ > Binary files /tmp/uSsyKPTDEh/monitoring-plugins-2.3/perlmods/Module-Implementation-0.07.tar.gz and /tmp/KGXYzMpszb/monitoring-plugins-2.3.1/perlmods/Module-Implementation-0.07.tar.gz differ > Binary files /tmp/uSsyKPTDEh/monitoring-plugins-2.3/perlmods/Module-Metadata-1.000014.tar.gz and /tmp/KGXYzMpszb/monitoring-plugins-2.3.1/perlmods/Module-Metadata-1.000014.tar.gz differ > Binary files /tmp/uSsyKPTDEh/monitoring-plugins-2.3/perlmods/Module-Runtime-0.013.tar.gz and /tmp/KGXYzMpszb/monitoring-plugins-2.3.1/perlmods/Module-Runtime-0.013.tar.gz differ > Binary files /tmp/uSsyKPTDEh/monitoring-plugins-2.3/perlmods/Monitoring-Plugin-0.39.tar.gz and /tmp/KGXYzMpszb/monitoring-plugins-2.3.1/perlmods/Monitoring-Plugin-0.39.tar.gz differ > Binary files /tmp/uSsyKPTDEh/monitoring-plugins-2.3/perlmods/Params-Validate-1.08.tar.gz and /tmp/KGXYzMpszb/monitoring-plugins-2.3.1/perlmods/Params-Validate-1.08.tar.gz differ > Binary files /tmp/uSsyKPTDEh/monitoring-plugins-2.3/perlmods/Perl-OSType-1.003.tar.gz and /tmp/KGXYzMpszb/monitoring-plugins-2.3.1/perlmods/Perl-OSType-1.003.tar.gz differ > Binary files /tmp/uSsyKPTDEh/monitoring-plugins-2.3/perlmods/Test-Simple-0.98.tar.gz and /tmp/KGXYzMpszb/monitoring-plugins-2.3.1/perlmods/Test-Simple-0.98.tar.gz differ > Binary files /tmp/uSsyKPTDEh/monitoring-plugins-2.3/perlmods/Try-Tiny-0.18.tar.gz and /tmp/KGXYzMpszb/monitoring-plugins-2.3.1/perlmods/Try-Tiny-0.18.tar.gz differ > diff -Nru monitoring-plugins-2.3/perlmods/install_order monitoring-plugins-2.3.1/perlmods/install_order > --- monitoring-plugins-2.3/perlmods/install_order 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/perlmods/install_order 1970-01-01 01:00:00.000000000 +0100 > @@ -1,16 +0,0 @@ > -# Modules installed in this order > -default: > -Test-Simple > -Perl-OSType > -Module-Implementation > -Module-Metadata > -version > -Module-Build > -Module-Runtime > -parent > -Try-Tiny > -Params-Validate > -Math-Calc-Units > -Class-Accessor > -Config-Tiny > -Monitoring-Plugin > Binary files /tmp/uSsyKPTDEh/monitoring-plugins-2.3/perlmods/parent-0.226.tar.gz and /tmp/KGXYzMpszb/monitoring-plugins-2.3.1/perlmods/parent-0.226.tar.gz differ > Binary files /tmp/uSsyKPTDEh/monitoring-plugins-2.3/perlmods/version-0.9903.tar.gz and /tmp/KGXYzMpszb/monitoring-plugins-2.3.1/perlmods/version-0.9903.tar.gz differ > diff -Nru monitoring-plugins-2.3/pkg/solaris/pkginfo monitoring-plugins-2.3.1/pkg/solaris/pkginfo > --- monitoring-plugins-2.3/pkg/solaris/pkginfo 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/pkg/solaris/pkginfo 2021-04-10 16:17:12.000000000 +0200 > @@ -2,11 +2,11 @@ > NAME="monitoring-plugins" > DESC="Network Monitoring Plugins for Nagios and compatible" > ARCH="unknown" > -VERSION="2.3,REV=2020.12.09.22.48" > +VERSION="2.3.1,REV=2021.04.10.16.16" > CATEGORY="application" > VENDOR="Monitoring Plugins Development Team" > EMAIL="devel@monitoring-plugins.org" > -PSTAMP="nag20201209224822" > +PSTAMP="nag20210410161613" > BASEDIR="/" > CLASSES="none" > > diff -Nru monitoring-plugins-2.3/plugins/check_curl.c monitoring-plugins-2.3.1/plugins/check_curl.c > --- monitoring-plugins-2.3/plugins/check_curl.c 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/plugins/check_curl.c 2021-04-10 14:13:41.000000000 +0200 > @@ -117,7 +117,7 @@ > > enum { > REGS = 2, > - MAX_RE_SIZE = 256 > + MAX_RE_SIZE = 1024 > }; > #include "regex.h" > regex_t preg; > @@ -145,6 +145,7 @@ > char user_agent[DEFAULT_BUFFER_SIZE]; > int verbose = 0; > int show_extended_perfdata = FALSE; > +int show_body = FALSE; > int min_page_len = 0; > int max_page_len = 0; > int redir_depth = 0; > @@ -195,6 +196,7 @@ > char *client_cert = NULL; > char *client_privkey = NULL; > char *ca_cert = NULL; > +int verify_peer_and_host = FALSE; > int is_openssl_callback = FALSE; > #if defined(HAVE_SSL) && defined(USE_OPENSSL) > X509 *cert = NULL; > @@ -296,6 +298,28 @@ > #endif /* USE_OPENSSL */ > #endif /* HAVE_SSL */ > > +/* returns a string "HTTP/1.x" or "HTTP/2" */ > +static char *string_statuscode (int major, int minor) > +{ > + static char buf[10]; > + > + switch (major) { > + case 1: > + snprintf (buf, sizeof (buf), "HTTP/%d.%d", major, minor); > + break; > + case 2: > + case 3: > + snprintf (buf, sizeof (buf), "HTTP/%d", major); > + break; > + default: > + /* assuming here HTTP/N with N>=4 */ > + snprintf (buf, sizeof (buf), "HTTP/%d", major); > + break; > + } > + > + return buf; > +} > + > /* Checks if the server 'reply' is one of the expected 'statuscodes' */ > static int > expected_statuscode (const char *reply, const char *statuscodes) > @@ -467,9 +491,11 @@ > if (client_privkey) > handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_SSLKEY, client_privkey), "CURLOPT_SSLKEY"); > if (ca_cert) { > + handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_CAINFO, ca_cert), "CURLOPT_CAINFO"); > + } > + if (ca_cert || verify_peer_and_host) { > /* per default if we have a CA verify both the peer and the > * hostname in the certificate, can be switched off later */ > - handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_CAINFO, ca_cert), "CURLOPT_CAINFO"); > handle_curl_option_return_code (curl_easy_setopt( curl, CURLOPT_SSL_VERIFYPEER, 1), "CURLOPT_SSL_VERIFYPEER"); > handle_curl_option_return_code (curl_easy_setopt( curl, CURLOPT_SSL_VERIFYHOST, 2), "CURLOPT_SSL_VERIFYHOST"); > } else { > @@ -640,7 +666,7 @@ > /* Curl errors, result in critical Nagios state */ > if (res != CURLE_OK) { > snprintf (msg, DEFAULT_BUFFER_SIZE, _("Invalid HTTP response received from host on port %d: cURL returned %d - %s"), > - server_port, res, curl_easy_strerror(res)); > + server_port, res, errbuf[0] ? errbuf : curl_easy_strerror(res)); > die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); > } > > @@ -746,7 +772,8 @@ > if (curlhelp_parse_statusline (header_buf.buf, &status_line) < 0) { > snprintf (msg, DEFAULT_BUFFER_SIZE, "Unparsable status line in %.3g seconds response time|%s\n", > total_time, perfstring); > - die (STATE_CRITICAL, "HTTP CRITICAL HTTP/1.x %ld unknown - %s", code, msg); > + /* we cannot know the major/minor version here for sure as we cannot parse the first line */ > + die (STATE_CRITICAL, "HTTP CRITICAL HTTP/x.x %ld unknown - %s", code, msg); > } > > /* get result code from cURL */ > @@ -766,7 +793,9 @@ > snprintf(msg, DEFAULT_BUFFER_SIZE, _("Invalid HTTP response received from host: %s\n"), status_line.first_line); > else > snprintf(msg, DEFAULT_BUFFER_SIZE, _("Invalid HTTP response received from host on port %d: %s\n"), server_port, status_line.first_line); > - die (STATE_CRITICAL, "HTTP CRITICAL - %s", msg); > + die (STATE_CRITICAL, "HTTP CRITICAL - %s%s%s", msg, > + show_body ? "\n" : "", > + show_body ? body_buf.buf : ""); > } > > if( server_expect_yn ) { > @@ -823,8 +852,8 @@ > > /* check status codes, set exit status accordingly */ > if( status_line.http_code != code ) { > - die (STATE_CRITICAL, _("HTTP CRITICAL HTTP/%d.%d %d %s - different HTTP codes (cUrl has %ld)\n"), > - status_line.http_major, status_line.http_minor, > + die (STATE_CRITICAL, _("HTTP CRITICAL %s %d %s - different HTTP codes (cUrl has %ld)\n"), > + string_statuscode (status_line.http_major, status_line.http_minor), > status_line.http_code, status_line.msg, code); > } > > @@ -895,13 +924,15 @@ > msg[strlen(msg)-3] = '\0'; > > /* TODO: separate _() msg and status code: die (result, "HTTP %s: %s\n", state_text(result), msg); */ > - die (result, "HTTP %s: HTTP/%d.%d %d %s%s%s - %d bytes in %.3f second response time %s|%s\n", > - state_text(result), status_line.http_major, status_line.http_minor, > + die (result, "HTTP %s: %s %d %s%s%s - %d bytes in %.3f second response time %s|%s\n%s%s", > + state_text(result), string_statuscode (status_line.http_major, status_line.http_minor), > status_line.http_code, status_line.msg, > strlen(msg) > 0 ? " - " : "", > msg, page_len, total_time, > (display_html ? "</A>" : ""), > - perfstring); > + perfstring, > + (show_body ? body_buf.buf : ""), > + (show_body ? "\n" : "") ); > > /* proper cleanup after die? */ > curlhelp_free_statusline(&status_line); > @@ -1041,7 +1072,7 @@ > const UriPathSegmentA* p = uri.pathHead; > for (; p; p = p->next) { > strncat (new_url, "/", DEFAULT_BUFFER_SIZE); > - strncat (new_url, uri_string (p->text, buf, DEFAULT_BUFFER_SIZE), DEFAULT_BUFFER_SIZE); > + strncat (new_url, uri_string (p->text, buf, DEFAULT_BUFFER_SIZE), DEFAULT_BUFFER_SIZE-1); > } > } > > @@ -1136,6 +1167,7 @@ > {"client-cert", required_argument, 0, 'J'}, > {"private-key", required_argument, 0, 'K'}, > {"ca-cert", required_argument, 0, CA_CERT_OPTION}, > + {"verify-cert", no_argument, 0, 'D'}, > {"useragent", required_argument, 0, 'A'}, > {"header", required_argument, 0, 'k'}, > {"no-body", no_argument, 0, 'N'}, > @@ -1146,6 +1178,7 @@ > {"use-ipv4", no_argument, 0, '4'}, > {"use-ipv6", no_argument, 0, '6'}, > {"extended-perfdata", no_argument, 0, 'E'}, > + {"show-body", no_argument, 0, 'B'}, > {"http-version", required_argument, 0, HTTP_VERSION_OPTION}, > {0, 0, 0, 0} > }; > @@ -1170,7 +1203,7 @@ > server_url = strdup(DEFAULT_SERVER_URL); > > while (1) { > - c = getopt_long (argc, argv, "Vvh46t:c:w:A:k:H:P:j:T:I:a:b:d:e:p:s:R:r:u:f:C:J:K:nlLS::m:M:NE", longopts, &option); > + c = getopt_long (argc, argv, "Vvh46t:c:w:A:k:H:P:j:T:I:a:b:d:e:p:s:R:r:u:f:C:J:K:DnlLS::m:M:NEB", longopts, &option); > if (c == -1 || c == EOF || c == 1) > break; > > @@ -1310,6 +1343,11 @@ > ca_cert = optarg; > goto enable_ssl; > #endif > +#ifdef LIBCURL_FEATURE_SSL > + case 'D': /* verify peer certificate & host */ > + verify_peer_and_host = TRUE; > + goto enable_ssl; > +#endif > case 'S': /* use SSL */ > #ifdef LIBCURL_FEATURE_SSL > enable_ssl: > @@ -1354,7 +1392,7 @@ > ssl_version = CURL_SSLVERSION_DEFAULT; > #endif /* LIBCURL_VERSION_NUM >= MAKE_LIBCURL_VERSION(7, 52, 0) */ > else > - usage4 (_("Invalid option - Valid SSL/TLS versions: 2, 3, 1, 1.1, 1.2 (with optional '+' suffix)")); > + usage4 (_("Invalid option - Valid SSL/TLS versions: 2, 3, 1, 1.1, 1.2, 1.3 (with optional '+' suffix)")); > } > #if LIBCURL_VERSION_NUM >= MAKE_LIBCURL_VERSION(7, 54, 0) > if (got_plus) { > @@ -1513,6 +1551,9 @@ > case 'E': /* show extended perfdata */ > show_extended_perfdata = TRUE; > break; > + case 'B': /* print body content after status line */ > + show_body = TRUE; > + break; > case HTTP_VERSION_OPTION: > curl_http_version = CURL_HTTP_VERSION_NONE; > if (strcmp (optarg, "1.0") == 0) { > @@ -1659,7 +1700,7 @@ > printf (" %s\n", "-S, --ssl=VERSION[+]"); > printf (" %s\n", _("Connect via SSL. Port defaults to 443. VERSION is optional, and prevents")); > printf (" %s\n", _("auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1,")); > - printf (" %s\n", _("1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted.")); > + printf (" %s\n", _("1.2 = TLSv1.2, 1.3 = TLSv1.3). With a '+' suffix, newer versions are also accepted.")); > printf (" %s\n", _("Note: SSLv2 and SSLv3 are deprecated and are usually disabled in libcurl")); > printf (" %s\n", "--sni"); > printf (" %s\n", _("Enable SSL/TLS hostname extension support (SNI)")); > @@ -1680,6 +1721,8 @@ > printf (" %s\n", _("matching the client certificate")); > printf (" %s\n", "--ca-cert=FILE"); > printf (" %s\n", _("CA certificate file to verify peer against")); > + printf (" %s\n", "-D, --verify-cert"); > + printf (" %s\n", _("Verify the peer's SSL certificate and hostname")); > #endif > > printf (" %s\n", "-e, --expect=STRING"); > @@ -1723,6 +1766,8 @@ > printf (" %s\n", _("Any other tags to be sent in http header. Use multiple times for additional headers")); > printf (" %s\n", "-E, --extended-perfdata"); > printf (" %s\n", _("Print additional performance data")); > + printf (" %s\n", "-B, --show-body"); > + printf (" %s\n", _("Print body content below status line")); > printf (" %s\n", "-L, --link"); > printf (" %s\n", _("Wrap output in HTML link (obsoleted by urlize)")); > printf (" %s\n", "-f, --onredirect=<ok|warning|critical|follow|sticky|stickyport|curl>"); > @@ -1813,15 +1858,21 @@ > { > printf ("%s\n", _("Usage:")); > printf (" %s -H <vhost> | -I <IP-address> [-u <uri>] [-p <port>]\n",progname); > - printf (" [-J <client certificate file>] [-K <private key>] [--ca-cert <CA certificate file>]\n"); > + printf (" [-J <client certificate file>] [-K <private key>] [--ca-cert <CA certificate file>] [-D]\n"); > printf (" [-w <warn time>] [-c <critical time>] [-t <timeout>] [-L] [-E] [-a auth]\n"); > printf (" [-b proxy_auth] [-f <ok|warning|critcal|follow|sticky|stickyport|curl>]\n"); > printf (" [-e <expect>] [-d string] [-s string] [-l] [-r <regex> | -R <case-insensitive regex>]\n"); > printf (" [-P string] [-m <min_pg_size>:<max_pg_size>] [-4|-6] [-N] [-M <age>]\n"); > - printf (" [-A string] [-k string] [-S <version>] [--sni] [-C <warn_age>[,<crit_age>]]\n"); > + printf (" [-A string] [-k string] [-S <version>] [--sni]\n"); > printf (" [-T <content-type>] [-j method]\n"); > printf (" [--http-version=<version>]\n"); > + printf (" %s -H <vhost> | -I <IP-address> -C <warn_age>[,<crit_age>]\n",progname); > + printf (" [-p <port>] [-t <timeout>] [-4|-6] [--sni]\n"); > printf ("\n"); > +#ifdef LIBCURL_FEATURE_SSL > + printf ("%s\n", _("In the first form, make an HTTP request.")); > + printf ("%s\n\n", _("In the second form, connect to the server and check the TLS certificate.")); > +#endif > printf ("%s\n", _("WARNING: check_curl is experimental. Please use")); > printf ("%s\n\n", _("check_http if you need a stable version.")); > } > @@ -2037,7 +2088,7 @@ > { > int i; > for( i = 0; i < nof_headers; i++ ) { > - if( strncasecmp( header, headers[i].name, max( headers[i].name_len, 4 ) ) == 0 ) { > + if(headers[i].name != NULL && strncasecmp( header, headers[i].name, max( headers[i].name_len, 4 ) ) == 0 ) { > return strndup( headers[i].value, headers[i].value_len ); > } > } > diff -Nru monitoring-plugins-2.3/plugins/check_dns.c monitoring-plugins-2.3.1/plugins/check_dns.c > --- monitoring-plugins-2.3/plugins/check_dns.c 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/plugins/check_dns.c 2021-04-10 14:13:41.000000000 +0200 > @@ -473,9 +473,23 @@ > case 'a': /* expected address */ > if (strlen (optarg) >= ADDRESS_LENGTH) > die (STATE_UNKNOWN, _("Input buffer overflow\n")); > - expected_address = (char **)realloc(expected_address, (expected_address_cnt+1) * sizeof(char**)); > - expected_address[expected_address_cnt] = strdup(optarg); > - expected_address_cnt++; > + if (strchr(optarg, ',') != NULL) { > + char *comma = strchr(optarg, ','); > + while (comma != NULL) { > + expected_address = (char **)realloc(expected_address, (expected_address_cnt+1) * sizeof(char**)); > + expected_address[expected_address_cnt] = strndup(optarg, comma - optarg); > + expected_address_cnt++; > + optarg = comma + 1; > + comma = strchr(optarg, ','); > + } > + expected_address = (char **)realloc(expected_address, (expected_address_cnt+1) * sizeof(char**)); > + expected_address[expected_address_cnt] = strdup(optarg); > + expected_address_cnt++; > + } else { > + expected_address = (char **)realloc(expected_address, (expected_address_cnt+1) * sizeof(char**)); > + expected_address[expected_address_cnt] = strdup(optarg); > + expected_address_cnt++; > + } > break; > case 'A': /* expect authority */ > expect_authority = TRUE; > diff -Nru monitoring-plugins-2.3/plugins/check_http.c monitoring-plugins-2.3.1/plugins/check_http.c > --- monitoring-plugins-2.3/plugins/check_http.c 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/plugins/check_http.c 2021-04-10 14:13:41.000000000 +0200 > @@ -72,7 +72,7 @@ > > enum { > REGS = 2, > - MAX_RE_SIZE = 256 > + MAX_RE_SIZE = 1024 > }; > #include "regex.h" > regex_t preg; > @@ -1567,6 +1567,10 @@ > > print_usage (); > > +#ifdef HAVE_SSL > + printf (_("In the first form, make an HTTP request.")); > + printf (_("In the second form, connect to the server and check the TLS certificate.")); > +#endif > printf (_("NOTE: One or both of -H and -I must be specified")); > > printf ("\n"); > @@ -1726,6 +1730,8 @@ > printf (" [-b proxy_auth] [-f <ok|warning|critcal|follow|sticky|stickyport>]\n"); > printf (" [-e <expect>] [-d string] [-s string] [-l] [-r <regex> | -R <case-insensitive regex>]\n"); > printf (" [-P string] [-m <min_pg_size>:<max_pg_size>] [-4|-6] [-N] [-M <age>]\n"); > - printf (" [-A string] [-k string] [-S <version>] [--sni] [-C <warn_age>[,<crit_age>]]\n"); > + printf (" [-A string] [-k string] [-S <version>] [--sni]\n"); > printf (" [-T <content-type>] [-j method]\n"); > + printf (" %s -H <vhost> | -I <IP-address> -C <warn_age>[,<crit_age>]\n",progname); > + printf (" [-p <port>] [-t <timeout>] [-4|-6] [--sni]\n"); > } > diff -Nru monitoring-plugins-2.3/plugins/check_mysql_query.c monitoring-plugins-2.3.1/plugins/check_mysql_query.c > --- monitoring-plugins-2.3/plugins/check_mysql_query.c 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/plugins/check_mysql_query.c 2021-04-10 14:13:41.000000000 +0200 > @@ -136,18 +136,18 @@ > die (STATE_CRITICAL, "QUERY %s: Fetch row error - %s\n", _("CRITICAL"), error); > } > > - /* free the result */ > - mysql_free_result (res); > - > - /* close the connection */ > - mysql_close (&mysql); > - > if (! is_numeric(row[0])) { > die (STATE_CRITICAL, "QUERY %s: %s - '%s'\n", _("CRITICAL"), _("Is not a numeric"), row[0]); > } > > value = strtod(row[0], NULL); > > + /* free the result */ > + mysql_free_result (res); > + > + /* close the connection */ > + mysql_close (&mysql); > + > if (verbose >= 3) > printf("mysql result: %f\n", value); > > diff -Nru monitoring-plugins-2.3/plugins/check_pgsql.c monitoring-plugins-2.3.1/plugins/check_pgsql.c > --- monitoring-plugins-2.3/plugins/check_pgsql.c 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/plugins/check_pgsql.c 2021-04-10 14:13:41.000000000 +0200 > @@ -347,7 +347,7 @@ > if (!is_pg_dbname (optarg)) /* checks length and valid chars */ > usage2 (_("Database name is not valid"), optarg); > else /* we know length, and know optarg is terminated, so us strcpy */ > - strcpy (dbName, optarg); > + snprintf(dbName, NAMEDATALEN, "%s", optarg); > break; > case 'l': /* login name */ > if (!is_pg_logname (optarg)) > diff -Nru monitoring-plugins-2.3/plugins/check_snmp.c monitoring-plugins-2.3.1/plugins/check_snmp.c > --- monitoring-plugins-2.3/plugins/check_snmp.c 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/plugins/check_snmp.c 2021-04-10 14:13:41.000000000 +0200 > @@ -576,6 +576,9 @@ > len = sizeof(perfstr)-strlen(perfstr)-1; > strncat(perfstr, show, len>ptr-show ? ptr-show : len); > > + if (type) > + strncat(perfstr, type, sizeof(perfstr)-strlen(perfstr)-1); > + > if (warning_thresholds) { > strncat(perfstr, ";", sizeof(perfstr)-strlen(perfstr)-1); > strncat(perfstr, warning_thresholds, sizeof(perfstr)-strlen(perfstr)-1); > @@ -588,8 +591,6 @@ > strncat(perfstr, critical_thresholds, sizeof(perfstr)-strlen(perfstr)-1); > } > > - if (type) > - strncat(perfstr, type, sizeof(perfstr)-strlen(perfstr)-1); > strncat(perfstr, " ", sizeof(perfstr)-strlen(perfstr)-1); > } > } > diff -Nru monitoring-plugins-2.3/plugins/t/check_curl.t monitoring-plugins-2.3.1/plugins/t/check_curl.t > --- monitoring-plugins-2.3/plugins/t/check_curl.t 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/plugins/t/check_curl.t 2021-04-10 14:13:41.000000000 +0200 > @@ -9,7 +9,7 @@ > use POSIX qw/mktime strftime/; > use NPTest; > > -plan tests => 57; > +plan tests => 58; > > my $successOutput = '/OK.*HTTP.*second/'; > > @@ -46,7 +46,7 @@ > ); > cmp_ok( $res->return_code, '==', 2, "Webserver $host_nonresponsive not responding" ); > # was CRITICAL only, but both check_curl and check_http print HTTP CRITICAL (puzzle?!) > -cmp_ok( $res->output, 'eq', "HTTP CRITICAL - Invalid HTTP response received from host on port 80: cURL returned 28 - Timeout was reached", "Output OK"); > +like( $res->output, "/HTTP CRITICAL - Invalid HTTP response received from host on port 80: cURL returned 28 - Connection timed out after/", "Output OK"); > > $res = NPTest->testCmd( > "./$plugin $hostname_invalid -wt 1 -ct 2" > @@ -56,7 +56,7 @@ > # On Debian, it is Name or service not known, on Darwin, it is No address associated with nodename > # Is also possible to get a socket timeout if DNS is not responding fast enough > # cURL gives us consistent strings from it's own 'lib/strerror.c' > -like( $res->output, "/cURL returned 6 - Couldn't resolve host name/", "Output OK"); > +like( $res->output, "/cURL returned 6 - Could not resolve host:/", "Output OK"); > > # host header checks > $res = NPTest->testCmd("./$plugin -v -H $host_tcp_http"); > @@ -94,6 +94,9 @@ > > $res = NPTest->testCmd("./$plugin -v -H $host_tls_http:443 -S -p 443"); > like( $res->output, '/^Host: '.$host_tls_http.'\s*$/ms', "Host Header OK" ); > + > + $res = NPTest->testCmd("./$plugin -v -H $host_tls_http -D -p 443"); > + like( $res->output, '/(^Host: '.$host_tls_http.'\s*$)|(cURL returned 60)/ms', "Host Header OK" ); > }; > > SKIP: { > diff -Nru monitoring-plugins-2.3/plugins/tests/check_curl.t monitoring-plugins-2.3.1/plugins/tests/check_curl.t > --- monitoring-plugins-2.3/plugins/tests/check_curl.t 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/plugins/tests/check_curl.t 2021-04-10 14:13:41.000000000 +0200 > @@ -21,7 +21,7 @@ > > $ENV{'LC_TIME'} = "C"; > > -my $common_tests = 70; > +my $common_tests = 72; > my $ssl_only_tests = 8; > # Check that all dependent modules are available > eval "use HTTP::Daemon 6.01;"; > @@ -188,6 +188,12 @@ > $c->send_basic_header; > $c->send_header('foo'); > $c->send_crlf; > + } elsif ($r->url->path eq "/header_broken_check") { > + $c->send_basic_header; > + $c->send_header('foo'); > + print $c "Test1:: broken\n"; > + print $c " Test2: leading whitespace\n"; > + $c->send_crlf; > } elsif ($r->url->path eq "/virtual_port") { > # return sent Host header > $c->send_basic_header; > @@ -247,7 +253,7 @@ > # advanced checks with virtual hostname and virtual port > SKIP: { > skip "libcurl version is smaller than $required_version", 6 unless $use_advanced_checks; > - > + > # http without virtual port > $cmd = "./$plugin -H $virtual_host -I 127.0.0.1 -p $port_http -u /virtual_port -r ^$virtual_host:$port_http\$"; > $result = NPTest->testCmd( $cmd ); > @@ -259,7 +265,7 @@ > $result = NPTest->testCmd( $cmd ); > is( $result->return_code, 0, $cmd); > like( $result->output, '/^HTTP OK: HTTP/1.1 200 OK - \d+ bytes in [\d\.]+ second/', "Output correct: ".$result->output ); > - > + > # http with virtual port (80) > $cmd = "./$plugin -H $virtual_host:80 -I 127.0.0.1 -p $port_http -u /virtual_port -r ^$virtual_host\$"; > $result = NPTest->testCmd( $cmd ); > @@ -321,6 +327,10 @@ > is( $result->return_code, 2, "Missing header string check"); > like( $result->output, qr%^HTTP CRITICAL: HTTP/1\.1 200 OK - header 'bar' not found on 'https?://127\.0\.0\.1:\d+/header_check'%, "Shows search string and location"); > > + $result = NPTest->testCmd( "$command -u /header_broken_check" ); > + is( $result->return_code, 0, "header_check search for string"); > + like( $result->output, '/^HTTP OK: HTTP/1.1 200 OK - 138 bytes in [\d\.]+ second/', "Output correct" ); > + > my $cmd; > $cmd = "$command -u /slow"; > $result = NPTest->testCmd( $cmd ); > diff -Nru monitoring-plugins-2.3/plugins-root/check_icmp.c monitoring-plugins-2.3.1/plugins-root/check_icmp.c > --- monitoring-plugins-2.3/plugins-root/check_icmp.c 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/plugins-root/check_icmp.c 2021-04-10 14:13:41.000000000 +0200 > @@ -1134,7 +1134,7 @@ > while(host) { > if(!host->icmp_recv) { > /* rta 0 is ofcourse not entirely correct, but will still show up > - * conspicuosly as missing entries in perfparse and cacti */ > + * conspicuously as missing entries in perfparse and cacti */ > pl = 100; > rta = 0; > status = STATE_CRITICAL; > Binary files /tmp/uSsyKPTDEh/monitoring-plugins-2.3/po/de.gmo and /tmp/KGXYzMpszb/monitoring-plugins-2.3.1/po/de.gmo differ > diff -Nru monitoring-plugins-2.3/po/de.po monitoring-plugins-2.3.1/po/de.po > --- monitoring-plugins-2.3/po/de.po 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/po/de.po 2021-04-10 16:17:22.000000000 +0200 > @@ -9,7 +9,7 @@ > msgstr "" > "Project-Id-Version: nagiosplug\n" > "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" > -"POT-Creation-Date: 2020-12-09 22:49+0100\n" > +"POT-Creation-Date: 2021-04-10 16:17+0200\n" > "PO-Revision-Date: 2004-12-23 17:46+0100\n" > "Last-Translator: <>\n" > "Language-Team: English <en@li.org>\n" > @@ -64,7 +64,7 @@ > #: plugins/check_by_ssh.c:228 plugins/check_disk.c:519 > #: plugins/check_http.c:283 plugins/check_ldap.c:334 plugins/check_pgsql.c:312 > #: plugins/check_procs.c:437 plugins/check_radius.c:319 > -#: plugins/check_real.c:357 plugins/check_smtp.c:586 plugins/check_snmp.c:763 > +#: plugins/check_real.c:357 plugins/check_smtp.c:586 plugins/check_snmp.c:764 > #: plugins/check_ssh.c:140 plugins/check_tcp.c:519 plugins/check_time.c:302 > #: plugins/check_ups.c:556 plugins/negate.c:160 > msgid "Timeout interval must be a positive integer" > @@ -225,7 +225,7 @@ > msgstr "" > > #: plugins/check_by_ssh.c:453 plugins/check_cluster.c:271 > -#: plugins/check_dig.c:364 plugins/check_disk.c:973 plugins/check_http.c:1684 > +#: plugins/check_dig.c:364 plugins/check_disk.c:973 plugins/check_http.c:1688 > #: plugins/check_nagios.c:312 plugins/check_ntp.c:879 > #: plugins/check_ntp_peer.c:733 plugins/check_ntp_time.c:642 > #: plugins/check_procs.c:763 plugins/negate.c:249 plugins/urlize.c:179 > @@ -233,9 +233,9 @@ > msgstr "" > > #: plugins/check_by_ssh.c:468 plugins/check_cluster.c:284 > -#: plugins/check_dig.c:376 plugins/check_disk.c:990 plugins/check_dns.c:574 > +#: plugins/check_dig.c:376 plugins/check_disk.c:990 plugins/check_dns.c:588 > #: plugins/check_dummy.c:122 plugins/check_fping.c:505 > -#: plugins/check_game.c:331 plugins/check_hpjd.c:438 plugins/check_http.c:1722 > +#: plugins/check_game.c:331 plugins/check_hpjd.c:438 plugins/check_http.c:1726 > #: plugins/check_ldap.c:508 plugins/check_load.c:348 plugins/check_mrtg.c:382 > #: plugins/check_mysql.c:584 plugins/check_nagios.c:323 plugins/check_nt.c:797 > #: plugins/check_ntp.c:898 plugins/check_ntp_peer.c:753 > @@ -243,7 +243,7 @@ > #: plugins/check_overcr.c:467 plugins/check_pgsql.c:579 > #: plugins/check_ping.c:610 plugins/check_procs.c:786 > #: plugins/check_radius.c:396 plugins/check_real.c:452 > -#: plugins/check_smtp.c:850 plugins/check_snmp.c:1254 plugins/check_ssh.c:325 > +#: plugins/check_smtp.c:850 plugins/check_snmp.c:1255 plugins/check_ssh.c:325 > #: plugins/check_swap.c:571 plugins/check_tcp.c:710 plugins/check_time.c:371 > #: plugins/check_ups.c:660 plugins/check_users.c:262 > #: plugins/check_ide_smart.c:606 plugins/negate.c:273 plugins/urlize.c:196 > @@ -293,11 +293,11 @@ > msgstr "" > > #: plugins/check_cluster.c:267 plugins/check_game.c:318 > -#: plugins/check_http.c:1666 plugins/check_ldap.c:494 plugins/check_mrtg.c:363 > +#: plugins/check_http.c:1670 plugins/check_ldap.c:494 plugins/check_mrtg.c:363 > #: plugins/check_mrtgtraf.c:361 plugins/check_mysql.c:573 > #: plugins/check_nt.c:781 plugins/check_ntp.c:875 plugins/check_ntp_peer.c:724 > #: plugins/check_ntp_time.c:633 plugins/check_nwstat.c:1670 > -#: plugins/check_overcr.c:456 plugins/check_snmp.c:1225 > +#: plugins/check_overcr.c:456 plugins/check_snmp.c:1226 > #: plugins/check_swap.c:559 plugins/check_ups.c:642 > #: plugins/check_ide_smart.c:580 plugins/negate.c:255 > #: plugins-root/check_icmp.c:1590 > @@ -775,68 +775,68 @@ > msgstr "DNS Fehler f�n" > > #: plugins/check_dns.c:455 plugins/check_dns.c:463 plugins/check_dns.c:470 > -#: plugins/check_dns.c:475 plugins/check_dns.c:500 plugins/check_dns.c:508 > +#: plugins/check_dns.c:475 plugins/check_dns.c:514 plugins/check_dns.c:522 > #: plugins/check_game.c:211 plugins/check_game.c:219 > msgid "Input buffer overflow\n" > msgstr "Eingabe-Puffer�uf\n" > > -#: plugins/check_dns.c:536 > +#: plugins/check_dns.c:550 > msgid "" > "This plugin uses the nslookup program to obtain the IP address for the given " > "host/domain query." > msgstr "" > > -#: plugins/check_dns.c:537 > +#: plugins/check_dns.c:551 > msgid "An optional DNS server to use may be specified." > msgstr "" > > -#: plugins/check_dns.c:538 > +#: plugins/check_dns.c:552 > msgid "" > "If no DNS server is specified, the default server(s) specified in /etc/" > "resolv.conf will be used." > msgstr "" > > -#: plugins/check_dns.c:548 > +#: plugins/check_dns.c:562 > msgid "The name or address you want to query" > msgstr "" > > -#: plugins/check_dns.c:550 > +#: plugins/check_dns.c:564 > msgid "Optional DNS server you want to use for the lookup" > msgstr "" > > -#: plugins/check_dns.c:552 > +#: plugins/check_dns.c:566 > msgid "" > "Optional IP-ADDRESS/CIDR you expect the DNS server to return. HOST must end" > msgstr "" > > -#: plugins/check_dns.c:553 > +#: plugins/check_dns.c:567 > msgid "" > "with a dot (.). This option can be repeated multiple times (Returns OK if any" > msgstr "" > > -#: plugins/check_dns.c:554 > +#: plugins/check_dns.c:568 > msgid "value matches)." > msgstr "" > > -#: plugins/check_dns.c:556 > +#: plugins/check_dns.c:570 > msgid "Optionally expect the DNS server to be authoritative for the lookup" > msgstr "" > > -#: plugins/check_dns.c:558 > +#: plugins/check_dns.c:572 > msgid "Return warning if elapsed time exceeds value. Default off" > msgstr "" > > -#: plugins/check_dns.c:560 > +#: plugins/check_dns.c:574 > msgid "Return critical if elapsed time exceeds value. Default off" > msgstr "" > > -#: plugins/check_dns.c:562 > +#: plugins/check_dns.c:576 > msgid "" > "Return critical if the list of expected addresses does not match all " > "addresses" > msgstr "" > > -#: plugins/check_dns.c:563 > +#: plugins/check_dns.c:577 > msgid "returned. Default off" > msgstr "" > > @@ -1438,314 +1438,325 @@ > msgid "certificate expiration times." > msgstr "Clientzertifikat ben�t\n" > > -#: plugins/check_http.c:1570 > +#: plugins/check_http.c:1571 > +#, c-format > +msgid "In the first form, make an HTTP request." > +msgstr "" > + > +#: plugins/check_http.c:1572 > +#, c-format > +msgid "" > +"In the second form, connect to the server and check the TLS certificate." > +msgstr "" > + > +#: plugins/check_http.c:1574 > #, c-format > msgid "NOTE: One or both of -H and -I must be specified" > msgstr "" > > -#: plugins/check_http.c:1578 > +#: plugins/check_http.c:1582 > msgid "Host name argument for servers using host headers (virtual host)" > msgstr "" > > -#: plugins/check_http.c:1579 > +#: plugins/check_http.c:1583 > msgid "Append a port to include it in the header (eg: example.com:5000)" > msgstr "" > > -#: plugins/check_http.c:1581 > +#: plugins/check_http.c:1585 > msgid "" > "IP address or name (use numeric address if possible to bypass DNS lookup)." > msgstr "" > > -#: plugins/check_http.c:1583 > +#: plugins/check_http.c:1587 > msgid "Port number (default: " > msgstr "" > > -#: plugins/check_http.c:1590 > +#: plugins/check_http.c:1594 > msgid "" > "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" > msgstr "" > > -#: plugins/check_http.c:1591 > +#: plugins/check_http.c:1595 > msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1," > msgstr "" > > -#: plugins/check_http.c:1592 > +#: plugins/check_http.c:1596 > msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted." > msgstr "" > > -#: plugins/check_http.c:1594 > +#: plugins/check_http.c:1598 > msgid "Enable SSL/TLS hostname extension support (SNI)" > msgstr "" > > -#: plugins/check_http.c:1596 > +#: plugins/check_http.c:1600 > msgid "" > "Minimum number of days a certificate has to be valid. Port defaults to 443" > msgstr "" > > -#: plugins/check_http.c:1597 > +#: plugins/check_http.c:1601 > msgid "(when this option is used the URL is not checked.)" > msgstr "" > > -#: plugins/check_http.c:1599 > +#: plugins/check_http.c:1603 > msgid "Name of file that contains the client certificate (PEM format)" > msgstr "" > > -#: plugins/check_http.c:1600 > +#: plugins/check_http.c:1604 > msgid "to be used in establishing the SSL session" > msgstr "" > > -#: plugins/check_http.c:1602 > +#: plugins/check_http.c:1606 > msgid "Name of file containing the private key (PEM format)" > msgstr "" > > -#: plugins/check_http.c:1603 > +#: plugins/check_http.c:1607 > msgid "matching the client certificate" > msgstr "" > > -#: plugins/check_http.c:1607 > +#: plugins/check_http.c:1611 > msgid "Comma-delimited list of strings, at least one of them is expected in" > msgstr "" > > -#: plugins/check_http.c:1608 > +#: plugins/check_http.c:1612 > msgid "the first (status) line of the server response (default: " > msgstr "" > > -#: plugins/check_http.c:1610 > +#: plugins/check_http.c:1614 > msgid "" > "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" > msgstr "" > > -#: plugins/check_http.c:1612 > +#: plugins/check_http.c:1616 > msgid "String to expect in the response headers" > msgstr "" > > -#: plugins/check_http.c:1614 > +#: plugins/check_http.c:1618 > msgid "String to expect in the content" > msgstr "" > > -#: plugins/check_http.c:1616 > +#: plugins/check_http.c:1620 > msgid "URL to GET or POST (default: /)" > msgstr "" > > -#: plugins/check_http.c:1618 > +#: plugins/check_http.c:1622 > msgid "URL encoded http POST data" > msgstr "" > > -#: plugins/check_http.c:1620 > +#: plugins/check_http.c:1624 > msgid "Set HTTP method." > msgstr "" > > -#: plugins/check_http.c:1622 > +#: plugins/check_http.c:1626 > msgid "Don't wait for document body: stop reading after headers." > msgstr "" > > -#: plugins/check_http.c:1623 > +#: plugins/check_http.c:1627 > msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" > msgstr "" > > -#: plugins/check_http.c:1625 > +#: plugins/check_http.c:1629 > msgid "Warn if document is more than SECONDS old. the number can also be of" > msgstr "" > > -#: plugins/check_http.c:1626 > +#: plugins/check_http.c:1630 > msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." > msgstr "" > > -#: plugins/check_http.c:1628 > +#: plugins/check_http.c:1632 > msgid "specify Content-Type header media type when POSTing\n" > msgstr "" > > -#: plugins/check_http.c:1631 > +#: plugins/check_http.c:1635 > msgid "Allow regex to span newlines (must precede -r or -R)" > msgstr "" > > -#: plugins/check_http.c:1633 > +#: plugins/check_http.c:1637 > msgid "Search page for regex STRING" > msgstr "" > > -#: plugins/check_http.c:1635 > +#: plugins/check_http.c:1639 > msgid "Search page for case-insensitive regex STRING" > msgstr "" > > -#: plugins/check_http.c:1637 > +#: plugins/check_http.c:1641 > msgid "Return CRITICAL if found, OK if not\n" > msgstr "" > > -#: plugins/check_http.c:1640 > +#: plugins/check_http.c:1644 > msgid "Username:password on sites with basic authentication" > msgstr "" > > -#: plugins/check_http.c:1642 > +#: plugins/check_http.c:1646 > msgid "Username:password on proxy-servers with basic authentication" > msgstr "" > > -#: plugins/check_http.c:1644 > +#: plugins/check_http.c:1648 > msgid "String to be sent in http header as \"User Agent\"" > msgstr "" > > -#: plugins/check_http.c:1646 > +#: plugins/check_http.c:1650 > msgid "" > "Any other tags to be sent in http header. Use multiple times for additional " > "headers" > msgstr "" > > -#: plugins/check_http.c:1648 > +#: plugins/check_http.c:1652 > msgid "Print additional performance data" > msgstr "" > > -#: plugins/check_http.c:1650 > +#: plugins/check_http.c:1654 > msgid "Print body content below status line" > msgstr "" > > -#: plugins/check_http.c:1652 > +#: plugins/check_http.c:1656 > msgid "Wrap output in HTML link (obsoleted by urlize)" > msgstr "" > > -#: plugins/check_http.c:1654 > +#: plugins/check_http.c:1658 > msgid "How to handle redirected pages. sticky is like follow but stick to the" > msgstr "" > > -#: plugins/check_http.c:1655 > +#: plugins/check_http.c:1659 > msgid "specified IP address. stickyport also ensures port stays the same." > msgstr "" > > -#: plugins/check_http.c:1657 > +#: plugins/check_http.c:1661 > msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" > msgstr "" > > -#: plugins/check_http.c:1667 > +#: plugins/check_http.c:1671 > #, fuzzy > msgid "This plugin will attempt to open an HTTP connection with the host." > msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." > > -#: plugins/check_http.c:1668 > +#: plugins/check_http.c:1672 > msgid "" > "Successful connects return STATE_OK, refusals and timeouts return " > "STATE_CRITICAL" > msgstr "" > > -#: plugins/check_http.c:1669 > +#: plugins/check_http.c:1673 > msgid "" > "other errors return STATE_UNKNOWN. Successful connects, but incorrect " > "response" > msgstr "" > > -#: plugins/check_http.c:1670 > +#: plugins/check_http.c:1674 > msgid "" > "messages from the host result in STATE_WARNING return values. If you are" > msgstr "" > > -#: plugins/check_http.c:1671 > +#: plugins/check_http.c:1675 > msgid "" > "checking a virtual server that uses 'host headers' you must supply the FQDN" > msgstr "" > > -#: plugins/check_http.c:1672 > +#: plugins/check_http.c:1676 > msgid "(fully qualified domain name) as the [host_name] argument." > msgstr "" > > -#: plugins/check_http.c:1676 > +#: plugins/check_http.c:1680 > msgid "This plugin can also check whether an SSL enabled web server is able to" > msgstr "" > > -#: plugins/check_http.c:1677 > +#: plugins/check_http.c:1681 > msgid "serve content (optionally within a specified time) or whether the X509 " > msgstr "" > > -#: plugins/check_http.c:1678 > +#: plugins/check_http.c:1682 > msgid "certificate is still valid for the specified number of days." > msgstr "" > > -#: plugins/check_http.c:1680 > +#: plugins/check_http.c:1684 > #, fuzzy > msgid "Please note that this plugin does not check if the presented server" > msgstr "" > "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" > "\n" > > -#: plugins/check_http.c:1681 > +#: plugins/check_http.c:1685 > msgid "certificate matches the hostname of the server, or if the certificate" > msgstr "" > > -#: plugins/check_http.c:1682 > +#: plugins/check_http.c:1686 > msgid "has a valid chain of trust to one of the locally installed CAs." > msgstr "" > > -#: plugins/check_http.c:1686 > +#: plugins/check_http.c:1690 > msgid "" > "When the 'www.verisign.com' server returns its content within 5 seconds," > msgstr "" > > -#: plugins/check_http.c:1687 plugins/check_http.c:1706 > +#: plugins/check_http.c:1691 plugins/check_http.c:1710 > msgid "" > "a STATE_OK will be returned. When the server returns its content but exceeds" > msgstr "" > > -#: plugins/check_http.c:1688 plugins/check_http.c:1707 > +#: plugins/check_http.c:1692 plugins/check_http.c:1711 > msgid "" > "the 5-second threshold, a STATE_WARNING will be returned. When an error " > "occurs," > msgstr "" > > -#: plugins/check_http.c:1689 > +#: plugins/check_http.c:1693 > msgid "a STATE_CRITICAL will be returned." > msgstr "" > > -#: plugins/check_http.c:1692 > +#: plugins/check_http.c:1696 > msgid "" > "When the certificate of 'www.verisign.com' is valid for more than 14 days," > msgstr "" > > -#: plugins/check_http.c:1693 plugins/check_http.c:1699 > +#: plugins/check_http.c:1697 plugins/check_http.c:1703 > msgid "" > "a STATE_OK is returned. When the certificate is still valid, but for less " > "than" > msgstr "" > > -#: plugins/check_http.c:1694 > +#: plugins/check_http.c:1698 > msgid "" > "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" > msgstr "" > > -#: plugins/check_http.c:1695 > +#: plugins/check_http.c:1699 > #, fuzzy > msgid "the certificate is expired." > msgstr "Clientzertifikat ben�t\n" > > -#: plugins/check_http.c:1698 > +#: plugins/check_http.c:1702 > msgid "" > "When the certificate of 'www.verisign.com' is valid for more than 30 days," > msgstr "" > > -#: plugins/check_http.c:1700 > +#: plugins/check_http.c:1704 > msgid "30 days, but more than 14 days, a STATE_WARNING is returned." > msgstr "" > > -#: plugins/check_http.c:1701 > +#: plugins/check_http.c:1705 > msgid "" > "A STATE_CRITICAL will be returned when certificate expires in less than 14 " > "days" > msgstr "" > > -#: plugins/check_http.c:1704 > +#: plugins/check_http.c:1708 > msgid "" > "check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j " > "CONNECT -H www.verisign.com " > msgstr "" > > -#: plugins/check_http.c:1705 > +#: plugins/check_http.c:1709 > msgid "" > "all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -S" > "(sl) -j CONNECT -H <webserver>" > msgstr "" > > -#: plugins/check_http.c:1708 > +#: plugins/check_http.c:1712 > msgid "" > "a STATE_CRITICAL will be returned. By adding a colon to the method you can " > "set the method used" > msgstr "" > > -#: plugins/check_http.c:1709 > +#: plugins/check_http.c:1713 > msgid "inside the proxied connection: -j CONNECT:POST" > msgstr "" > > @@ -4519,7 +4530,7 @@ > msgid "Invalid SMTP response received from host on port %d: %s\n" > msgstr "Ung� HTTP Antwort von Host erhalten auf Port %d\n" > > -#: plugins/check_smtp.c:308 plugins/check_snmp.c:833 > +#: plugins/check_smtp.c:308 plugins/check_snmp.c:834 > #, c-format > msgid "Could Not Compile Regular Expression" > msgstr "" > @@ -4687,7 +4698,7 @@ > msgid "STATE_WARNING return values." > msgstr "" > > -#: plugins/check_snmp.c:171 plugins/check_snmp.c:603 > +#: plugins/check_snmp.c:171 plugins/check_snmp.c:604 > msgid "Cannot malloc" > msgstr "" > > @@ -4710,291 +4721,291 @@ > msgid "Time duration between plugin calls is invalid" > msgstr "" > > -#: plugins/check_snmp.c:609 > +#: plugins/check_snmp.c:610 > msgid "Cannot asprintf()" > msgstr "" > > -#: plugins/check_snmp.c:615 > +#: plugins/check_snmp.c:616 > msgid "Cannot realloc()" > msgstr "" > > -#: plugins/check_snmp.c:631 > +#: plugins/check_snmp.c:632 > msgid "No previous data to calculate rate - assume okay" > msgstr "" > > -#: plugins/check_snmp.c:778 > +#: plugins/check_snmp.c:779 > #, fuzzy > msgid "Retries interval must be a positive integer" > msgstr "Time interval muss ein positiver Integer sein" > > -#: plugins/check_snmp.c:858 > +#: plugins/check_snmp.c:859 > #, fuzzy, c-format > msgid "Could not reallocate labels[%d]" > msgstr "Konnte addr nicht zuweisen\n" > > -#: plugins/check_snmp.c:871 > +#: plugins/check_snmp.c:872 > #, fuzzy > msgid "Could not reallocate labels\n" > msgstr "Konnte�url�nicht�zuweisen\n" > > -#: plugins/check_snmp.c:887 > +#: plugins/check_snmp.c:888 > #, fuzzy, c-format > msgid "Could not reallocate units [%d]\n" > msgstr "Konnte�url�nicht�zuweisen\n" > > -#: plugins/check_snmp.c:899 > +#: plugins/check_snmp.c:900 > msgid "Could not realloc() units\n" > msgstr "" > > -#: plugins/check_snmp.c:916 > +#: plugins/check_snmp.c:917 > #, fuzzy > msgid "Rate multiplier must be a positive integer" > msgstr "Paketgr�muss ein positiver Integer sein" > > -#: plugins/check_snmp.c:981 > +#: plugins/check_snmp.c:982 > #, fuzzy > msgid "No host specified\n" > msgstr "" > "Kein Hostname angegeben\n" > "\n" > > -#: plugins/check_snmp.c:985 > +#: plugins/check_snmp.c:986 > #, fuzzy > msgid "No OIDs specified\n" > msgstr "" > "Kein Hostname angegeben\n" > "\n" > > -#: plugins/check_snmp.c:1008 plugins/check_snmp.c:1026 > -#: plugins/check_snmp.c:1044 > +#: plugins/check_snmp.c:1009 plugins/check_snmp.c:1027 > +#: plugins/check_snmp.c:1045 > #, c-format > msgid "Required parameter: %s\n" > msgstr "" > > -#: plugins/check_snmp.c:1019 > +#: plugins/check_snmp.c:1020 > msgid "Invalid seclevel" > msgstr "" > > -#: plugins/check_snmp.c:1065 > +#: plugins/check_snmp.c:1066 > msgid "Invalid SNMP version" > msgstr "" > > -#: plugins/check_snmp.c:1082 > +#: plugins/check_snmp.c:1083 > msgid "Unbalanced quotes\n" > msgstr "" > > -#: plugins/check_snmp.c:1131 > +#: plugins/check_snmp.c:1132 > msgid "Check status of remote machines and obtain system information via SNMP" > msgstr "" > > -#: plugins/check_snmp.c:1145 > +#: plugins/check_snmp.c:1146 > msgid "Use SNMP GETNEXT instead of SNMP GET" > msgstr "" > > -#: plugins/check_snmp.c:1147 > +#: plugins/check_snmp.c:1148 > msgid "SNMP protocol version" > msgstr "" > > -#: plugins/check_snmp.c:1149 > +#: plugins/check_snmp.c:1150 > msgid "SNMPv3 context" > msgstr "" > > -#: plugins/check_snmp.c:1151 > +#: plugins/check_snmp.c:1152 > msgid "SNMPv3 securityLevel" > msgstr "" > > -#: plugins/check_snmp.c:1153 > +#: plugins/check_snmp.c:1154 > msgid "SNMPv3 auth proto" > msgstr "" > > -#: plugins/check_snmp.c:1155 > +#: plugins/check_snmp.c:1156 > msgid "SNMPv3 priv proto (default DES)" > msgstr "" > > -#: plugins/check_snmp.c:1159 > +#: plugins/check_snmp.c:1160 > msgid "Optional community string for SNMP communication" > msgstr "" > > -#: plugins/check_snmp.c:1160 > +#: plugins/check_snmp.c:1161 > msgid "default is" > msgstr "" > > -#: plugins/check_snmp.c:1162 > +#: plugins/check_snmp.c:1163 > msgid "SNMPv3 username" > msgstr "" > > -#: plugins/check_snmp.c:1164 > +#: plugins/check_snmp.c:1165 > msgid "SNMPv3 authentication password" > msgstr "" > > -#: plugins/check_snmp.c:1166 > +#: plugins/check_snmp.c:1167 > msgid "SNMPv3 privacy password" > msgstr "" > > -#: plugins/check_snmp.c:1170 > +#: plugins/check_snmp.c:1171 > msgid "Object identifier(s) or SNMP variables whose value you wish to query" > msgstr "" > > -#: plugins/check_snmp.c:1172 > +#: plugins/check_snmp.c:1173 > msgid "" > "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" > msgstr "" > > -#: plugins/check_snmp.c:1173 > +#: plugins/check_snmp.c:1174 > msgid "for symbolic OIDs.)" > msgstr "" > > -#: plugins/check_snmp.c:1175 > +#: plugins/check_snmp.c:1176 > msgid "Delimiter to use when parsing returned data. Default is" > msgstr "" > > -#: plugins/check_snmp.c:1176 > +#: plugins/check_snmp.c:1177 > msgid "Any data on the right hand side of the delimiter is considered" > msgstr "" > > -#: plugins/check_snmp.c:1177 > +#: plugins/check_snmp.c:1178 > msgid "to be the data that should be used in the evaluation." > msgstr "" > > -#: plugins/check_snmp.c:1181 > +#: plugins/check_snmp.c:1182 > #, fuzzy > msgid "Warning threshold range(s)" > msgstr "Warning threshold Integer sein" > > -#: plugins/check_snmp.c:1183 > +#: plugins/check_snmp.c:1184 > #, fuzzy > msgid "Critical threshold range(s)" > msgstr "Critical threshold muss ein Integer sein" > > -#: plugins/check_snmp.c:1185 > +#: plugins/check_snmp.c:1186 > msgid "Enable rate calculation. See 'Rate Calculation' below" > msgstr "" > > -#: plugins/check_snmp.c:1187 > +#: plugins/check_snmp.c:1188 > msgid "" > "Converts rate per second. For example, set to 60 to convert to per minute" > msgstr "" > > -#: plugins/check_snmp.c:1189 > +#: plugins/check_snmp.c:1190 > msgid "Add/substract the specified OFFSET to numeric sensor data" > msgstr "" > > -#: plugins/check_snmp.c:1193 > +#: plugins/check_snmp.c:1194 > msgid "Return OK state (for that OID) if STRING is an exact match" > msgstr "" > > -#: plugins/check_snmp.c:1195 > +#: plugins/check_snmp.c:1196 > msgid "" > "Return OK state (for that OID) if extended regular expression REGEX matches" > msgstr "" > > -#: plugins/check_snmp.c:1197 > +#: plugins/check_snmp.c:1198 > msgid "" > "Return OK state (for that OID) if case-insensitive extended REGEX matches" > msgstr "" > > -#: plugins/check_snmp.c:1199 > +#: plugins/check_snmp.c:1200 > msgid "Invert search result (CRITICAL if found)" > msgstr "" > > -#: plugins/check_snmp.c:1203 > +#: plugins/check_snmp.c:1204 > msgid "Prefix label for output from plugin" > msgstr "" > > -#: plugins/check_snmp.c:1205 > +#: plugins/check_snmp.c:1206 > msgid "Units label(s) for output data (e.g., 'sec.')." > msgstr "" > > -#: plugins/check_snmp.c:1207 > +#: plugins/check_snmp.c:1208 > msgid "Separates output on multiple OID requests" > msgstr "" > > -#: plugins/check_snmp.c:1210 > +#: plugins/check_snmp.c:1211 > msgid "" > "NOTE the final timeout value is calculated using this formula: " > "timeout_interval * retries + 5" > msgstr "" > > -#: plugins/check_snmp.c:1212 > +#: plugins/check_snmp.c:1213 > msgid "Number of retries to be used in the requests, default: " > msgstr "" > > -#: plugins/check_snmp.c:1215 > +#: plugins/check_snmp.c:1216 > msgid "Label performance data with OIDs instead of --label's" > msgstr "" > > -#: plugins/check_snmp.c:1220 > +#: plugins/check_snmp.c:1221 > msgid "" > "This plugin uses the 'snmpget' command included with the NET-SNMP package." > msgstr "" > > -#: plugins/check_snmp.c:1221 > +#: plugins/check_snmp.c:1222 > msgid "" > "if you don't have the package installed, you will need to download it from" > msgstr "" > > -#: plugins/check_snmp.c:1222 > +#: plugins/check_snmp.c:1223 > msgid "http://net-snmp.sourceforge.net before you can use this plugin." > msgstr "" > > -#: plugins/check_snmp.c:1226 > +#: plugins/check_snmp.c:1227 > msgid "" > "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " > msgstr "" > > -#: plugins/check_snmp.c:1227 > +#: plugins/check_snmp.c:1228 > msgid "list (lists with internal spaces must be quoted)." > msgstr "" > > -#: plugins/check_snmp.c:1231 > +#: plugins/check_snmp.c:1232 > msgid "" > "- When checking multiple OIDs, separate ranges by commas like '-w " > "1:10,1:,:20'" > msgstr "" > > -#: plugins/check_snmp.c:1232 > +#: plugins/check_snmp.c:1233 > msgid "- Note that only one string and one regex may be checked at present" > msgstr "" > > -#: plugins/check_snmp.c:1233 > +#: plugins/check_snmp.c:1234 > msgid "" > "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" > msgstr "" > > -#: plugins/check_snmp.c:1234 > +#: plugins/check_snmp.c:1235 > msgid "returned from the SNMP query is an unsigned integer." > msgstr "" > > -#: plugins/check_snmp.c:1237 > +#: plugins/check_snmp.c:1238 > msgid "Rate Calculation:" > msgstr "" > > -#: plugins/check_snmp.c:1238 > +#: plugins/check_snmp.c:1239 > msgid "In many places, SNMP returns counters that are only meaningful when" > msgstr "" > > -#: plugins/check_snmp.c:1239 > +#: plugins/check_snmp.c:1240 > msgid "calculating the counter difference since the last check. check_snmp" > msgstr "" > > -#: plugins/check_snmp.c:1240 > +#: plugins/check_snmp.c:1241 > msgid "saves the last state information in a file so that the rate per second" > msgstr "" > > -#: plugins/check_snmp.c:1241 > +#: plugins/check_snmp.c:1242 > msgid "can be calculated. Use the --rate option to save state information." > msgstr "" > > -#: plugins/check_snmp.c:1242 > +#: plugins/check_snmp.c:1243 > msgid "" > "On the first run, there will be no prior state - this will return with OK." > msgstr "" > > -#: plugins/check_snmp.c:1243 > +#: plugins/check_snmp.c:1244 > msgid "The state is uniquely determined by the arguments to the plugin, so" > msgstr "" > > -#: plugins/check_snmp.c:1244 > +#: plugins/check_snmp.c:1245 > msgid "changing the arguments will create a new state file." > msgstr "" > > Binary files /tmp/uSsyKPTDEh/monitoring-plugins-2.3/po/fr.gmo and /tmp/KGXYzMpszb/monitoring-plugins-2.3.1/po/fr.gmo differ > diff -Nru monitoring-plugins-2.3/po/fr.po monitoring-plugins-2.3.1/po/fr.po > --- monitoring-plugins-2.3/po/fr.po 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/po/fr.po 2021-04-10 16:17:21.000000000 +0200 > @@ -10,7 +10,7 @@ > msgstr "" > "Project-Id-Version: fr\n" > "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" > -"POT-Creation-Date: 2020-12-09 22:49+0100\n" > +"POT-Creation-Date: 2021-04-10 16:17+0200\n" > "PO-Revision-Date: 2010-04-21 23:38-0400\n" > "Last-Translator: Thomas Guyot-Sionnest <dermoth@aei.ca>\n" > "Language-Team: Nagios Plugin Development Mailing List <nagiosplug-" > @@ -67,7 +67,7 @@ > #: plugins/check_by_ssh.c:228 plugins/check_disk.c:519 > #: plugins/check_http.c:283 plugins/check_ldap.c:334 plugins/check_pgsql.c:312 > #: plugins/check_procs.c:437 plugins/check_radius.c:319 > -#: plugins/check_real.c:357 plugins/check_smtp.c:586 plugins/check_snmp.c:763 > +#: plugins/check_real.c:357 plugins/check_smtp.c:586 plugins/check_snmp.c:764 > #: plugins/check_ssh.c:140 plugins/check_tcp.c:519 plugins/check_time.c:302 > #: plugins/check_ups.c:556 plugins/negate.c:160 > msgid "Timeout interval must be a positive integer" > @@ -231,7 +231,7 @@ > "multiples options '-C)" > > #: plugins/check_by_ssh.c:453 plugins/check_cluster.c:271 > -#: plugins/check_dig.c:364 plugins/check_disk.c:973 plugins/check_http.c:1684 > +#: plugins/check_dig.c:364 plugins/check_disk.c:973 plugins/check_http.c:1688 > #: plugins/check_nagios.c:312 plugins/check_ntp.c:879 > #: plugins/check_ntp_peer.c:733 plugins/check_ntp_time.c:642 > #: plugins/check_procs.c:763 plugins/negate.c:249 plugins/urlize.c:179 > @@ -239,9 +239,9 @@ > msgstr "Exemples:" > > #: plugins/check_by_ssh.c:468 plugins/check_cluster.c:284 > -#: plugins/check_dig.c:376 plugins/check_disk.c:990 plugins/check_dns.c:574 > +#: plugins/check_dig.c:376 plugins/check_disk.c:990 plugins/check_dns.c:588 > #: plugins/check_dummy.c:122 plugins/check_fping.c:505 > -#: plugins/check_game.c:331 plugins/check_hpjd.c:438 plugins/check_http.c:1722 > +#: plugins/check_game.c:331 plugins/check_hpjd.c:438 plugins/check_http.c:1726 > #: plugins/check_ldap.c:508 plugins/check_load.c:348 plugins/check_mrtg.c:382 > #: plugins/check_mysql.c:584 plugins/check_nagios.c:323 plugins/check_nt.c:797 > #: plugins/check_ntp.c:898 plugins/check_ntp_peer.c:753 > @@ -249,7 +249,7 @@ > #: plugins/check_overcr.c:467 plugins/check_pgsql.c:579 > #: plugins/check_ping.c:610 plugins/check_procs.c:786 > #: plugins/check_radius.c:396 plugins/check_real.c:452 > -#: plugins/check_smtp.c:850 plugins/check_snmp.c:1254 plugins/check_ssh.c:325 > +#: plugins/check_smtp.c:850 plugins/check_snmp.c:1255 plugins/check_ssh.c:325 > #: plugins/check_swap.c:571 plugins/check_tcp.c:710 plugins/check_time.c:371 > #: plugins/check_ups.c:660 plugins/check_users.c:262 > #: plugins/check_ide_smart.c:606 plugins/negate.c:273 plugins/urlize.c:196 > @@ -299,11 +299,11 @@ > msgstr "virgules" > > #: plugins/check_cluster.c:267 plugins/check_game.c:318 > -#: plugins/check_http.c:1666 plugins/check_ldap.c:494 plugins/check_mrtg.c:363 > +#: plugins/check_http.c:1670 plugins/check_ldap.c:494 plugins/check_mrtg.c:363 > #: plugins/check_mrtgtraf.c:361 plugins/check_mysql.c:573 > #: plugins/check_nt.c:781 plugins/check_ntp.c:875 plugins/check_ntp_peer.c:724 > #: plugins/check_ntp_time.c:633 plugins/check_nwstat.c:1670 > -#: plugins/check_overcr.c:456 plugins/check_snmp.c:1225 > +#: plugins/check_overcr.c:456 plugins/check_snmp.c:1226 > #: plugins/check_swap.c:559 plugins/check_ups.c:642 > #: plugins/check_ide_smart.c:580 plugins/negate.c:255 > #: plugins-root/check_icmp.c:1590 > @@ -799,12 +799,12 @@ > msgstr "DNS à échoué pour %s\n" > > #: plugins/check_dns.c:455 plugins/check_dns.c:463 plugins/check_dns.c:470 > -#: plugins/check_dns.c:475 plugins/check_dns.c:500 plugins/check_dns.c:508 > +#: plugins/check_dns.c:475 plugins/check_dns.c:514 plugins/check_dns.c:522 > #: plugins/check_game.c:211 plugins/check_game.c:219 > msgid "Input buffer overflow\n" > msgstr "Le tampon d'entrée a débordé\n" > > -#: plugins/check_dns.c:536 > +#: plugins/check_dns.c:550 > msgid "" > "This plugin uses the nslookup program to obtain the IP address for the given " > "host/domain query." > @@ -812,11 +812,11 @@ > "Ce plugin utilise le programme nslookup pour obtenir l'adresse IP de l'hôte/" > "domaine à interroger." > > -#: plugins/check_dns.c:537 > +#: plugins/check_dns.c:551 > msgid "An optional DNS server to use may be specified." > msgstr "Un serveur DNS à utiliser peut être indiqué." > > -#: plugins/check_dns.c:538 > +#: plugins/check_dns.c:552 > msgid "" > "If no DNS server is specified, the default server(s) specified in /etc/" > "resolv.conf will be used." > @@ -824,54 +824,54 @@ > "Si aucun serveur DNS n'est spécifié, les serveurs spécifiés dans /etc/resolv." > "conf seront utilisé." > > -#: plugins/check_dns.c:548 > +#: plugins/check_dns.c:562 > msgid "The name or address you want to query" > msgstr "Le nom ou l'adresse que vous voulez interroger" > > -#: plugins/check_dns.c:550 > +#: plugins/check_dns.c:564 > msgid "Optional DNS server you want to use for the lookup" > msgstr "Serveur DNS que vous voulez utiliser pour la recherche" > > -#: plugins/check_dns.c:552 > +#: plugins/check_dns.c:566 > #, fuzzy > msgid "" > "Optional IP-ADDRESS/CIDR you expect the DNS server to return. HOST must end" > msgstr "" > "Adresse IP que le serveur DNS doit retourner. Les hôtes doivent se terminer " > > -#: plugins/check_dns.c:553 > +#: plugins/check_dns.c:567 > #, fuzzy > msgid "" > "with a dot (.). This option can be repeated multiple times (Returns OK if any" > msgstr "avec un point (.). Cette option peut être répétée (Retourne OK si une" > > -#: plugins/check_dns.c:554 > +#: plugins/check_dns.c:568 > msgid "value matches)." > msgstr "" > > -#: plugins/check_dns.c:556 > +#: plugins/check_dns.c:570 > msgid "Optionally expect the DNS server to be authoritative for the lookup" > msgstr "Serveur DNS qui doit normalement être autoritaire pour la recherche" > > -#: plugins/check_dns.c:558 > +#: plugins/check_dns.c:572 > msgid "Return warning if elapsed time exceeds value. Default off" > msgstr "" > "Renvoie une alerte si le temps écoulé dépasse la valeur indiquée. Désactivé " > "par défaut" > > -#: plugins/check_dns.c:560 > +#: plugins/check_dns.c:574 > msgid "Return critical if elapsed time exceeds value. Default off" > msgstr "" > "Renvoie critique si le temps utilisé dépasse la valeur indiquée. Désactivé " > "par défaut" > > -#: plugins/check_dns.c:562 > +#: plugins/check_dns.c:576 > msgid "" > "Return critical if the list of expected addresses does not match all " > "addresses" > msgstr "" > > -#: plugins/check_dns.c:563 > +#: plugins/check_dns.c:577 > msgid "returned. Default off" > msgstr "" > > @@ -1479,317 +1479,328 @@ > msgid "certificate expiration times." > msgstr "et rapporter la date d'expiration du certificat." > > -#: plugins/check_http.c:1570 > +#: plugins/check_http.c:1571 > +#, c-format > +msgid "In the first form, make an HTTP request." > +msgstr "" > + > +#: plugins/check_http.c:1572 > +#, c-format > +msgid "" > +"In the second form, connect to the server and check the TLS certificate." > +msgstr "" > + > +#: plugins/check_http.c:1574 > #, c-format > msgid "NOTE: One or both of -H and -I must be specified" > msgstr "NOTE: les paramètres -H et -I peuvent être spécifiés" > > -#: plugins/check_http.c:1578 > +#: plugins/check_http.c:1582 > msgid "Host name argument for servers using host headers (virtual host)" > msgstr "" > > -#: plugins/check_http.c:1579 > +#: plugins/check_http.c:1583 > msgid "Append a port to include it in the header (eg: example.com:5000)" > msgstr "" > > -#: plugins/check_http.c:1581 > +#: plugins/check_http.c:1585 > msgid "" > "IP address or name (use numeric address if possible to bypass DNS lookup)." > msgstr "" > > -#: plugins/check_http.c:1583 > +#: plugins/check_http.c:1587 > msgid "Port number (default: " > msgstr "Numéro du port (défaut: " > > -#: plugins/check_http.c:1590 > +#: plugins/check_http.c:1594 > msgid "" > "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" > msgstr "" > > -#: plugins/check_http.c:1591 > +#: plugins/check_http.c:1595 > msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1," > msgstr "" > > -#: plugins/check_http.c:1592 > +#: plugins/check_http.c:1596 > msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted." > msgstr "" > > -#: plugins/check_http.c:1594 > +#: plugins/check_http.c:1598 > msgid "Enable SSL/TLS hostname extension support (SNI)" > msgstr "" > > -#: plugins/check_http.c:1596 > +#: plugins/check_http.c:1600 > msgid "" > "Minimum number of days a certificate has to be valid. Port defaults to 443" > msgstr "" > "Nombre de jours minimum pour que le certificat soit valide. Port par défaut " > "443" > > -#: plugins/check_http.c:1597 > +#: plugins/check_http.c:1601 > msgid "(when this option is used the URL is not checked.)" > msgstr "" > > -#: plugins/check_http.c:1599 > +#: plugins/check_http.c:1603 > msgid "Name of file that contains the client certificate (PEM format)" > msgstr "" > > -#: plugins/check_http.c:1600 > +#: plugins/check_http.c:1604 > msgid "to be used in establishing the SSL session" > msgstr "" > > -#: plugins/check_http.c:1602 > +#: plugins/check_http.c:1606 > msgid "Name of file containing the private key (PEM format)" > msgstr "" > > -#: plugins/check_http.c:1603 > +#: plugins/check_http.c:1607 > msgid "matching the client certificate" > msgstr "" > > -#: plugins/check_http.c:1607 > +#: plugins/check_http.c:1611 > msgid "Comma-delimited list of strings, at least one of them is expected in" > msgstr "" > "Liste the chaines de charactères séparées par des virgules, au moins une " > "d'elles" > > -#: plugins/check_http.c:1608 > +#: plugins/check_http.c:1612 > msgid "the first (status) line of the server response (default: " > msgstr "est attendue dans la première ligne de réponse du serveur (défaut: " > > -#: plugins/check_http.c:1610 > +#: plugins/check_http.c:1614 > msgid "" > "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" > msgstr "" > "Si spécifié, surpasse toute autre logique de status (ex: 3xx, 4xx, 5xx)" > > -#: plugins/check_http.c:1612 > +#: plugins/check_http.c:1616 > #, fuzzy > msgid "String to expect in the response headers" > msgstr "Chaîne de caractères à attendre en réponse" > > -#: plugins/check_http.c:1614 > +#: plugins/check_http.c:1618 > msgid "String to expect in the content" > msgstr "Chaîne de caractère attendue dans le contenu" > > -#: plugins/check_http.c:1616 > +#: plugins/check_http.c:1620 > msgid "URL to GET or POST (default: /)" > msgstr "URL pour le GET ou le POST (défaut: /)" > > -#: plugins/check_http.c:1618 > +#: plugins/check_http.c:1622 > msgid "URL encoded http POST data" > msgstr "" > > -#: plugins/check_http.c:1620 > +#: plugins/check_http.c:1624 > msgid "Set HTTP method." > msgstr "" > > -#: plugins/check_http.c:1622 > +#: plugins/check_http.c:1626 > msgid "Don't wait for document body: stop reading after headers." > msgstr "" > "Ne pas attendre pour le corps du document: arrêter de lire après les entêtes" > > -#: plugins/check_http.c:1623 > +#: plugins/check_http.c:1627 > msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" > msgstr "(Veuillez noter qu'un HTTP GET ou POST est effectué, pas un HEAD.)" > > -#: plugins/check_http.c:1625 > +#: plugins/check_http.c:1629 > msgid "Warn if document is more than SECONDS old. the number can also be of" > msgstr "" > > -#: plugins/check_http.c:1626 > +#: plugins/check_http.c:1630 > msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." > msgstr "" > > -#: plugins/check_http.c:1628 > +#: plugins/check_http.c:1632 > msgid "specify Content-Type header media type when POSTing\n" > msgstr "" > > -#: plugins/check_http.c:1631 > +#: plugins/check_http.c:1635 > msgid "Allow regex to span newlines (must precede -r or -R)" > msgstr "" > > -#: plugins/check_http.c:1633 > +#: plugins/check_http.c:1637 > msgid "Search page for regex STRING" > msgstr "" > > -#: plugins/check_http.c:1635 > +#: plugins/check_http.c:1639 > msgid "Search page for case-insensitive regex STRING" > msgstr "" > > -#: plugins/check_http.c:1637 > +#: plugins/check_http.c:1641 > msgid "Return CRITICAL if found, OK if not\n" > msgstr "" > > -#: plugins/check_http.c:1640 > +#: plugins/check_http.c:1644 > msgid "Username:password on sites with basic authentication" > msgstr "" > > -#: plugins/check_http.c:1642 > +#: plugins/check_http.c:1646 > msgid "Username:password on proxy-servers with basic authentication" > msgstr "" > > -#: plugins/check_http.c:1644 > +#: plugins/check_http.c:1648 > msgid "String to be sent in http header as \"User Agent\"" > msgstr "" > > -#: plugins/check_http.c:1646 > +#: plugins/check_http.c:1650 > msgid "" > "Any other tags to be sent in http header. Use multiple times for additional " > "headers" > msgstr "" > > -#: plugins/check_http.c:1648 > +#: plugins/check_http.c:1652 > msgid "Print additional performance data" > msgstr "" > > -#: plugins/check_http.c:1650 > +#: plugins/check_http.c:1654 > msgid "Print body content below status line" > msgstr "" > > -#: plugins/check_http.c:1652 > +#: plugins/check_http.c:1656 > msgid "Wrap output in HTML link (obsoleted by urlize)" > msgstr "" > > -#: plugins/check_http.c:1654 > +#: plugins/check_http.c:1658 > msgid "How to handle redirected pages. sticky is like follow but stick to the" > msgstr "" > > -#: plugins/check_http.c:1655 > +#: plugins/check_http.c:1659 > msgid "specified IP address. stickyport also ensures port stays the same." > msgstr "" > > -#: plugins/check_http.c:1657 > +#: plugins/check_http.c:1661 > msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" > msgstr "" > > -#: plugins/check_http.c:1667 > +#: plugins/check_http.c:1671 > msgid "This plugin will attempt to open an HTTP connection with the host." > msgstr "Ce plugin va essayer d'ouvrir un connexion SMTP avec l'hôte." > > -#: plugins/check_http.c:1668 > +#: plugins/check_http.c:1672 > msgid "" > "Successful connects return STATE_OK, refusals and timeouts return " > "STATE_CRITICAL" > msgstr "" > > -#: plugins/check_http.c:1669 > +#: plugins/check_http.c:1673 > msgid "" > "other errors return STATE_UNKNOWN. Successful connects, but incorrect " > "response" > msgstr "" > > -#: plugins/check_http.c:1670 > +#: plugins/check_http.c:1674 > msgid "" > "messages from the host result in STATE_WARNING return values. If you are" > msgstr "" > > -#: plugins/check_http.c:1671 > +#: plugins/check_http.c:1675 > msgid "" > "checking a virtual server that uses 'host headers' you must supply the FQDN" > msgstr "" > > -#: plugins/check_http.c:1672 > +#: plugins/check_http.c:1676 > msgid "(fully qualified domain name) as the [host_name] argument." > msgstr "" > > -#: plugins/check_http.c:1676 > +#: plugins/check_http.c:1680 > msgid "This plugin can also check whether an SSL enabled web server is able to" > msgstr "" > > -#: plugins/check_http.c:1677 > +#: plugins/check_http.c:1681 > msgid "serve content (optionally within a specified time) or whether the X509 " > msgstr "" > > -#: plugins/check_http.c:1678 > +#: plugins/check_http.c:1682 > msgid "certificate is still valid for the specified number of days." > msgstr "" > > -#: plugins/check_http.c:1680 > +#: plugins/check_http.c:1684 > #, fuzzy > msgid "Please note that this plugin does not check if the presented server" > msgstr "Ce plugin vérifie le service ntp sur l'hôte" > > -#: plugins/check_http.c:1681 > +#: plugins/check_http.c:1685 > msgid "certificate matches the hostname of the server, or if the certificate" > msgstr "" > > -#: plugins/check_http.c:1682 > +#: plugins/check_http.c:1686 > msgid "has a valid chain of trust to one of the locally installed CAs." > msgstr "" > > -#: plugins/check_http.c:1686 > +#: plugins/check_http.c:1690 > msgid "" > "When the 'www.verisign.com' server returns its content within 5 seconds," > msgstr "" > > -#: plugins/check_http.c:1687 plugins/check_http.c:1706 > +#: plugins/check_http.c:1691 plugins/check_http.c:1710 > msgid "" > "a STATE_OK will be returned. When the server returns its content but exceeds" > msgstr "" > > -#: plugins/check_http.c:1688 plugins/check_http.c:1707 > +#: plugins/check_http.c:1692 plugins/check_http.c:1711 > msgid "" > "the 5-second threshold, a STATE_WARNING will be returned. When an error " > "occurs," > msgstr "" > > -#: plugins/check_http.c:1689 > +#: plugins/check_http.c:1693 > msgid "a STATE_CRITICAL will be returned." > msgstr "" > > -#: plugins/check_http.c:1692 > +#: plugins/check_http.c:1696 > msgid "" > "When the certificate of 'www.verisign.com' is valid for more than 14 days," > msgstr "" > > -#: plugins/check_http.c:1693 plugins/check_http.c:1699 > +#: plugins/check_http.c:1697 plugins/check_http.c:1703 > msgid "" > "a STATE_OK is returned. When the certificate is still valid, but for less " > "than" > msgstr "" > > -#: plugins/check_http.c:1694 > +#: plugins/check_http.c:1698 > msgid "" > "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" > msgstr "" > > -#: plugins/check_http.c:1695 > +#: plugins/check_http.c:1699 > msgid "the certificate is expired." > msgstr "le certificat est expiré." > > -#: plugins/check_http.c:1698 > +#: plugins/check_http.c:1702 > msgid "" > "When the certificate of 'www.verisign.com' is valid for more than 30 days," > msgstr "" > > -#: plugins/check_http.c:1700 > +#: plugins/check_http.c:1704 > msgid "30 days, but more than 14 days, a STATE_WARNING is returned." > msgstr "" > > -#: plugins/check_http.c:1701 > +#: plugins/check_http.c:1705 > msgid "" > "A STATE_CRITICAL will be returned when certificate expires in less than 14 " > "days" > msgstr "" > > -#: plugins/check_http.c:1704 > +#: plugins/check_http.c:1708 > msgid "" > "check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j " > "CONNECT -H www.verisign.com " > msgstr "" > > -#: plugins/check_http.c:1705 > +#: plugins/check_http.c:1709 > msgid "" > "all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -S" > "(sl) -j CONNECT -H <webserver>" > msgstr "" > > -#: plugins/check_http.c:1708 > +#: plugins/check_http.c:1712 > msgid "" > "a STATE_CRITICAL will be returned. By adding a colon to the method you can " > "set the method used" > msgstr "" > > -#: plugins/check_http.c:1709 > +#: plugins/check_http.c:1713 > msgid "inside the proxied connection: -j CONNECT:POST" > msgstr "" > > @@ -4599,7 +4610,7 @@ > msgid "Invalid SMTP response received from host on port %d: %s\n" > msgstr "Réponse SMTP reçue de l'hôte sur le port %d invalide: %s\n" > > -#: plugins/check_smtp.c:308 plugins/check_snmp.c:833 > +#: plugins/check_smtp.c:308 plugins/check_snmp.c:834 > #, c-format > msgid "Could Not Compile Regular Expression" > msgstr "Impossible de compiler l'expression rationnelle" > @@ -4764,7 +4775,7 @@ > msgid "STATE_WARNING return values." > msgstr "" > > -#: plugins/check_snmp.c:171 plugins/check_snmp.c:603 > +#: plugins/check_snmp.c:171 plugins/check_snmp.c:604 > msgid "Cannot malloc" > msgstr "" > > @@ -4787,290 +4798,290 @@ > msgid "Time duration between plugin calls is invalid" > msgstr "" > > -#: plugins/check_snmp.c:609 > +#: plugins/check_snmp.c:610 > msgid "Cannot asprintf()" > msgstr "" > > -#: plugins/check_snmp.c:615 > +#: plugins/check_snmp.c:616 > #, fuzzy > msgid "Cannot realloc()" > msgstr "Impossible de réallouer des unités\n" > > -#: plugins/check_snmp.c:631 > +#: plugins/check_snmp.c:632 > msgid "No previous data to calculate rate - assume okay" > msgstr "" > > -#: plugins/check_snmp.c:778 > +#: plugins/check_snmp.c:779 > msgid "Retries interval must be a positive integer" > msgstr "L'intervalle pour les essais doit être un entier positif" > > -#: plugins/check_snmp.c:858 > +#: plugins/check_snmp.c:859 > #, c-format > msgid "Could not reallocate labels[%d]" > msgstr "Impossible de réallouer des labels[%d]" > > -#: plugins/check_snmp.c:871 > +#: plugins/check_snmp.c:872 > msgid "Could not reallocate labels\n" > msgstr "Impossible de réallouer des labels\n" > > -#: plugins/check_snmp.c:887 > +#: plugins/check_snmp.c:888 > #, c-format > msgid "Could not reallocate units [%d]\n" > msgstr "Impossible de réallouer des unités [%d]\n" > > -#: plugins/check_snmp.c:899 > +#: plugins/check_snmp.c:900 > msgid "Could not realloc() units\n" > msgstr "Impossible de réallouer des unités\n" > > -#: plugins/check_snmp.c:916 > +#: plugins/check_snmp.c:917 > #, fuzzy > msgid "Rate multiplier must be a positive integer" > msgstr "La taille du paquet doit être un entier positif" > > -#: plugins/check_snmp.c:981 > +#: plugins/check_snmp.c:982 > msgid "No host specified\n" > msgstr "Pas d'hôte spécifié\n" > > -#: plugins/check_snmp.c:985 > +#: plugins/check_snmp.c:986 > msgid "No OIDs specified\n" > msgstr "Pas de compteur spécifié\n" > > -#: plugins/check_snmp.c:1008 plugins/check_snmp.c:1026 > -#: plugins/check_snmp.c:1044 > +#: plugins/check_snmp.c:1009 plugins/check_snmp.c:1027 > +#: plugins/check_snmp.c:1045 > #, c-format > msgid "Required parameter: %s\n" > msgstr "" > > -#: plugins/check_snmp.c:1019 > +#: plugins/check_snmp.c:1020 > msgid "Invalid seclevel" > msgstr "" > > -#: plugins/check_snmp.c:1065 > +#: plugins/check_snmp.c:1066 > msgid "Invalid SNMP version" > msgstr "Version de SNMP invalide" > > -#: plugins/check_snmp.c:1082 > +#: plugins/check_snmp.c:1083 > msgid "Unbalanced quotes\n" > msgstr "Guillemets manquants\n" > > -#: plugins/check_snmp.c:1131 > +#: plugins/check_snmp.c:1132 > msgid "Check status of remote machines and obtain system information via SNMP" > msgstr "" > "Vérifie l'état des machines distantes et obtient l'information système via " > "SNMP" > > -#: plugins/check_snmp.c:1145 > +#: plugins/check_snmp.c:1146 > msgid "Use SNMP GETNEXT instead of SNMP GET" > msgstr "Utiliser SNMP GETNEXT au lieu de SNMP GET" > > -#: plugins/check_snmp.c:1147 > +#: plugins/check_snmp.c:1148 > msgid "SNMP protocol version" > msgstr "Version du protocole SNMP" > > -#: plugins/check_snmp.c:1149 > +#: plugins/check_snmp.c:1150 > #, fuzzy > msgid "SNMPv3 context" > msgstr "Nom d'utilisateur SNMPv3" > > -#: plugins/check_snmp.c:1151 > +#: plugins/check_snmp.c:1152 > msgid "SNMPv3 securityLevel" > msgstr "Niveau de sécurité SNMPv3 (securityLevel)" > > -#: plugins/check_snmp.c:1153 > +#: plugins/check_snmp.c:1154 > msgid "SNMPv3 auth proto" > msgstr "Protocole d'authentification SNMPv3" > > -#: plugins/check_snmp.c:1155 > +#: plugins/check_snmp.c:1156 > msgid "SNMPv3 priv proto (default DES)" > msgstr "" > > -#: plugins/check_snmp.c:1159 > +#: plugins/check_snmp.c:1160 > msgid "Optional community string for SNMP communication" > msgstr "Communauté optionnelle pour la communication SNMP" > > -#: plugins/check_snmp.c:1160 > +#: plugins/check_snmp.c:1161 > msgid "default is" > msgstr "défaut:" > > -#: plugins/check_snmp.c:1162 > +#: plugins/check_snmp.c:1163 > msgid "SNMPv3 username" > msgstr "Nom d'utilisateur SNMPv3" > > -#: plugins/check_snmp.c:1164 > +#: plugins/check_snmp.c:1165 > msgid "SNMPv3 authentication password" > msgstr "Mot de passe d'authentification SNMPv3" > > -#: plugins/check_snmp.c:1166 > +#: plugins/check_snmp.c:1167 > msgid "SNMPv3 privacy password" > msgstr "Mot de passe de confidentialité SNMPv3" > > -#: plugins/check_snmp.c:1170 > +#: plugins/check_snmp.c:1171 > msgid "Object identifier(s) or SNMP variables whose value you wish to query" > msgstr "" > > -#: plugins/check_snmp.c:1172 > +#: plugins/check_snmp.c:1173 > msgid "" > "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" > msgstr "" > > -#: plugins/check_snmp.c:1173 > +#: plugins/check_snmp.c:1174 > msgid "for symbolic OIDs.)" > msgstr "" > > -#: plugins/check_snmp.c:1175 > +#: plugins/check_snmp.c:1176 > msgid "Delimiter to use when parsing returned data. Default is" > msgstr "" > > -#: plugins/check_snmp.c:1176 > +#: plugins/check_snmp.c:1177 > msgid "Any data on the right hand side of the delimiter is considered" > msgstr "" > > -#: plugins/check_snmp.c:1177 > +#: plugins/check_snmp.c:1178 > msgid "to be the data that should be used in the evaluation." > msgstr "" > > -#: plugins/check_snmp.c:1181 > +#: plugins/check_snmp.c:1182 > msgid "Warning threshold range(s)" > msgstr "Valeurs pour le seuil d'avertissement" > > -#: plugins/check_snmp.c:1183 > +#: plugins/check_snmp.c:1184 > msgid "Critical threshold range(s)" > msgstr "Valeurs pour le seuil critique" > > -#: plugins/check_snmp.c:1185 > +#: plugins/check_snmp.c:1186 > msgid "Enable rate calculation. See 'Rate Calculation' below" > msgstr "" > > -#: plugins/check_snmp.c:1187 > +#: plugins/check_snmp.c:1188 > msgid "" > "Converts rate per second. For example, set to 60 to convert to per minute" > msgstr "" > > -#: plugins/check_snmp.c:1189 > +#: plugins/check_snmp.c:1190 > msgid "Add/substract the specified OFFSET to numeric sensor data" > msgstr "" > > -#: plugins/check_snmp.c:1193 > +#: plugins/check_snmp.c:1194 > msgid "Return OK state (for that OID) if STRING is an exact match" > msgstr "" > > -#: plugins/check_snmp.c:1195 > +#: plugins/check_snmp.c:1196 > msgid "" > "Return OK state (for that OID) if extended regular expression REGEX matches" > msgstr "" > > -#: plugins/check_snmp.c:1197 > +#: plugins/check_snmp.c:1198 > msgid "" > "Return OK state (for that OID) if case-insensitive extended REGEX matches" > msgstr "" > > -#: plugins/check_snmp.c:1199 > +#: plugins/check_snmp.c:1200 > msgid "Invert search result (CRITICAL if found)" > msgstr "" > > -#: plugins/check_snmp.c:1203 > +#: plugins/check_snmp.c:1204 > msgid "Prefix label for output from plugin" > msgstr "" > > -#: plugins/check_snmp.c:1205 > +#: plugins/check_snmp.c:1206 > msgid "Units label(s) for output data (e.g., 'sec.')." > msgstr "" > > -#: plugins/check_snmp.c:1207 > +#: plugins/check_snmp.c:1208 > msgid "Separates output on multiple OID requests" > msgstr "" > > -#: plugins/check_snmp.c:1210 > +#: plugins/check_snmp.c:1211 > msgid "" > "NOTE the final timeout value is calculated using this formula: " > "timeout_interval * retries + 5" > msgstr "" > > -#: plugins/check_snmp.c:1212 > +#: plugins/check_snmp.c:1213 > #, fuzzy > msgid "Number of retries to be used in the requests, default: " > msgstr "Le nombre d'essai pour les requêtes" > > -#: plugins/check_snmp.c:1215 > +#: plugins/check_snmp.c:1216 > msgid "Label performance data with OIDs instead of --label's" > msgstr "" > > -#: plugins/check_snmp.c:1220 > +#: plugins/check_snmp.c:1221 > msgid "" > "This plugin uses the 'snmpget' command included with the NET-SNMP package." > msgstr "" > > -#: plugins/check_snmp.c:1221 > +#: plugins/check_snmp.c:1222 > msgid "" > "if you don't have the package installed, you will need to download it from" > msgstr "" > "Si vous n'avez pas le programme installé, vous devrez le télécharger depuis" > > -#: plugins/check_snmp.c:1222 > +#: plugins/check_snmp.c:1223 > msgid "http://net-snmp.sourceforge.net before you can use this plugin." > msgstr "http://net-snmp.sourceforge.net avant de pouvoir utiliser ce plugin." > > -#: plugins/check_snmp.c:1226 > +#: plugins/check_snmp.c:1227 > #, fuzzy > msgid "" > "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " > msgstr "" > "- Des OIDs multiples peuvent être séparées par des virgules ou des espaces" > > -#: plugins/check_snmp.c:1227 > +#: plugins/check_snmp.c:1228 > #, fuzzy > msgid "list (lists with internal spaces must be quoted)." > msgstr "(Les liste avec espaces doivent être entre guillemets). Max:" > > -#: plugins/check_snmp.c:1231 > +#: plugins/check_snmp.c:1232 > msgid "" > "- When checking multiple OIDs, separate ranges by commas like '-w " > "1:10,1:,:20'" > msgstr "" > > -#: plugins/check_snmp.c:1232 > +#: plugins/check_snmp.c:1233 > msgid "- Note that only one string and one regex may be checked at present" > msgstr "" > > -#: plugins/check_snmp.c:1233 > +#: plugins/check_snmp.c:1234 > msgid "" > "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" > msgstr "" > > -#: plugins/check_snmp.c:1234 > +#: plugins/check_snmp.c:1235 > msgid "returned from the SNMP query is an unsigned integer." > msgstr "" > > -#: plugins/check_snmp.c:1237 > +#: plugins/check_snmp.c:1238 > msgid "Rate Calculation:" > msgstr "" > > -#: plugins/check_snmp.c:1238 > +#: plugins/check_snmp.c:1239 > msgid "In many places, SNMP returns counters that are only meaningful when" > msgstr "" > > -#: plugins/check_snmp.c:1239 > +#: plugins/check_snmp.c:1240 > msgid "calculating the counter difference since the last check. check_snmp" > msgstr "" > > -#: plugins/check_snmp.c:1240 > +#: plugins/check_snmp.c:1241 > msgid "saves the last state information in a file so that the rate per second" > msgstr "" > > -#: plugins/check_snmp.c:1241 > +#: plugins/check_snmp.c:1242 > msgid "can be calculated. Use the --rate option to save state information." > msgstr "" > > -#: plugins/check_snmp.c:1242 > +#: plugins/check_snmp.c:1243 > msgid "" > "On the first run, there will be no prior state - this will return with OK." > msgstr "" > > -#: plugins/check_snmp.c:1243 > +#: plugins/check_snmp.c:1244 > msgid "The state is uniquely determined by the arguments to the plugin, so" > msgstr "" > > -#: plugins/check_snmp.c:1244 > +#: plugins/check_snmp.c:1245 > msgid "changing the arguments will create a new state file." > msgstr "" > > diff -Nru monitoring-plugins-2.3/po/monitoring-plugins.pot monitoring-plugins-2.3.1/po/monitoring-plugins.pot > --- monitoring-plugins-2.3/po/monitoring-plugins.pot 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/po/monitoring-plugins.pot 2021-04-10 16:17:21.000000000 +0200 > @@ -8,7 +8,7 @@ > msgstr "" > "Project-Id-Version: PACKAGE VERSION\n" > "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" > -"POT-Creation-Date: 2020-12-09 22:49+0100\n" > +"POT-Creation-Date: 2021-04-10 16:17+0200\n" > "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" > "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" > "Language-Team: LANGUAGE <LL@li.org>\n" > @@ -63,7 +63,7 @@ > #: plugins/check_by_ssh.c:228 plugins/check_disk.c:519 > #: plugins/check_http.c:283 plugins/check_ldap.c:334 plugins/check_pgsql.c:312 > #: plugins/check_procs.c:437 plugins/check_radius.c:319 > -#: plugins/check_real.c:357 plugins/check_smtp.c:586 plugins/check_snmp.c:763 > +#: plugins/check_real.c:357 plugins/check_smtp.c:586 plugins/check_snmp.c:764 > #: plugins/check_ssh.c:140 plugins/check_tcp.c:519 plugins/check_time.c:302 > #: plugins/check_ups.c:556 plugins/negate.c:160 > msgid "Timeout interval must be a positive integer" > @@ -216,7 +216,7 @@ > msgstr "" > > #: plugins/check_by_ssh.c:453 plugins/check_cluster.c:271 > -#: plugins/check_dig.c:364 plugins/check_disk.c:973 plugins/check_http.c:1684 > +#: plugins/check_dig.c:364 plugins/check_disk.c:973 plugins/check_http.c:1688 > #: plugins/check_nagios.c:312 plugins/check_ntp.c:879 > #: plugins/check_ntp_peer.c:733 plugins/check_ntp_time.c:642 > #: plugins/check_procs.c:763 plugins/negate.c:249 plugins/urlize.c:179 > @@ -224,9 +224,9 @@ > msgstr "" > > #: plugins/check_by_ssh.c:468 plugins/check_cluster.c:284 > -#: plugins/check_dig.c:376 plugins/check_disk.c:990 plugins/check_dns.c:574 > +#: plugins/check_dig.c:376 plugins/check_disk.c:990 plugins/check_dns.c:588 > #: plugins/check_dummy.c:122 plugins/check_fping.c:505 > -#: plugins/check_game.c:331 plugins/check_hpjd.c:438 plugins/check_http.c:1722 > +#: plugins/check_game.c:331 plugins/check_hpjd.c:438 plugins/check_http.c:1726 > #: plugins/check_ldap.c:508 plugins/check_load.c:348 plugins/check_mrtg.c:382 > #: plugins/check_mysql.c:584 plugins/check_nagios.c:323 plugins/check_nt.c:797 > #: plugins/check_ntp.c:898 plugins/check_ntp_peer.c:753 > @@ -234,7 +234,7 @@ > #: plugins/check_overcr.c:467 plugins/check_pgsql.c:579 > #: plugins/check_ping.c:610 plugins/check_procs.c:786 > #: plugins/check_radius.c:396 plugins/check_real.c:452 > -#: plugins/check_smtp.c:850 plugins/check_snmp.c:1254 plugins/check_ssh.c:325 > +#: plugins/check_smtp.c:850 plugins/check_snmp.c:1255 plugins/check_ssh.c:325 > #: plugins/check_swap.c:571 plugins/check_tcp.c:710 plugins/check_time.c:371 > #: plugins/check_ups.c:660 plugins/check_users.c:262 > #: plugins/check_ide_smart.c:606 plugins/negate.c:273 plugins/urlize.c:196 > @@ -284,11 +284,11 @@ > msgstr "" > > #: plugins/check_cluster.c:267 plugins/check_game.c:318 > -#: plugins/check_http.c:1666 plugins/check_ldap.c:494 plugins/check_mrtg.c:363 > +#: plugins/check_http.c:1670 plugins/check_ldap.c:494 plugins/check_mrtg.c:363 > #: plugins/check_mrtgtraf.c:361 plugins/check_mysql.c:573 > #: plugins/check_nt.c:781 plugins/check_ntp.c:875 plugins/check_ntp_peer.c:724 > #: plugins/check_ntp_time.c:633 plugins/check_nwstat.c:1670 > -#: plugins/check_overcr.c:456 plugins/check_snmp.c:1225 > +#: plugins/check_overcr.c:456 plugins/check_snmp.c:1226 > #: plugins/check_swap.c:559 plugins/check_ups.c:642 > #: plugins/check_ide_smart.c:580 plugins/negate.c:255 > #: plugins-root/check_icmp.c:1590 > @@ -753,68 +753,68 @@ > msgstr "" > > #: plugins/check_dns.c:455 plugins/check_dns.c:463 plugins/check_dns.c:470 > -#: plugins/check_dns.c:475 plugins/check_dns.c:500 plugins/check_dns.c:508 > +#: plugins/check_dns.c:475 plugins/check_dns.c:514 plugins/check_dns.c:522 > #: plugins/check_game.c:211 plugins/check_game.c:219 > msgid "Input buffer overflow\n" > msgstr "" > > -#: plugins/check_dns.c:536 > +#: plugins/check_dns.c:550 > msgid "" > "This plugin uses the nslookup program to obtain the IP address for the given " > "host/domain query." > msgstr "" > > -#: plugins/check_dns.c:537 > +#: plugins/check_dns.c:551 > msgid "An optional DNS server to use may be specified." > msgstr "" > > -#: plugins/check_dns.c:538 > +#: plugins/check_dns.c:552 > msgid "" > "If no DNS server is specified, the default server(s) specified in /etc/" > "resolv.conf will be used." > msgstr "" > > -#: plugins/check_dns.c:548 > +#: plugins/check_dns.c:562 > msgid "The name or address you want to query" > msgstr "" > > -#: plugins/check_dns.c:550 > +#: plugins/check_dns.c:564 > msgid "Optional DNS server you want to use for the lookup" > msgstr "" > > -#: plugins/check_dns.c:552 > +#: plugins/check_dns.c:566 > msgid "" > "Optional IP-ADDRESS/CIDR you expect the DNS server to return. HOST must end" > msgstr "" > > -#: plugins/check_dns.c:553 > +#: plugins/check_dns.c:567 > msgid "" > "with a dot (.). This option can be repeated multiple times (Returns OK if any" > msgstr "" > > -#: plugins/check_dns.c:554 > +#: plugins/check_dns.c:568 > msgid "value matches)." > msgstr "" > > -#: plugins/check_dns.c:556 > +#: plugins/check_dns.c:570 > msgid "Optionally expect the DNS server to be authoritative for the lookup" > msgstr "" > > -#: plugins/check_dns.c:558 > +#: plugins/check_dns.c:572 > msgid "Return warning if elapsed time exceeds value. Default off" > msgstr "" > > -#: plugins/check_dns.c:560 > +#: plugins/check_dns.c:574 > msgid "Return critical if elapsed time exceeds value. Default off" > msgstr "" > > -#: plugins/check_dns.c:562 > +#: plugins/check_dns.c:576 > msgid "" > "Return critical if the list of expected addresses does not match all " > "addresses" > msgstr "" > > -#: plugins/check_dns.c:563 > +#: plugins/check_dns.c:577 > msgid "returned. Default off" > msgstr "" > > @@ -1389,309 +1389,320 @@ > msgid "certificate expiration times." > msgstr "" > > -#: plugins/check_http.c:1570 > +#: plugins/check_http.c:1571 > +#, c-format > +msgid "In the first form, make an HTTP request." > +msgstr "" > + > +#: plugins/check_http.c:1572 > +#, c-format > +msgid "" > +"In the second form, connect to the server and check the TLS certificate." > +msgstr "" > + > +#: plugins/check_http.c:1574 > #, c-format > msgid "NOTE: One or both of -H and -I must be specified" > msgstr "" > > -#: plugins/check_http.c:1578 > +#: plugins/check_http.c:1582 > msgid "Host name argument for servers using host headers (virtual host)" > msgstr "" > > -#: plugins/check_http.c:1579 > +#: plugins/check_http.c:1583 > msgid "Append a port to include it in the header (eg: example.com:5000)" > msgstr "" > > -#: plugins/check_http.c:1581 > +#: plugins/check_http.c:1585 > msgid "" > "IP address or name (use numeric address if possible to bypass DNS lookup)." > msgstr "" > > -#: plugins/check_http.c:1583 > +#: plugins/check_http.c:1587 > msgid "Port number (default: " > msgstr "" > > -#: plugins/check_http.c:1590 > +#: plugins/check_http.c:1594 > msgid "" > "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" > msgstr "" > > -#: plugins/check_http.c:1591 > +#: plugins/check_http.c:1595 > msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1," > msgstr "" > > -#: plugins/check_http.c:1592 > +#: plugins/check_http.c:1596 > msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted." > msgstr "" > > -#: plugins/check_http.c:1594 > +#: plugins/check_http.c:1598 > msgid "Enable SSL/TLS hostname extension support (SNI)" > msgstr "" > > -#: plugins/check_http.c:1596 > +#: plugins/check_http.c:1600 > msgid "" > "Minimum number of days a certificate has to be valid. Port defaults to 443" > msgstr "" > > -#: plugins/check_http.c:1597 > +#: plugins/check_http.c:1601 > msgid "(when this option is used the URL is not checked.)" > msgstr "" > > -#: plugins/check_http.c:1599 > +#: plugins/check_http.c:1603 > msgid "Name of file that contains the client certificate (PEM format)" > msgstr "" > > -#: plugins/check_http.c:1600 > +#: plugins/check_http.c:1604 > msgid "to be used in establishing the SSL session" > msgstr "" > > -#: plugins/check_http.c:1602 > +#: plugins/check_http.c:1606 > msgid "Name of file containing the private key (PEM format)" > msgstr "" > > -#: plugins/check_http.c:1603 > +#: plugins/check_http.c:1607 > msgid "matching the client certificate" > msgstr "" > > -#: plugins/check_http.c:1607 > +#: plugins/check_http.c:1611 > msgid "Comma-delimited list of strings, at least one of them is expected in" > msgstr "" > > -#: plugins/check_http.c:1608 > +#: plugins/check_http.c:1612 > msgid "the first (status) line of the server response (default: " > msgstr "" > > -#: plugins/check_http.c:1610 > +#: plugins/check_http.c:1614 > msgid "" > "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" > msgstr "" > > -#: plugins/check_http.c:1612 > +#: plugins/check_http.c:1616 > msgid "String to expect in the response headers" > msgstr "" > > -#: plugins/check_http.c:1614 > +#: plugins/check_http.c:1618 > msgid "String to expect in the content" > msgstr "" > > -#: plugins/check_http.c:1616 > +#: plugins/check_http.c:1620 > msgid "URL to GET or POST (default: /)" > msgstr "" > > -#: plugins/check_http.c:1618 > +#: plugins/check_http.c:1622 > msgid "URL encoded http POST data" > msgstr "" > > -#: plugins/check_http.c:1620 > +#: plugins/check_http.c:1624 > msgid "Set HTTP method." > msgstr "" > > -#: plugins/check_http.c:1622 > +#: plugins/check_http.c:1626 > msgid "Don't wait for document body: stop reading after headers." > msgstr "" > > -#: plugins/check_http.c:1623 > +#: plugins/check_http.c:1627 > msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" > msgstr "" > > -#: plugins/check_http.c:1625 > +#: plugins/check_http.c:1629 > msgid "Warn if document is more than SECONDS old. the number can also be of" > msgstr "" > > -#: plugins/check_http.c:1626 > +#: plugins/check_http.c:1630 > msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." > msgstr "" > > -#: plugins/check_http.c:1628 > +#: plugins/check_http.c:1632 > msgid "specify Content-Type header media type when POSTing\n" > msgstr "" > > -#: plugins/check_http.c:1631 > +#: plugins/check_http.c:1635 > msgid "Allow regex to span newlines (must precede -r or -R)" > msgstr "" > > -#: plugins/check_http.c:1633 > +#: plugins/check_http.c:1637 > msgid "Search page for regex STRING" > msgstr "" > > -#: plugins/check_http.c:1635 > +#: plugins/check_http.c:1639 > msgid "Search page for case-insensitive regex STRING" > msgstr "" > > -#: plugins/check_http.c:1637 > +#: plugins/check_http.c:1641 > msgid "Return CRITICAL if found, OK if not\n" > msgstr "" > > -#: plugins/check_http.c:1640 > +#: plugins/check_http.c:1644 > msgid "Username:password on sites with basic authentication" > msgstr "" > > -#: plugins/check_http.c:1642 > +#: plugins/check_http.c:1646 > msgid "Username:password on proxy-servers with basic authentication" > msgstr "" > > -#: plugins/check_http.c:1644 > +#: plugins/check_http.c:1648 > msgid "String to be sent in http header as \"User Agent\"" > msgstr "" > > -#: plugins/check_http.c:1646 > +#: plugins/check_http.c:1650 > msgid "" > "Any other tags to be sent in http header. Use multiple times for additional " > "headers" > msgstr "" > > -#: plugins/check_http.c:1648 > +#: plugins/check_http.c:1652 > msgid "Print additional performance data" > msgstr "" > > -#: plugins/check_http.c:1650 > +#: plugins/check_http.c:1654 > msgid "Print body content below status line" > msgstr "" > > -#: plugins/check_http.c:1652 > +#: plugins/check_http.c:1656 > msgid "Wrap output in HTML link (obsoleted by urlize)" > msgstr "" > > -#: plugins/check_http.c:1654 > +#: plugins/check_http.c:1658 > msgid "How to handle redirected pages. sticky is like follow but stick to the" > msgstr "" > > -#: plugins/check_http.c:1655 > +#: plugins/check_http.c:1659 > msgid "specified IP address. stickyport also ensures port stays the same." > msgstr "" > > -#: plugins/check_http.c:1657 > +#: plugins/check_http.c:1661 > msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" > msgstr "" > > -#: plugins/check_http.c:1667 > +#: plugins/check_http.c:1671 > msgid "This plugin will attempt to open an HTTP connection with the host." > msgstr "" > > -#: plugins/check_http.c:1668 > +#: plugins/check_http.c:1672 > msgid "" > "Successful connects return STATE_OK, refusals and timeouts return " > "STATE_CRITICAL" > msgstr "" > > -#: plugins/check_http.c:1669 > +#: plugins/check_http.c:1673 > msgid "" > "other errors return STATE_UNKNOWN. Successful connects, but incorrect " > "response" > msgstr "" > > -#: plugins/check_http.c:1670 > +#: plugins/check_http.c:1674 > msgid "" > "messages from the host result in STATE_WARNING return values. If you are" > msgstr "" > > -#: plugins/check_http.c:1671 > +#: plugins/check_http.c:1675 > msgid "" > "checking a virtual server that uses 'host headers' you must supply the FQDN" > msgstr "" > > -#: plugins/check_http.c:1672 > +#: plugins/check_http.c:1676 > msgid "(fully qualified domain name) as the [host_name] argument." > msgstr "" > > -#: plugins/check_http.c:1676 > +#: plugins/check_http.c:1680 > msgid "This plugin can also check whether an SSL enabled web server is able to" > msgstr "" > > -#: plugins/check_http.c:1677 > +#: plugins/check_http.c:1681 > msgid "serve content (optionally within a specified time) or whether the X509 " > msgstr "" > > -#: plugins/check_http.c:1678 > +#: plugins/check_http.c:1682 > msgid "certificate is still valid for the specified number of days." > msgstr "" > > -#: plugins/check_http.c:1680 > +#: plugins/check_http.c:1684 > msgid "Please note that this plugin does not check if the presented server" > msgstr "" > > -#: plugins/check_http.c:1681 > +#: plugins/check_http.c:1685 > msgid "certificate matches the hostname of the server, or if the certificate" > msgstr "" > > -#: plugins/check_http.c:1682 > +#: plugins/check_http.c:1686 > msgid "has a valid chain of trust to one of the locally installed CAs." > msgstr "" > > -#: plugins/check_http.c:1686 > +#: plugins/check_http.c:1690 > msgid "" > "When the 'www.verisign.com' server returns its content within 5 seconds," > msgstr "" > > -#: plugins/check_http.c:1687 plugins/check_http.c:1706 > +#: plugins/check_http.c:1691 plugins/check_http.c:1710 > msgid "" > "a STATE_OK will be returned. When the server returns its content but exceeds" > msgstr "" > > -#: plugins/check_http.c:1688 plugins/check_http.c:1707 > +#: plugins/check_http.c:1692 plugins/check_http.c:1711 > msgid "" > "the 5-second threshold, a STATE_WARNING will be returned. When an error " > "occurs," > msgstr "" > > -#: plugins/check_http.c:1689 > +#: plugins/check_http.c:1693 > msgid "a STATE_CRITICAL will be returned." > msgstr "" > > -#: plugins/check_http.c:1692 > +#: plugins/check_http.c:1696 > msgid "" > "When the certificate of 'www.verisign.com' is valid for more than 14 days," > msgstr "" > > -#: plugins/check_http.c:1693 plugins/check_http.c:1699 > +#: plugins/check_http.c:1697 plugins/check_http.c:1703 > msgid "" > "a STATE_OK is returned. When the certificate is still valid, but for less " > "than" > msgstr "" > > -#: plugins/check_http.c:1694 > +#: plugins/check_http.c:1698 > msgid "" > "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" > msgstr "" > > -#: plugins/check_http.c:1695 > +#: plugins/check_http.c:1699 > msgid "the certificate is expired." > msgstr "" > > -#: plugins/check_http.c:1698 > +#: plugins/check_http.c:1702 > msgid "" > "When the certificate of 'www.verisign.com' is valid for more than 30 days," > msgstr "" > > -#: plugins/check_http.c:1700 > +#: plugins/check_http.c:1704 > msgid "30 days, but more than 14 days, a STATE_WARNING is returned." > msgstr "" > > -#: plugins/check_http.c:1701 > +#: plugins/check_http.c:1705 > msgid "" > "A STATE_CRITICAL will be returned when certificate expires in less than 14 " > "days" > msgstr "" > > -#: plugins/check_http.c:1704 > +#: plugins/check_http.c:1708 > msgid "" > "check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j " > "CONNECT -H www.verisign.com " > msgstr "" > > -#: plugins/check_http.c:1705 > +#: plugins/check_http.c:1709 > msgid "" > "all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -S" > "(sl) -j CONNECT -H <webserver>" > msgstr "" > > -#: plugins/check_http.c:1708 > +#: plugins/check_http.c:1712 > msgid "" > "a STATE_CRITICAL will be returned. By adding a colon to the method you can " > "set the method used" > msgstr "" > > -#: plugins/check_http.c:1709 > +#: plugins/check_http.c:1713 > msgid "inside the proxied connection: -j CONNECT:POST" > msgstr "" > > @@ -4406,7 +4417,7 @@ > msgid "Invalid SMTP response received from host on port %d: %s\n" > msgstr "" > > -#: plugins/check_smtp.c:308 plugins/check_snmp.c:833 > +#: plugins/check_smtp.c:308 plugins/check_snmp.c:834 > #, c-format > msgid "Could Not Compile Regular Expression" > msgstr "" > @@ -4567,7 +4578,7 @@ > msgid "STATE_WARNING return values." > msgstr "" > > -#: plugins/check_snmp.c:171 plugins/check_snmp.c:603 > +#: plugins/check_snmp.c:171 plugins/check_snmp.c:604 > msgid "Cannot malloc" > msgstr "" > > @@ -4590,280 +4601,280 @@ > msgid "Time duration between plugin calls is invalid" > msgstr "" > > -#: plugins/check_snmp.c:609 > +#: plugins/check_snmp.c:610 > msgid "Cannot asprintf()" > msgstr "" > > -#: plugins/check_snmp.c:615 > +#: plugins/check_snmp.c:616 > msgid "Cannot realloc()" > msgstr "" > > -#: plugins/check_snmp.c:631 > +#: plugins/check_snmp.c:632 > msgid "No previous data to calculate rate - assume okay" > msgstr "" > > -#: plugins/check_snmp.c:778 > +#: plugins/check_snmp.c:779 > msgid "Retries interval must be a positive integer" > msgstr "" > > -#: plugins/check_snmp.c:858 > +#: plugins/check_snmp.c:859 > #, c-format > msgid "Could not reallocate labels[%d]" > msgstr "" > > -#: plugins/check_snmp.c:871 > +#: plugins/check_snmp.c:872 > msgid "Could not reallocate labels\n" > msgstr "" > > -#: plugins/check_snmp.c:887 > +#: plugins/check_snmp.c:888 > #, c-format > msgid "Could not reallocate units [%d]\n" > msgstr "" > > -#: plugins/check_snmp.c:899 > +#: plugins/check_snmp.c:900 > msgid "Could not realloc() units\n" > msgstr "" > > -#: plugins/check_snmp.c:916 > +#: plugins/check_snmp.c:917 > msgid "Rate multiplier must be a positive integer" > msgstr "" > > -#: plugins/check_snmp.c:981 > +#: plugins/check_snmp.c:982 > msgid "No host specified\n" > msgstr "" > > -#: plugins/check_snmp.c:985 > +#: plugins/check_snmp.c:986 > msgid "No OIDs specified\n" > msgstr "" > > -#: plugins/check_snmp.c:1008 plugins/check_snmp.c:1026 > -#: plugins/check_snmp.c:1044 > +#: plugins/check_snmp.c:1009 plugins/check_snmp.c:1027 > +#: plugins/check_snmp.c:1045 > #, c-format > msgid "Required parameter: %s\n" > msgstr "" > > -#: plugins/check_snmp.c:1019 > +#: plugins/check_snmp.c:1020 > msgid "Invalid seclevel" > msgstr "" > > -#: plugins/check_snmp.c:1065 > +#: plugins/check_snmp.c:1066 > msgid "Invalid SNMP version" > msgstr "" > > -#: plugins/check_snmp.c:1082 > +#: plugins/check_snmp.c:1083 > msgid "Unbalanced quotes\n" > msgstr "" > > -#: plugins/check_snmp.c:1131 > +#: plugins/check_snmp.c:1132 > msgid "Check status of remote machines and obtain system information via SNMP" > msgstr "" > > -#: plugins/check_snmp.c:1145 > +#: plugins/check_snmp.c:1146 > msgid "Use SNMP GETNEXT instead of SNMP GET" > msgstr "" > > -#: plugins/check_snmp.c:1147 > +#: plugins/check_snmp.c:1148 > msgid "SNMP protocol version" > msgstr "" > > -#: plugins/check_snmp.c:1149 > +#: plugins/check_snmp.c:1150 > msgid "SNMPv3 context" > msgstr "" > > -#: plugins/check_snmp.c:1151 > +#: plugins/check_snmp.c:1152 > msgid "SNMPv3 securityLevel" > msgstr "" > > -#: plugins/check_snmp.c:1153 > +#: plugins/check_snmp.c:1154 > msgid "SNMPv3 auth proto" > msgstr "" > > -#: plugins/check_snmp.c:1155 > +#: plugins/check_snmp.c:1156 > msgid "SNMPv3 priv proto (default DES)" > msgstr "" > > -#: plugins/check_snmp.c:1159 > +#: plugins/check_snmp.c:1160 > msgid "Optional community string for SNMP communication" > msgstr "" > > -#: plugins/check_snmp.c:1160 > +#: plugins/check_snmp.c:1161 > msgid "default is" > msgstr "" > > -#: plugins/check_snmp.c:1162 > +#: plugins/check_snmp.c:1163 > msgid "SNMPv3 username" > msgstr "" > > -#: plugins/check_snmp.c:1164 > +#: plugins/check_snmp.c:1165 > msgid "SNMPv3 authentication password" > msgstr "" > > -#: plugins/check_snmp.c:1166 > +#: plugins/check_snmp.c:1167 > msgid "SNMPv3 privacy password" > msgstr "" > > -#: plugins/check_snmp.c:1170 > +#: plugins/check_snmp.c:1171 > msgid "Object identifier(s) or SNMP variables whose value you wish to query" > msgstr "" > > -#: plugins/check_snmp.c:1172 > +#: plugins/check_snmp.c:1173 > msgid "" > "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" > msgstr "" > > -#: plugins/check_snmp.c:1173 > +#: plugins/check_snmp.c:1174 > msgid "for symbolic OIDs.)" > msgstr "" > > -#: plugins/check_snmp.c:1175 > +#: plugins/check_snmp.c:1176 > msgid "Delimiter to use when parsing returned data. Default is" > msgstr "" > > -#: plugins/check_snmp.c:1176 > +#: plugins/check_snmp.c:1177 > msgid "Any data on the right hand side of the delimiter is considered" > msgstr "" > > -#: plugins/check_snmp.c:1177 > +#: plugins/check_snmp.c:1178 > msgid "to be the data that should be used in the evaluation." > msgstr "" > > -#: plugins/check_snmp.c:1181 > +#: plugins/check_snmp.c:1182 > msgid "Warning threshold range(s)" > msgstr "" > > -#: plugins/check_snmp.c:1183 > +#: plugins/check_snmp.c:1184 > msgid "Critical threshold range(s)" > msgstr "" > > -#: plugins/check_snmp.c:1185 > +#: plugins/check_snmp.c:1186 > msgid "Enable rate calculation. See 'Rate Calculation' below" > msgstr "" > > -#: plugins/check_snmp.c:1187 > +#: plugins/check_snmp.c:1188 > msgid "" > "Converts rate per second. For example, set to 60 to convert to per minute" > msgstr "" > > -#: plugins/check_snmp.c:1189 > +#: plugins/check_snmp.c:1190 > msgid "Add/substract the specified OFFSET to numeric sensor data" > msgstr "" > > -#: plugins/check_snmp.c:1193 > +#: plugins/check_snmp.c:1194 > msgid "Return OK state (for that OID) if STRING is an exact match" > msgstr "" > > -#: plugins/check_snmp.c:1195 > +#: plugins/check_snmp.c:1196 > msgid "" > "Return OK state (for that OID) if extended regular expression REGEX matches" > msgstr "" > > -#: plugins/check_snmp.c:1197 > +#: plugins/check_snmp.c:1198 > msgid "" > "Return OK state (for that OID) if case-insensitive extended REGEX matches" > msgstr "" > > -#: plugins/check_snmp.c:1199 > +#: plugins/check_snmp.c:1200 > msgid "Invert search result (CRITICAL if found)" > msgstr "" > > -#: plugins/check_snmp.c:1203 > +#: plugins/check_snmp.c:1204 > msgid "Prefix label for output from plugin" > msgstr "" > > -#: plugins/check_snmp.c:1205 > +#: plugins/check_snmp.c:1206 > msgid "Units label(s) for output data (e.g., 'sec.')." > msgstr "" > > -#: plugins/check_snmp.c:1207 > +#: plugins/check_snmp.c:1208 > msgid "Separates output on multiple OID requests" > msgstr "" > > -#: plugins/check_snmp.c:1210 > +#: plugins/check_snmp.c:1211 > msgid "" > "NOTE the final timeout value is calculated using this formula: " > "timeout_interval * retries + 5" > msgstr "" > > -#: plugins/check_snmp.c:1212 > +#: plugins/check_snmp.c:1213 > msgid "Number of retries to be used in the requests, default: " > msgstr "" > > -#: plugins/check_snmp.c:1215 > +#: plugins/check_snmp.c:1216 > msgid "Label performance data with OIDs instead of --label's" > msgstr "" > > -#: plugins/check_snmp.c:1220 > +#: plugins/check_snmp.c:1221 > msgid "" > "This plugin uses the 'snmpget' command included with the NET-SNMP package." > msgstr "" > > -#: plugins/check_snmp.c:1221 > +#: plugins/check_snmp.c:1222 > msgid "" > "if you don't have the package installed, you will need to download it from" > msgstr "" > > -#: plugins/check_snmp.c:1222 > +#: plugins/check_snmp.c:1223 > msgid "http://net-snmp.sourceforge.net before you can use this plugin." > msgstr "" > > -#: plugins/check_snmp.c:1226 > +#: plugins/check_snmp.c:1227 > msgid "" > "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " > msgstr "" > > -#: plugins/check_snmp.c:1227 > +#: plugins/check_snmp.c:1228 > msgid "list (lists with internal spaces must be quoted)." > msgstr "" > > -#: plugins/check_snmp.c:1231 > +#: plugins/check_snmp.c:1232 > msgid "" > "- When checking multiple OIDs, separate ranges by commas like '-w " > "1:10,1:,:20'" > msgstr "" > > -#: plugins/check_snmp.c:1232 > +#: plugins/check_snmp.c:1233 > msgid "- Note that only one string and one regex may be checked at present" > msgstr "" > > -#: plugins/check_snmp.c:1233 > +#: plugins/check_snmp.c:1234 > msgid "" > "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" > msgstr "" > > -#: plugins/check_snmp.c:1234 > +#: plugins/check_snmp.c:1235 > msgid "returned from the SNMP query is an unsigned integer." > msgstr "" > > -#: plugins/check_snmp.c:1237 > +#: plugins/check_snmp.c:1238 > msgid "Rate Calculation:" > msgstr "" > > -#: plugins/check_snmp.c:1238 > +#: plugins/check_snmp.c:1239 > msgid "In many places, SNMP returns counters that are only meaningful when" > msgstr "" > > -#: plugins/check_snmp.c:1239 > +#: plugins/check_snmp.c:1240 > msgid "calculating the counter difference since the last check. check_snmp" > msgstr "" > > -#: plugins/check_snmp.c:1240 > +#: plugins/check_snmp.c:1241 > msgid "saves the last state information in a file so that the rate per second" > msgstr "" > > -#: plugins/check_snmp.c:1241 > +#: plugins/check_snmp.c:1242 > msgid "can be calculated. Use the --rate option to save state information." > msgstr "" > > -#: plugins/check_snmp.c:1242 > +#: plugins/check_snmp.c:1243 > msgid "" > "On the first run, there will be no prior state - this will return with OK." > msgstr "" > > -#: plugins/check_snmp.c:1243 > +#: plugins/check_snmp.c:1244 > msgid "The state is uniquely determined by the arguments to the plugin, so" > msgstr "" > > -#: plugins/check_snmp.c:1244 > +#: plugins/check_snmp.c:1245 > msgid "changing the arguments will create a new state file." > msgstr "" > > diff -Nru monitoring-plugins-2.3/release monitoring-plugins-2.3.1/release > --- monitoring-plugins-2.3/release 2020-12-10 21:00:09.000000000 +0100 > +++ monitoring-plugins-2.3.1/release 2021-04-10 16:17:22.000000000 +0200 > @@ -1 +1 @@ > -2.3 > +2.3.1 -- Sebastian Ramacher
Attachment:
signature.asc
Description: PGP signature