diff --git a/Makefile.am b/Makefile.am index 6f4e435..aae8ec9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,7 +7,7 @@ EXTRA_DIST = config.rpath \ NP-VERSION-GEN REQUIREMENTS SUPPORT THANKS \ NPTest.pm pkg nagios-plugins.spec \ config_test/Makefile config_test/run_tests config_test/child_test.c \ - tools/build_perl_modules \ + perlmods tools/build_perl_modules \ tools/tinderbox_build ACLOCAL_AMFLAGS = -I gl/m4 -I m4 @@ -24,7 +24,7 @@ install-root: test test-debug: cd lib && $(MAKE) $@ - if test "$(PERLMODS_DIR)" != ""; then cd && $(MAKE) $@; fi + if test "$(PERLMODS_DIR)" != ""; then cd perlmods && $(MAKE) $@; fi cd plugins && $(MAKE) $@ cd plugins-scripts && $(MAKE) $@ diff --git a/Makefile.in b/Makefile.in index 517d88f..b0b014c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1422,7 +1422,7 @@ EXTRA_DIST = config.rpath \ NP-VERSION-GEN REQUIREMENTS SUPPORT THANKS \ NPTest.pm pkg nagios-plugins.spec \ config_test/Makefile config_test/run_tests config_test/child_test.c \ - tools/build_perl_modules \ + perlmods tools/build_perl_modules \ tools/tinderbox_build ACLOCAL_AMFLAGS = -I gl/m4 -I m4 @@ -1930,7 +1930,7 @@ install-root: test test-debug: cd lib && $(MAKE) $@ - if test "$(PERLMODS_DIR)" != ""; then cd && $(MAKE) $@; fi + if test "$(PERLMODS_DIR)" != ""; then cd perlmods && $(MAKE) $@; fi cd plugins && $(MAKE) $@ cd plugins-scripts && $(MAKE) $@ diff --git a/NPTest.pm b/NPTest.pm index c0897d8..9b85617 100644 --- a/NPTest.pm +++ b/NPTest.pm @@ -422,6 +422,7 @@ sub LoadCache { return if exists( $CACHE{'_cache_loaded_'} ); + my $fileContents = ""; if ( -f $CACHEFILENAME ) { my( $fileHandle ) = new IO::File; @@ -432,41 +433,45 @@ sub LoadCache return; } - my( $fileContents ) = join( "\n", <$fileHandle> ); - + $fileContents = join("", <$fileHandle>); $fileHandle->close(); + chomp($fileContents); my( $contentsRef ) = eval $fileContents; %CACHE = %{$contentsRef}; } - $CACHE{'_cache_loaded_'} = 1; + $CACHE{'_cache_loaded_'} = 1; + $CACHE{'_original_cache'} = $fileContents; } sub SaveCache { delete $CACHE{'_cache_loaded_'}; + my $oldFileContents = delete $CACHE{'_original_cache'}; - my( $fileHandle ) = new IO::File; - - if ( ! $fileHandle->open( "> ${CACHEFILENAME}" ) ) - { - print STDERR "NPTest::LoadCache() : Problem saving ${CACHEFILENAME} : $!\n"; - return; - } - - my( $dataDumper ) = new Data::Dumper( [ \%CACHE ] ); - + my($dataDumper) = new Data::Dumper([\%CACHE]); $dataDumper->Terse(1); $dataDumper->Sortkeys(1); + my $data = $dataDumper->Dump(); + $data =~ s/^\s+/ /gmx; # make sure all systems use same amount of whitespace + $data =~ s/^\s+}/}/gmx; + chomp($data); - print $fileHandle $dataDumper->Dump(); + if($oldFileContents ne $data) { + my($fileHandle) = new IO::File; + if (!$fileHandle->open( "> ${CACHEFILENAME}")) { + print STDERR "NPTest::LoadCache() : Problem saving ${CACHEFILENAME} : $!\n"; + return; + } + print $fileHandle $data; + $fileHandle->close(); + } - $fileHandle->close(); - - $CACHE{'_cache_loaded_'} = 1; + $CACHE{'_cache_loaded_'} = 1; + $CACHE{'_original_cache'} = $data; } # @@ -556,12 +561,12 @@ sub TestsFrom { if ( $excludeIfAppMissing ) { - $application = basename( $filename, ".t" ); - if ( ! -e $application ) - { - print STDERR "No application (${application}) found for test harness (${filename})\n"; - next; - } + $application = basename( $filename, ".t" ); + if ( ! -e $application and ! -e $application.'.pm' ) + { + print STDERR "No application (${application}) found for test harness (${filename})\n"; + next; + } } push @tests, "${directory}/${filename}"; } @@ -642,6 +647,16 @@ sub testCmd { return $object; } +# do we have ipv6 +sub has_ipv6 { + # assume ipv6 if a ping6 to labs.consol.de works + `ping6 -c 1 2a03:3680:0:2::21 2>&1`; + if($? == 0) { + return 1; + } + return; +} + 1; # # End of File diff --git a/THANKS b/THANKS index ddbcf9f..53e47a2 100644 --- a/THANKS +++ b/THANKS @@ -2,16 +2,16 @@ This software is brought to you by the Nagios Plugins Development Team. However, there have been many contributors to this project. Everyone below has helped in raising bug reports, creating patches or contributing new plugins. -Randy O'Meara -Diego Elio Pettenò fabiodds +Diego Elio Pettenò +Randy O'Meara dag rob?le Oskar Ahner Lance Albertson David Alden -Patrick Allen -Rodger Allen Paul Allen +Rodger Allen +Patrick Allen Felipe Gustavo de Almeida Michael Almond Michael Anthon @@ -87,8 +87,8 @@ Paul Farrall Reuben Farrelly Mark Favas Duncan Ferguson -Paulo Afonso Graner Fessel Paulo Fessel +Paulo Afonso Graner Fessel James Fidell Roman Fiedler Bernhard Fischer diff --git a/configure b/configure index 126b517..9e403ba 100755 --- a/configure +++ b/configure @@ -39976,7 +39976,7 @@ if test "$ac_cv_uname_s" = 'SunOS' -a \( "x$ac_cv_prog_ac_ct_AR" = "x" -o "$ac_c 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/subst plugins-scripts/utils.pm plugins-scripts/utils.sh 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/subst plugins-scripts/utils.pm plugins-scripts/utils.sh perlmods/Makefile test.pl pkg/solaris/pkginfo po/Makefile.in" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure @@ -41092,6 +41092,7 @@ do "plugins-scripts/subst") CONFIG_FILES="$CONFIG_FILES plugins-scripts/subst" ;; "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 --git a/perlmods/Class-Accessor-0.34.tar.gz b/perlmods/Class-Accessor-0.34.tar.gz new file mode 100644 index 0000000..53de057 Binary files /dev/null and b/perlmods/Class-Accessor-0.34.tar.gz differ diff --git a/perlmods/Config-Tiny-2.14.tar.gz b/perlmods/Config-Tiny-2.14.tar.gz new file mode 100644 index 0000000..f0c49d9 Binary files /dev/null and b/perlmods/Config-Tiny-2.14.tar.gz differ diff --git a/perlmods/Makefile b/perlmods/Makefile new file mode 100644 index 0000000..f74b17d --- /dev/null +++ b/perlmods/Makefile @@ -0,0 +1,1532 @@ +# Makefile.in generated by automake 1.14 from Makefile.am. +# perlmods/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2013 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__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/nagios-plugins +pkgincludedir = $(includedir)/nagios-plugins +pkglibdir = $(libdir)/nagios-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.in $(srcdir)/Makefile.am \ + $(top_srcdir)/build-aux/mkinstalldirs +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/np_mysqlclient.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/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/strerror.m4 \ + $(top_srcdir)/gl/m4/string_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.in +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 = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +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 +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +pkglibexecdir = ${libexecdir}/${PACKAGE} +ACLOCAL = ${SHELL} /tmp/nagios-plugins/build-aux/missing aclocal-1.14 +ALLOCA = +ALLOCA_H = alloca.h +AMTAR = $${TAR-tar} +AM_DEFAULT_VERBOSITY = 1 +APPLE_UNIVERSAL_BUILD = 0 +AR = ar +ARFLAGS = cru +AUTOCONF = ${SHELL} /tmp/nagios-plugins/build-aux/missing autoconf +AUTOHEADER = ${SHELL} /tmp/nagios-plugins/build-aux/missing autoheader +AUTOMAKE = ${SHELL} /tmp/nagios-plugins/build-aux/missing automake-1.14 +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 check_dbi check_ldap check_ide_smart check_mysql check_mysql_query check_procs check_nagios check_by_ssh check_swap check_apt check_nt +EXTRAS_ROOT = +EXTRA_NETOBJS = +EXTRA_TEST = +FGREP = /bin/grep -F +FLOAT_H = +FLOORF_LIBM = -lm +GETADDRINFO_LIB = +GETHOSTNAME_LIB = +GETLOADAVG_LIBS = +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_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 = +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 = 0 +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_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_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_STRCASESTR = 1 +HAVE_STRCHRNUL = 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_i386 +LDAPINCLUDE = -I/usr/include/ldap +LDAPLIBS = -lldap -llber +LDFLAGS = -L. +LIBGNUTLS_CONFIG = +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 = +MAKEINFO = ${SHELL} /tmp/nagios-plugins/build-aux/missing 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/i386-linux-gnu -lmysqlclient -lpthread -lz -lm -lrt -ldl +NETINET_IN_H = +NEXT_ARPA_INET_H = +NEXT_AS_FIRST_DIRECTIVE_ARPA_INET_H = +NEXT_AS_FIRST_DIRECTIVE_ERRNO_H = +NEXT_AS_FIRST_DIRECTIVE_FLOAT_H = +NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = +NEXT_AS_FIRST_DIRECTIVE_LANGINFO_H = +NEXT_AS_FIRST_DIRECTIVE_LOCALE_H = +NEXT_AS_FIRST_DIRECTIVE_MATH_H = +NEXT_AS_FIRST_DIRECTIVE_NETDB_H = +NEXT_AS_FIRST_DIRECTIVE_NETINET_IN_H = +NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = +NEXT_AS_FIRST_DIRECTIVE_STDINT_H = +NEXT_AS_FIRST_DIRECTIVE_STDIO_H = +NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = +NEXT_AS_FIRST_DIRECTIVE_STRING_H = +NEXT_AS_FIRST_DIRECTIVE_SYS_SOCKET_H = +NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = +NEXT_AS_FIRST_DIRECTIVE_SYS_UIO_H = +NEXT_AS_FIRST_DIRECTIVE_TIME_H = +NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = +NEXT_AS_FIRST_DIRECTIVE_WCHAR_H = +NEXT_AS_FIRST_DIRECTIVE_WCTYPE_H = +NEXT_ERRNO_H = +NEXT_FLOAT_H = +NEXT_GETOPT_H = +NEXT_LANGINFO_H = +NEXT_LOCALE_H = +NEXT_MATH_H = +NEXT_NETDB_H = +NEXT_NETINET_IN_H = +NEXT_STDDEF_H = +NEXT_STDINT_H = +NEXT_STDIO_H = +NEXT_STDLIB_H = +NEXT_STRING_H = +NEXT_SYS_SOCKET_H = +NEXT_SYS_TYPES_H = +NEXT_SYS_UIO_H = +NEXT_TIME_H = +NEXT_UNISTD_H = +NEXT_WCHAR_H = +NEXT_WCTYPE_H = +NM = /usr/bin/nm -B +NMEDIT = +NP_RELEASE = 1.4.16 +OBJDUMP = objdump +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = nagios-plugins +PACKAGE_BUGREPORT = +PACKAGE_NAME = nagios-plugins +PACKAGE_STRING = nagios-plugins 1.4.16 +PACKAGE_TARNAME = nagios-plugins +PACKAGE_URL = +PACKAGE_VERSION = 1.4.16 +PATH_SEPARATOR = : +PATH_TO_APTGET = /usr/bin/apt-get +PATH_TO_DIG = +PATH_TO_FPING = +PATH_TO_FPING6 = +PATH_TO_LMSTAT = +PATH_TO_LSPS = +PATH_TO_MAILQ = +PATH_TO_NSLOOKUP = +PATH_TO_PING = +PATH_TO_PING6 = +PATH_TO_PS = /bin/ps +PATH_TO_QMAIL_QSTAT = +PATH_TO_QSTAT = +PATH_TO_QUAKESTAT = +PATH_TO_RPCINFO = +PATH_TO_SMBCLIENT = +PATH_TO_SNMPGET = +PATH_TO_SNMPGETNEXT = +PATH_TO_SSH = /usr/bin/ssh +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 +PKG_ARCH = unknown +PLUGIN_TEST = t/check_apt.t t/check_by_ssh.t t/check_cluster.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_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 = +PYTHON = /usr/bin/python +RADIUSLIBS = +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 = 2013.09.20.11.34 +REV_TIMESTAMP = 20130920113412 +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/utils.t +SED = /bin/sed +SERVENT_LIB = +SET_MAKE = +SH = /bin/sh +SHELL = /bin/sh +SIG_ATOMIC_T_SUFFIX = +SIZE_T_SUFFIX = +SOCKETLIBS = -lnsl -lresolv +SSLINCLUDE = -I/usr/include +SSLLIBS = -lssl -lcrypto +STDALIGN_H = stdalign.h +STDBOOL_H = +STDDEF_H = +STDINT_H = +STRIP = strip +SUPPORT = Send email to nagios-users@lists.sourceforge.net if you have questions\nregarding use of this software. To submit patches or suggest improvements,\nsend email to nagiosplug-devel@lists.sourceforge.net.\nPlease include version information with all correspondence (when possible,\nuse output from the --version option of the plugin 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 +USE_NLS = yes +VERSION = 1.4.16 +WARRANTY = The nagios 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 = +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 +abs_builddir = /tmp/nagios-plugins/perlmods +abs_srcdir = /tmp/nagios-plugins/perlmods +abs_top_builddir = /tmp/nagios-plugins +abs_top_srcdir = /tmp/nagios-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 mktime.o mountlist.o printf-args.o printf-parse.o vasnprintf.o +gl_LTLIBOBJS = asnprintf.lo fsusage.lo mktime.lo mountlist.lo printf-args.lo printf-parse.lo vasnprintf.lo +gltests_LIBOBJS = +gltests_LTLIBOBJS = +gltests_WITNESS = IN_NAGIOS_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/nagios-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 = $(MKDIR_P) +np_mysql_config = /usr/bin/mysql_config +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /usr/local/nagios +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 = /bin:/sbin:/usr/bin:/usr/sbin +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: + +ctags CTAGS: + +cscope cscopelist: + + +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 cscopelist-am ctags-am 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 \ + tags-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 --git a/perlmods/Makefile.am b/perlmods/Makefile.am new file mode 100644 index 0000000..1495900 --- /dev/null +++ b/perlmods/Makefile.am @@ -0,0 +1,14 @@ +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 --git a/perlmods/Makefile.in b/perlmods/Makefile.in new file mode 100644 index 0000000..a09a35f --- /dev/null +++ b/perlmods/Makefile.in @@ -0,0 +1,1532 @@ +# Makefile.in generated by automake 1.14 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 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__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +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.in $(srcdir)/Makefile.am \ + $(top_srcdir)/build-aux/mkinstalldirs +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/np_mysqlclient.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/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/strerror.m4 \ + $(top_srcdir)/gl/m4/string_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.in +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 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +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 +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +pkglibexecdir = @pkglibexecdir@ +ACLOCAL = @ACLOCAL@ +ALLOCA = @ALLOCA@ +ALLOCA_H = @ALLOCA_H@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +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_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_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_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_STRCASESTR = @HAVE_STRCASESTR@ +HAVE_STRCHRNUL = @HAVE_STRCHRNUL@ +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@ +LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@ +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@ +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_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_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_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_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@ +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@ +PYTHON = @PYTHON@ +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@ +SH = @SH@ +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@ +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@ +XGETTEXT = @XGETTEXT@ +XGETTEXT_015 = @XGETTEXT_015@ +XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ +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: $(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: + +ctags CTAGS: + +cscope cscopelist: + + +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 cscopelist-am ctags-am 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 \ + tags-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 --git a/perlmods/Math-Calc-Units-1.07.tar.gz b/perlmods/Math-Calc-Units-1.07.tar.gz new file mode 100644 index 0000000..cf26b50 Binary files /dev/null and b/perlmods/Math-Calc-Units-1.07.tar.gz differ diff --git a/perlmods/Module-Build-0.4007.tar.gz b/perlmods/Module-Build-0.4007.tar.gz new file mode 100644 index 0000000..e55375e Binary files /dev/null and b/perlmods/Module-Build-0.4007.tar.gz differ diff --git a/perlmods/Module-Implementation-0.07.tar.gz b/perlmods/Module-Implementation-0.07.tar.gz new file mode 100644 index 0000000..eb156dd Binary files /dev/null and b/perlmods/Module-Implementation-0.07.tar.gz differ diff --git a/perlmods/Module-Metadata-1.000014.tar.gz b/perlmods/Module-Metadata-1.000014.tar.gz new file mode 100644 index 0000000..7a2800c Binary files /dev/null and b/perlmods/Module-Metadata-1.000014.tar.gz differ diff --git a/perlmods/Module-Runtime-0.013.tar.gz b/perlmods/Module-Runtime-0.013.tar.gz new file mode 100644 index 0000000..c84b46e Binary files /dev/null and b/perlmods/Module-Runtime-0.013.tar.gz differ diff --git a/perlmods/Nagios-Plugin-0.36.tar.gz b/perlmods/Nagios-Plugin-0.36.tar.gz new file mode 100644 index 0000000..811dcb9 Binary files /dev/null and b/perlmods/Nagios-Plugin-0.36.tar.gz differ diff --git a/perlmods/Params-Validate-1.08.tar.gz b/perlmods/Params-Validate-1.08.tar.gz new file mode 100644 index 0000000..418d2a1 Binary files /dev/null and b/perlmods/Params-Validate-1.08.tar.gz differ diff --git a/perlmods/Perl-OSType-1.003.tar.gz b/perlmods/Perl-OSType-1.003.tar.gz new file mode 100644 index 0000000..2bb819a Binary files /dev/null and b/perlmods/Perl-OSType-1.003.tar.gz differ diff --git a/perlmods/Test-Simple-0.98.tar.gz b/perlmods/Test-Simple-0.98.tar.gz new file mode 100644 index 0000000..de7d881 Binary files /dev/null and b/perlmods/Test-Simple-0.98.tar.gz differ diff --git a/perlmods/Try-Tiny-0.18.tar.gz b/perlmods/Try-Tiny-0.18.tar.gz new file mode 100644 index 0000000..cb8f67c Binary files /dev/null and b/perlmods/Try-Tiny-0.18.tar.gz differ diff --git a/perlmods/install_order b/perlmods/install_order new file mode 100644 index 0000000..c44c872 --- /dev/null +++ b/perlmods/install_order @@ -0,0 +1,16 @@ +# 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 +Nagios-Plugin diff --git a/perlmods/parent-0.226.tar.gz b/perlmods/parent-0.226.tar.gz new file mode 100644 index 0000000..f638b27 Binary files /dev/null and b/perlmods/parent-0.226.tar.gz differ diff --git a/perlmods/version-0.9903.tar.gz b/perlmods/version-0.9903.tar.gz new file mode 100644 index 0000000..ce5d91a Binary files /dev/null and b/perlmods/version-0.9903.tar.gz differ diff --git a/pkg/solaris/pkginfo b/pkg/solaris/pkginfo index cdba5be..442a885 100644 --- a/pkg/solaris/pkginfo +++ b/pkg/solaris/pkginfo @@ -2,11 +2,11 @@ PKG="NGOSplugin" NAME="nagios-plugins" DESC="Nagios network monitoring plugins" ARCH="unknown" -VERSION="1.4.16,REV=2013.09.13.00.16" +VERSION="1.4.16,REV=2013.09.20.11.34" CATEGORY="application" VENDOR="Nagios Plugin Development Team" EMAIL="nagiosplug-devel@lists.sourceforge.net" -PSTAMP="nag20130913001644" +PSTAMP="nag20130920113412" BASEDIR="/" CLASSES="none" diff --git a/plugins-root/Makefile.am b/plugins-root/Makefile.am index b5f5519..9623b1f 100644 --- a/plugins-root/Makefile.am +++ b/plugins-root/Makefile.am @@ -24,7 +24,7 @@ noinst_PROGRAMS = check_dhcp check_icmp @EXTRAS_ROOT@ EXTRA_PROGRAMS = pst3 -EXTRA_DIST = pst3.c +EXTRA_DIST = t pst3.c BASEOBJS = ../plugins/utils.o ../lib/libnagiosplug.a ../gl/libgnu.a NETOBJS = ../plugins/netutils.o $(BASEOBJS) $(EXTRA_NETOBJS) diff --git a/plugins-root/Makefile.in b/plugins-root/Makefile.in index 05857d6..a876343 100644 --- a/plugins-root/Makefile.in +++ b/plugins-root/Makefile.in @@ -1591,7 +1591,7 @@ with_trusted_path = @with_trusted_path@ @RELEASE_PRESENT_TRUE@NP_VERSION = @NP_RELEASE@ AM_CFLAGS = -DNP_VERSION='"$(NP_VERSION)"' AM_CPPFLAGS = -I.. -I$(top_srcdir)/lib -I$(top_srcdir)/gl -I$(top_srcdir)/intl -I$(top_srcdir)/plugins @SSLINCLUDE@ -EXTRA_DIST = pst3.c +EXTRA_DIST = t pst3.c BASEOBJS = ../plugins/utils.o ../lib/libnagiosplug.a ../gl/libgnu.a NETOBJS = ../plugins/netutils.o $(BASEOBJS) $(EXTRA_NETOBJS) NETLIBS = $(NETOBJS) $(SOCKETLIBS) diff --git a/plugins-root/check_dhcp.c b/plugins-root/check_dhcp.c index b02ee49..42eedec 100644 --- a/plugins-root/check_dhcp.c +++ b/plugins-root/check_dhcp.c @@ -372,11 +372,16 @@ int get_hardware_address(int sock,char *interface_name){ char *p; int unit; - for(p = interface_name; *p && isalpha(*p); p++) - /* no-op */ ; - if( p != '\0' ){ + /* get last number from interfacename, eg lnc0, e1000g0*/ + int i; + p = interface_name + strlen(interface_name) -1; + for(i = strlen(interface_name) -1; i > 0; p--) { + if(isalpha(*p)) + break; + } + p++; + if( p != interface_name ){ unit = atoi(p) ; - *p = '\0' ; strncat(dev, interface_name, 6) ; } else{ diff --git a/plugins-root/t/check_dhcp.t b/plugins-root/t/check_dhcp.t new file mode 100644 index 0000000..222f454 --- /dev/null +++ b/plugins-root/t/check_dhcp.t @@ -0,0 +1,69 @@ +#! /usr/bin/perl -w -I .. +# +# DHCP Tests via check_dhcp +# + +use strict; +use Test::More; +use NPTest; + +my $allow_sudo = getTestParameter( "NP_ALLOW_SUDO", + "If sudo is setup for this user to run any command as root ('yes' to allow)", + "no" ); + +if ($allow_sudo eq "yes" or $> == 0) { + plan tests => 6; +} else { + plan skip_all => "Need sudo to test check_dhcp"; +} +my $sudo = $> == 0 ? '' : 'sudo'; + +my $successOutput = '/OK: Received \d+ DHCPOFFER\(s\), \d+ of 1 requested servers responded, max lease time = \d+ sec\./'; +my $failureOutput = '/CRITICAL: No DHCPOFFERs were received/'; +my $invalidOutput = '/Invalid hostname/'; + +my $host_responsive = getTestParameter( "NP_HOST_DHCP_RESPONSIVE", + "The hostname of system responsive to dhcp requests", + "localhost" ); + +my $host_nonresponsive = getTestParameter( "NP_HOST_NONRESPONSIVE", + "The hostname of system not responsive to dhcp requests", + "10.0.0.1" ); + +my $hostname_invalid = getTestParameter( "NP_HOSTNAME_INVALID", + "An invalid (not known to DNS) hostname", + "nosuchhost" ); + +# try to determince interface +my $interface = ''; +if(`ifconfig -a 2>/dev/null` =~ m/^(e\w*\d+)/mx and $1 ne 'eth0') { + $interface = ' -i '.$1; +} + +my $res; +SKIP: { + skip('need responsive test host', 2) unless $host_responsive; + $res = NPTest->testCmd( + "$sudo ./check_dhcp $interface -u -s $host_responsive" + ); + is( $res->return_code, 0, "Syntax ok" ); + like( $res->output, $successOutput, "Output OK" ); +}; + +SKIP: { + skip('need nonresponsive test host', 2) unless $host_nonresponsive; + $res = NPTest->testCmd( + "$sudo ./check_dhcp $interface -u -s $host_nonresponsive" + ); + is( $res->return_code, 2, "Exit code - host nonresponsive" ); + like( $res->output, $failureOutput, "Output OK" ); +}; + +SKIP: { + skip('need invalid test host', 2) unless $hostname_invalid; + $res = NPTest->testCmd( + "$sudo ./check_dhcp $interface -u -s $hostname_invalid" + ); + is( $res->return_code, 3, "Exit code - host invalid" ); + like( $res->output, $invalidOutput, "Output OK" ); +}; diff --git a/plugins-root/t/check_icmp.t b/plugins-root/t/check_icmp.t new file mode 100644 index 0000000..e043d4e --- /dev/null +++ b/plugins-root/t/check_icmp.t @@ -0,0 +1,85 @@ +#! /usr/bin/perl -w -I .. +# +# Ping Response Tests via check_icmp +# + +use strict; +use Test::More; +use NPTest; + +my $allow_sudo = getTestParameter( "NP_ALLOW_SUDO", + "If sudo is setup for this user to run any command as root ('yes' to allow)", + "no" ); + +if ($allow_sudo eq "yes" or $> == 0) { + plan tests => 16; +} else { + plan skip_all => "Need sudo to test check_icmp"; +} +my $sudo = $> == 0 ? '' : 'sudo'; + +my $successOutput = '/OK - .*?: rta (?:[\d\.]+ms)|(?:nan), lost \d+%/'; +my $failureOutput = '/(WARNING|CRITICAL) - .*?: rta [\d\.]+ms, lost \d%/'; + +my $host_responsive = getTestParameter( "NP_HOST_RESPONSIVE", + "The hostname of system responsive to network requests", + "localhost" ); + +my $host_nonresponsive = getTestParameter( "NP_HOST_NONRESPONSIVE", + "The hostname of system not responsive to network requests", + "10.0.0.1" ); + +my $hostname_invalid = getTestParameter( "NP_HOSTNAME_INVALID", + "An invalid (not known to DNS) hostname", + "nosuchhost" ); + +my $res; + +$res = NPTest->testCmd( + "$sudo ./check_icmp -H $host_responsive -w 10000ms,100% -c 10000ms,100%" + ); +is( $res->return_code, 0, "Syntax ok" ); +like( $res->output, $successOutput, "Output OK" ); + +$res = NPTest->testCmd( + "$sudo ./check_icmp -H $host_responsive -w 0ms,0% -c 10000ms,100%" + ); +is( $res->return_code, 1, "Syntax ok, with forced warning" ); +like( $res->output, $failureOutput, "Output OK" ); + +$res = NPTest->testCmd( + "$sudo ./check_icmp -H $host_responsive -w 0,0% -c 0,0%" + ); +is( $res->return_code, 2, "Syntax ok, with forced critical" ); +like( $res->output, $failureOutput, "Output OK" ); + +$res = NPTest->testCmd( + "$sudo ./check_icmp -H $host_nonresponsive -w 10000ms,100% -c 10000ms,100%" + ); +is( $res->return_code, 2, "Timeout - host nonresponsive" ); +like( $res->output, '/100%/', "Error contains '100%' string (for 100% packet loss)" ); + +$res = NPTest->testCmd( + "$sudo ./check_icmp -w 10000ms,100% -c 10000ms,100%" + ); +is( $res->return_code, 3, "No hostname" ); +like( $res->output, '/No hosts to check/', "Output with appropriate error message"); + +$res = NPTest->testCmd( + "$sudo ./check_icmp -H $host_nonresponsive -w 10000ms,100% -c 10000ms,100% -n 1 -m 0" + ); +is( $res->return_code, 0, "One host nonresponsive - zero required" ); +like( $res->output, $successOutput, "Output OK" ); + +$res = NPTest->testCmd( + "$sudo ./check_icmp -H $host_responsive -H $host_nonresponsive -w 10000ms,100% -c 10000ms,100% -n 1 -m 1" + ); +is( $res->return_code, 0, "One of two host nonresponsive - one required" ); +like( $res->output, $successOutput, "Output OK" ); + +$res = NPTest->testCmd( + "$sudo ./check_icmp -H $host_responsive -H $host_nonresponsive -w 10000ms,100% -c 10000ms,100% -n 1 -m 2" + ); +is( $res->return_code, 2, "One of two host nonresponsive - two required" ); +like( $res->output, $failureOutput, "Output OK" ); + diff --git a/plugins-scripts/check_disk_smb.pl b/plugins-scripts/check_disk_smb.pl index b547615..0c89db5 100755 --- a/plugins-scripts/check_disk_smb.pl +++ b/plugins-scripts/check_disk_smb.pl @@ -59,6 +59,8 @@ if ($opt_V) { if ($opt_h) {print_help(); exit $ERRORS{'OK'};} my $smbclient = $utils::PATH_TO_SMBCLIENT; +$smbclient || usage("check requires smbclient, smbclient not set\n"); +-x $smbclient || usage("check requires smbclient, $smbclient: $!\n"); # Options checking diff --git a/plugins-scripts/t/check_disk_smb.t b/plugins-scripts/t/check_disk_smb.t index bd43c9c..831f388 100644 --- a/plugins-scripts/t/check_disk_smb.t +++ b/plugins-scripts/t/check_disk_smb.t @@ -31,7 +31,7 @@ SKIP: { "An access denying SMB share name the host provides", "private"); - my $host_nonresponsive = getTestParameter( "NP_HOST_NONRESPONSIVE", + my $host_nonresponsive = getTestParameter( "NP_HOST_NONRESPONSIVE", "The hostname of system not responsive to network requests", "10.0.0.1" ); my $hostname_invalid = getTestParameter( "NP_HOSTNAME_INVALID", @@ -46,7 +46,7 @@ SKIP: { $res = NPTest->testCmd( "./$plugin" ); is( $res->return_code, 3, "No arguments" ); - + $res = NPTest->testCmd( "./$plugin -H fakehostname" ); is( $res->return_code, 3, "No share specified" ); @@ -54,7 +54,7 @@ SKIP: { is( $res->return_code, 3, "warn is less than critical" ); SKIP: { - skip "no smb host defined", 6 if ( ! $host ); + skip "no smb host defined", 10 if ( ! $host ); SKIP: { skip "no share name defined", 2 if ( ! $smb_share ); @@ -90,7 +90,7 @@ SKIP: { SKIP: { skip "no non responsive host defined", 1 if ( ! $host_nonresponsive ); $res = NPTest->testCmd( "./$plugin -H $host_nonresponsive -s np_foobar "); - cmp_ok( $res->return_code, '==', 3, "Exit UNKNOWN with non responsive host" ); - } + cmp_ok( $res->return_code, '==', 3, "Exit UNKNOWN with non responsive host" ); + } } diff --git a/plugins/check_disk.c b/plugins/check_disk.c index 47dc0ad..04d588f 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c @@ -263,11 +263,11 @@ main (int argc, char **argv) } else if (fs_include_list && !np_find_name (fs_include_list, me->me_type)) { continue; } - - stat_path(path); - get_fs_usage (me->me_mountdir, me->me_devname, &fsp); } + stat_path(path); + get_fs_usage (me->me_mountdir, me->me_devname, &fsp); + if (fsp.fsu_blocks && strcmp ("none", me->me_mountdir)) { get_stats (path, &fsp); diff --git a/plugins/check_fping.c b/plugins/check_fping.c index c7cce97..dad000e 100644 --- a/plugins/check_fping.c +++ b/plugins/check_fping.c @@ -177,8 +177,10 @@ textscan (char *buf) { char *rtastr = NULL; char *losstr = NULL; + char *xmtstr = NULL; double loss; double rta; + double xmt; int status = STATE_UNKNOWN; if (strstr (buf, "not found")) { @@ -230,7 +232,12 @@ textscan (char *buf) } else if(strstr (buf, "xmt/rcv/%loss") ) { /* no min/max/avg if host was unreachable in fping v2.2.b1 */ + /* in v2.4b2: 10.99.0.1 : xmt/rcv/%loss = 0/0/0% */ losstr = strstr (buf, "="); + xmtstr = 1 + losstr; + xmt = strtod (xmtstr, NULL); + if(xmt == 0) + die (STATE_CRITICAL, _("FPING CRITICAL - %s is down\n"), server_name); losstr = 1 + strstr (losstr, "/"); losstr = 1 + strstr (losstr, "/"); loss = strtod (losstr, NULL); diff --git a/plugins/check_load.c b/plugins/check_load.c index 780ffff..296a823 100644 --- a/plugins/check_load.c +++ b/plugins/check_load.c @@ -153,7 +153,16 @@ main (int argc, char **argv) printf (_("Could not open stderr for %s\n"), PATH_TO_UPTIME); } fgets (input_buffer, MAX_INPUT_BUFFER - 1, child_process); - sscanf (input_buffer, "%*[^l]load average: %lf, %lf, %lf", &la1, &la5, &la15); + if(strstr(input_buffer, "load average:")) { + sscanf (input_buffer, "%*[^l]load average: %lf, %lf, %lf", &la1, &la5, &la15); + } + else if(strstr(input_buffer, "load averages:")) { + sscanf (input_buffer, "%*[^l]load averages: %lf, %lf, %lf", &la1, &la5, &la15); + } + else { + printf (_("could not parse load from uptime: %s\n"), result, PATH_TO_UPTIME); + return STATE_UNKNOWN; + } result = spclose (child_process); if (result) { diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c index 8d60701..324bd5f 100644 --- a/plugins/check_pgsql.c +++ b/plugins/check_pgsql.c @@ -258,7 +258,7 @@ main (int argc, char **argv) if (verbose) printf("Closing connection\n"); PQfinish (conn); - return (query_status > status) ? query_status : status; + return (pgquery && query_status > status) ? query_status : status; } diff --git a/plugins/check_tcp.c b/plugins/check_tcp.c index e7342f3..6ab8261 100644 --- a/plugins/check_tcp.c +++ b/plugins/check_tcp.c @@ -39,6 +39,8 @@ const char *email = "nagiosplug-devel@lists.sourceforge.net"; #include "utils.h" #include "utils_tcp.h" +#include + #ifdef HAVE_SSL static int check_cert = FALSE; static int days_till_exp_warn, days_till_exp_crit; @@ -60,6 +62,7 @@ static char *SEND = NULL; static char *QUIT = NULL; static int PROTOCOL = IPPROTO_TCP; /* most common is default */ static int PORT = 0; +static int READ_TIMEOUT = 2; static int server_port = 0; static char *server_address = NULL; @@ -98,8 +101,12 @@ main (int argc, char **argv) int i; char *status = NULL; struct timeval tv; + struct timeval timeout; size_t len; int match = -1; + fd_set rfds; + + FD_ZERO(&rfds); setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); @@ -288,6 +295,13 @@ main (int argc, char **argv) server_expect_count, match_flags)) != NP_MATCH_RETRY) break; + + /* some protocols wait for further input, so make sure we don't wait forever */ + FD_SET(sd, &rfds); + timeout.tv_sec = READ_TIMEOUT; + timeout.tv_usec = 0; + if(select(sd + 1, &rfds, NULL, NULL, &timeout) <= 0) + break; } if (match == NP_MATCH_RETRY) match = NP_MATCH_FAILURE; diff --git a/plugins/t/check_by_ssh.t b/plugins/t/check_by_ssh.t index 8d1b190..4797390 100644 --- a/plugins/t/check_by_ssh.t +++ b/plugins/t/check_by_ssh.t @@ -44,6 +44,10 @@ for (@responce) { my $result; +# expand paths +$ssh_key = glob($ssh_key) if $ssh_key; +$ssh_conf = glob($ssh_conf) if $ssh_conf; + ## Single active checks for (my $i=0; $i<4; $i++) { diff --git a/plugins/t/check_dig.t b/plugins/t/check_dig.t index 1ab4b42..d447f08 100644 --- a/plugins/t/check_dig.t +++ b/plugins/t/check_dig.t @@ -6,11 +6,16 @@ use strict; use Test::More; -use NPTest; -plan skip_all => "check_dig not compiled" unless (-x "check_dig"); -plan tests => 16; +use vars qw($tests $has_ipv6); +BEGIN { + plan skip_all => "check_dig not compiled" unless (-x "check_dig"); + use NPTest; + $has_ipv6 = NPTest::has_ipv6(); + $tests = $has_ipv6 ? 16 : 14; + plan tests => $tests; +} my $successOutput = '/DNS OK - [\.0-9]+ seconds? response time/'; @@ -73,10 +78,6 @@ SKIP: { cmp_ok( $res->return_code, '==', 0, "Found $hostname_valid on $dns_server"); like ( $res->output, $successOutput, "Output OK for IPv4" ); - $res = NPTest->testCmd("./check_dig -H $dns_server -l $hostname_valid -t 5 -6"); - cmp_ok( $res->return_code, '==', 0, "Found $hostname_valid on $dns_server"); - like ( $res->output, $successOutput, "Output OK for IPv6" ); - $res = NPTest->testCmd("./check_dig -H $dns_server -l $hostname_valid -a $hostname_valid_ip -t 5"); cmp_ok( $res->return_code, '==', 0, "Got expected address"); @@ -89,4 +90,9 @@ SKIP: { cmp_ok( $res->return_code, '==', 0, "Got expected fqdn"); like ( $res->output, $successOutput, "Output OK"); + if($has_ipv6) { + $res = NPTest->testCmd("./check_dig -H $dns_server -l $hostname_valid -t 5 -6"); + cmp_ok( $res->return_code, '==', 0, "Found $hostname_valid on $dns_server"); + like ( $res->output, $successOutput, "Output OK for IPv6" ); + } } diff --git a/plugins/t/check_disk.t b/plugins/t/check_disk.t index 45c6a61..39b4ca9 100644 --- a/plugins/t/check_disk.t +++ b/plugins/t/check_disk.t @@ -57,6 +57,9 @@ if ($free_on_mp1 > $free_on_mp2) { } else { die "Two mountpoints are the same - cannot do rest of test"; } +if($free_on_mp1 == $avg_free || $free_on_mp2 == $avg_free) { + die "One mountpoints has average space free - cannot do rest of test"; +} # Do same for inodes @@ -74,6 +77,9 @@ if ($free_inode_on_mp1 > $free_inode_on_mp2) { } else { die "Two mountpoints with same inodes free - cannot do rest of test"; } +if($free_inode_on_mp1 == $avg_inode_free || $free_inode_on_mp2 == $avg_inode_free) { + die "One mountpoints has average inodes free - cannot do rest of test"; +} # Verify performance data # First check absolute thresholds... diff --git a/plugins/t/check_http.t b/plugins/t/check_http.t index 9948c53..f77387d 100644 --- a/plugins/t/check_http.t +++ b/plugins/t/check_http.t @@ -30,12 +30,9 @@ my $internet_access = getTestParameter( "NP_INTERNET_ACCESS", "Is this system directly connected to the internet?", "yes"); -my $host_tcp_http2; -if ($internet_access eq "no") { - $host_tcp_http2 = getTestParameter( "NP_HOST_TCP_HTTP2", +my $host_tcp_http2 = getTestParameter( "NP_HOST_TCP_HTTP2", "A host providing an index page containing the string 'nagios'", - "www.nagios.com" ); -} + "nagiosplugins.org" ); $res = NPTest->testCmd( @@ -65,10 +62,7 @@ cmp_ok( $res->return_code, '==', 2, "Webserver $hostname_invalid not valid" ); like( $res->output, "/Unable to open TCP socket|Socket timeout after/", "Output OK"); SKIP: { - skip "No internet access and no host serving nagios in index file", - 7 if $internet_access eq "no" && ! $host_tcp_http2; - - $host_tcp_http2 = "www.nagios.com" if (! $host_tcp_http2); + skip "No host serving nagios in index file", 7 unless $host_tcp_http2; $res = NPTest->testCmd( "./check_http -H $host_tcp_http2 -r 'nagios'" ); cmp_ok( $res->return_code, "==", 0, "Got a reference to 'nagios'"); diff --git a/plugins/t/check_ping.t b/plugins/t/check_ping.t index e1c119e..1604f8f 100644 --- a/plugins/t/check_ping.t +++ b/plugins/t/check_ping.t @@ -90,7 +90,7 @@ like( $res->output, '/100%/', "Error contains '100%' string (for 100% packet los $res = NPTest->testCmd( - "./check_ping $host_nonresponsive -p 1 -t 1 100 100 1000 10000" + "./check_ping $host_nonresponsive -p 1 -t 15 100 100 1000 10000" ); is( $res->return_code, 2, "Old syntax: Timeout - host nonresponsive" ); like( $res->output, '/100%/', "Error contains '100%' string (for 100% packet loss)" ); diff --git a/plugins/t/check_procs.t b/plugins/t/check_procs.t index a1a2883..1dea564 100644 --- a/plugins/t/check_procs.t +++ b/plugins/t/check_procs.t @@ -34,7 +34,7 @@ $result = NPTest->testCmd( "./check_procs -w 0 -c 0" ); is( $result->return_code, 2, "Checking critical if processes > 0" ); like( $result->output, '/^PROCS CRITICAL: [0-9]+ process(es)? | procs=[0-9]+;0;0;0;$/', "Output correct" ); -$result = NPTest->testCmd( "./check_procs -w 0 -c 0 -s S" ); +$result = NPTest->testCmd( "./check_procs -w 0 -c 0 -s Ss" ); is( $result->return_code, 2, "Checking critical if sleeping processes" ); like( $result->output, '/^PROCS CRITICAL: [0-9]+ process(es)? with /', "Output correct" ); diff --git a/plugins/t/check_ssh.t b/plugins/t/check_ssh.t new file mode 100644 index 0000000..8008349 --- /dev/null +++ b/plugins/t/check_ssh.t @@ -0,0 +1,49 @@ +#! /usr/bin/perl -w -I .. +# +# check_ssh tests +# +# + +use strict; +use Test::More; +use NPTest; + +# Required parameters +my $ssh_host = getTestParameter("NP_SSH_HOST", + "A host providing SSH service", + "localhost"); + +my $host_nonresponsive = getTestParameter("NP_HOST_NONRESPONSIVE", + "The hostname of system not responsive to network requests", + "10.0.0.1" ); + +my $hostname_invalid = getTestParameter("NP_HOSTNAME_INVALID", + "An invalid (not known to DNS) hostname", + "nosuchhost" ); + + +plan skip_all => "SSH_HOST must be defined" unless $ssh_host; +plan tests => 6; + + +my $result = NPTest->testCmd( + "./check_ssh -H $ssh_host" + ); +cmp_ok($result->return_code, '==', 0, "Exit with return code 0 (OK)"); +like($result->output, '/^SSH OK - /', "Status text if command returned none (OK)"); + + +$result = NPTest->testCmd( + "./check_ssh -H $host_nonresponsive -t 2" + ); +cmp_ok($result->return_code, '==', 2, "Exit with return code 0 (OK)"); +like($result->output, '/^CRITICAL - Socket timeout after 2 seconds/', "Status text if command returned none (OK)"); + + + +$result = NPTest->testCmd( + "./check_ssh -H $hostname_invalid -t 2" + ); +cmp_ok($result->return_code, '==', 3, "Exit with return code 0 (OK)"); +like($result->output, '/^check_ssh: Invalid hostname/', "Status text if command returned none (OK)"); + diff --git a/plugins/t/check_tcp.t b/plugins/t/check_tcp.t index 0e6a964..abb16ae 100644 --- a/plugins/t/check_tcp.t +++ b/plugins/t/check_tcp.t @@ -6,19 +6,13 @@ use strict; use Test; -use NPTest; -use vars qw($tests); -my $has_ipv6; +use vars qw($tests $has_ipv6); BEGIN { - $tests = 11; - # do we have ipv6 - `ping6 -c 1 2a02:2e0:3fe:100::7 2>&1`; - if($? == 0) { - $has_ipv6 = 1; - $tests += 3; - } - plan tests => $tests; + use NPTest; + $has_ipv6 = NPTest::has_ipv6(); + $tests = $has_ipv6 ? 14 : 11; + plan tests => $tests; } diff --git a/plugins/t/check_udp.t b/plugins/t/check_udp.t index 6d24675..619cadf 100644 --- a/plugins/t/check_udp.t +++ b/plugins/t/check_udp.t @@ -10,6 +10,8 @@ use NPTest; my $res; +alarm(120); # make sure tests don't hang + plan tests => 14; $res = NPTest->testCmd( "./check_udp -H localhost -p 3333" ); @@ -28,9 +30,21 @@ $res = NPTest->testCmd( "./check_udp -H localhost -p 3333 -s foo -e bar" ); cmp_ok( $res->return_code, '==', 2, "Errors correctly because no udp service running" ); like ( $res->output, '/No data received from host/', "Output OK"); +my $nc; +if(system("which nc.traditional >/dev/null 2>&1") == 0) { + $nc = 'nc.traditional -w 3 -l -u -p 3333'; +} +elsif(system("which netcat >/dev/null 2>&1") == 0) { + $nc = 'netcat -w 3 -l -u -p 3333'; +} +elsif(system("which nc >/dev/null 2>&1") == 0) { + $nc = 'nc -w 3 -l -u -4 localhost 3333'; +} + SKIP: { - skip "No netcat available", 6 unless (system("which nc > /dev/null") == 0); - open (NC, "echo 'barbar' | nc -l -p 3333 -u |"); + skip "solaris netcat does not listen to udp", 6 if $^O eq 'solaris'; + skip "No netcat available", 6 unless $nc; + open (NC, "echo 'barbar' | $nc |"); sleep 1; $res = NPTest->testCmd( "./check_udp -H localhost -p 3333 -s '' -e barbar -4" ); cmp_ok( $res->return_code, '==', 0, "Got barbar response back" ); @@ -39,7 +53,7 @@ SKIP: { # Start up a udp server listening on port 3333, quit after 3 seconds # Otherwise will hang at close - my $pid = open(NC, "nc -l -p 3333 -u -w 3 \n" "Language-Team: English \n" @@ -30,7 +30,7 @@ msgstr "" #: plugins/check_pgsql.c:172 plugins/check_ping.c:95 plugins/check_procs.c:171 #: plugins/check_radius.c:160 plugins/check_real.c:80 plugins/check_smtp.c:144 #: plugins/check_snmp.c:240 plugins/check_ssh.c:73 plugins/check_swap.c:110 -#: plugins/check_tcp.c:211 plugins/check_time.c:78 plugins/check_ups.c:122 +#: plugins/check_tcp.c:218 plugins/check_time.c:78 plugins/check_ups.c:122 #: plugins/check_users.c:77 plugins/negate.c:214 plugins-root/check_dhcp.c:270 msgid "Could not parse arguments" msgstr "Argumente konnten nicht ausgewertet werden" @@ -65,14 +65,14 @@ msgstr "" #: plugins/check_http.c:278 plugins/check_ldap.c:293 plugins/check_pgsql.c:311 #: plugins/check_procs.c:429 plugins/check_radius.c:308 #: plugins/check_real.c:356 plugins/check_smtp.c:581 plugins/check_snmp.c:736 -#: plugins/check_ssh.c:138 plugins/check_tcp.c:491 plugins/check_time.c:302 +#: plugins/check_ssh.c:138 plugins/check_tcp.c:505 plugins/check_time.c:302 #: plugins/check_ups.c:556 plugins/negate.c:164 msgid "Timeout interval must be a positive integer" msgstr "Timeout interval muss ein positiver Integer sein" #: plugins/check_by_ssh.c:230 plugins/check_pgsql.c:341 #: plugins/check_radius.c:272 plugins/check_real.c:327 -#: plugins/check_smtp.c:506 plugins/check_tcp.c:497 plugins/check_time.c:296 +#: plugins/check_smtp.c:506 plugins/check_tcp.c:511 plugins/check_time.c:296 #: plugins/check_ups.c:518 msgid "Port must be a positive integer" msgstr "Port muss ein positiver Integer sein" @@ -234,9 +234,9 @@ msgstr "" #: plugins/check_by_ssh.c:460 plugins/check_cluster.c:274 #: plugins/check_dig.c:367 plugins/check_disk.c:941 plugins/check_dns.c:486 -#: plugins/check_dummy.c:122 plugins/check_fping.c:498 +#: plugins/check_dummy.c:122 plugins/check_fping.c:505 #: plugins/check_game.c:331 plugins/check_hpjd.c:414 plugins/check_http.c:1590 -#: plugins/check_ldap.c:451 plugins/check_load.c:325 plugins/check_mrtg.c:382 +#: plugins/check_ldap.c:451 plugins/check_load.c:334 plugins/check_mrtg.c:382 #: plugins/check_mysql.c:569 plugins/check_nagios.c:323 plugins/check_nt.c:774 #: plugins/check_ntp.c:888 plugins/check_ntp_peer.c:725 #: plugins/check_ntp_time.c:642 plugins/check_nwstat.c:1685 @@ -244,10 +244,10 @@ msgstr "" #: plugins/check_ping.c:603 plugins/check_procs.c:773 #: plugins/check_radius.c:385 plugins/check_real.c:451 #: plugins/check_smtp.c:843 plugins/check_snmp.c:1207 plugins/check_ssh.c:309 -#: plugins/check_swap.c:558 plugins/check_tcp.c:670 plugins/check_time.c:371 +#: plugins/check_swap.c:558 plugins/check_tcp.c:684 plugins/check_time.c:371 #: plugins/check_ups.c:660 plugins/check_users.c:240 #: plugins/check_ide_smart.c:640 plugins/negate.c:295 plugins/urlize.c:197 -#: plugins-root/check_dhcp.c:1417 plugins-root/check_icmp.c:1354 +#: plugins-root/check_dhcp.c:1422 plugins-root/check_icmp.c:1354 msgid "Usage:" msgstr "" @@ -863,37 +863,37 @@ msgstr "" msgid "FPING UNKNOWN - failed system call\n" msgstr "FPING UNKNOW - %s nicht gefunden\n" -#: plugins/check_fping.c:185 +#: plugins/check_fping.c:187 #, c-format msgid "FPING UNKNOW - %s not found\n" msgstr "FPING UNKNOW - %s nicht gefunden\n" -#: plugins/check_fping.c:189 +#: plugins/check_fping.c:191 #, c-format msgid "FPING CRITICAL - %s is unreachable\n" msgstr "FPING CRITICAL - %s ist nicht erreichbar\n" -#: plugins/check_fping.c:194 +#: plugins/check_fping.c:196 #, fuzzy, c-format msgid "FPING UNKNOWN - %s parameter error\n" msgstr "FPING UNKNOW - %s nicht gefunden\n" -#: plugins/check_fping.c:198 +#: plugins/check_fping.c:200 plugins/check_fping.c:240 #, c-format msgid "FPING CRITICAL - %s is down\n" msgstr "FPING CRITICAL - %s ist down\n" -#: plugins/check_fping.c:225 +#: plugins/check_fping.c:227 #, c-format msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n" msgstr "FPING %s - %s (verloren=%.0f%%, rta=%f ms)|%s %s\n" -#: plugins/check_fping.c:246 +#: plugins/check_fping.c:253 #, c-format msgid "FPING %s - %s (loss=%.0f%% )|%s\n" msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n" -#: plugins/check_fping.c:319 plugins/check_fping.c:325 +#: plugins/check_fping.c:326 plugins/check_fping.c:332 #: plugins/check_hpjd.c:338 plugins/check_hpjd.c:361 plugins/check_mysql.c:371 #: plugins/check_mysql.c:455 plugins/check_ntp.c:709 #: plugins/check_ntp_peer.c:497 plugins/check_ntp_time.c:496 @@ -905,111 +905,111 @@ msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n" msgid "Invalid hostname/address" msgstr "Ungültige(r) Hostname/Adresse" -#: plugins/check_fping.c:338 plugins/check_ldap.c:353 plugins/check_ping.c:246 +#: plugins/check_fping.c:345 plugins/check_ldap.c:353 plugins/check_ping.c:246 msgid "IPv6 support not available\n" msgstr "" -#: plugins/check_fping.c:371 +#: plugins/check_fping.c:378 msgid "Packet size must be a positive integer" msgstr "Paketgröße muss ein positiver Integer sein" -#: plugins/check_fping.c:377 +#: plugins/check_fping.c:384 msgid "Packet count must be a positive integer" msgstr "Paketanzahl muss ein positiver Integer sein" -#: plugins/check_fping.c:383 +#: plugins/check_fping.c:390 #, fuzzy msgid "Target timeout must be a positive integer" msgstr "Warnung time muss ein positiver Integer sein" -#: plugins/check_fping.c:389 +#: plugins/check_fping.c:396 #, fuzzy msgid "Interval must be a positive integer" msgstr "Timeout interval muss ein positiver Integer sein" -#: plugins/check_fping.c:395 plugins/check_ntp.c:733 +#: plugins/check_fping.c:402 plugins/check_ntp.c:733 #: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:523 #: plugins/check_radius.c:314 plugins/check_time.c:319 msgid "Hostname was not supplied" msgstr "" -#: plugins/check_fping.c:415 +#: plugins/check_fping.c:422 #, c-format msgid "%s: Only one threshold may be packet loss (%s)\n" msgstr "%s: Nur ein Wert darf für paket loss angegeben werden (%s)\n" -#: plugins/check_fping.c:419 +#: plugins/check_fping.c:426 #, c-format msgid "%s: Only one threshold must be packet loss (%s)\n" msgstr "%s: Nur ein Wert darf für paket loss angegeben werden (%s)\n" -#: plugins/check_fping.c:451 +#: plugins/check_fping.c:458 msgid "" "This plugin will use the fping command to ping the specified host for a fast " "check" msgstr "" -#: plugins/check_fping.c:453 +#: plugins/check_fping.c:460 msgid "Note that it is necessary to set the suid flag on fping." msgstr "" -#: plugins/check_fping.c:465 +#: plugins/check_fping.c:472 msgid "" "name or IP Address of host to ping (IP Address bypasses name lookup, " "reducing system load)" msgstr "" -#: plugins/check_fping.c:467 plugins/check_ping.c:575 +#: plugins/check_fping.c:474 plugins/check_ping.c:575 #, fuzzy msgid "warning threshold pair" msgstr "Warning threshold Integer sein" -#: plugins/check_fping.c:469 plugins/check_ping.c:577 +#: plugins/check_fping.c:476 plugins/check_ping.c:577 #, fuzzy msgid "critical threshold pair" msgstr "Critical threshold muss ein Integer sein" -#: plugins/check_fping.c:471 +#: plugins/check_fping.c:478 msgid "size of ICMP packet" msgstr "" -#: plugins/check_fping.c:473 +#: plugins/check_fping.c:480 msgid "number of ICMP packets to send" msgstr "" -#: plugins/check_fping.c:475 +#: plugins/check_fping.c:482 msgid "Target timeout (ms)" msgstr "" -#: plugins/check_fping.c:477 +#: plugins/check_fping.c:484 msgid "Interval (ms) between sending packets" msgstr "" -#: plugins/check_fping.c:479 +#: plugins/check_fping.c:486 msgid "name or IP Address of sourceip" msgstr "" -#: plugins/check_fping.c:481 +#: plugins/check_fping.c:488 msgid "source interface name" msgstr "" -#: plugins/check_fping.c:484 +#: plugins/check_fping.c:491 #, c-format msgid "" "THRESHOLD is ,%% where is the round trip average travel time " "(ms)" msgstr "" -#: plugins/check_fping.c:485 +#: plugins/check_fping.c:492 msgid "" "which triggers a WARNING or CRITICAL state, and is the percentage of" msgstr "" -#: plugins/check_fping.c:486 +#: plugins/check_fping.c:493 msgid "packet loss to trigger an alarm state." msgstr "" -#: plugins/check_fping.c:489 +#: plugins/check_fping.c:496 msgid "IPv4 is used by default. Specify -6 to use IPv6." msgstr "" @@ -1153,8 +1153,8 @@ msgid "file does not exist or is not readable" msgstr "" #: plugins/check_http.c:310 plugins/check_http.c:315 plugins/check_http.c:321 -#: plugins/check_smtp.c:600 plugins/check_tcp.c:562 plugins/check_tcp.c:566 -#: plugins/check_tcp.c:572 +#: plugins/check_smtp.c:600 plugins/check_tcp.c:576 plugins/check_tcp.c:580 +#: plugins/check_tcp.c:586 msgid "Invalid certificate expiration period" msgstr "Ungültiger Zertifikatsablauftermin" @@ -1164,7 +1164,7 @@ msgid "" "(SSLv3)" msgstr "" -#: plugins/check_http.c:354 plugins/check_tcp.c:585 +#: plugins/check_http.c:354 plugins/check_tcp.c:599 #, fuzzy msgid "Invalid option - SSL is not available" msgstr "Ungültige Option - SSL ist nicht verfügbar\n" @@ -1189,7 +1189,7 @@ msgstr "" #: plugins/check_http.c:464 plugins/check_ntp.c:722 #: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:512 -#: plugins/check_smtp.c:621 plugins/check_ssh.c:149 plugins/check_tcp.c:463 +#: plugins/check_smtp.c:621 plugins/check_ssh.c:149 plugins/check_tcp.c:477 msgid "IPv6 support not available" msgstr "IPv6 Unterstützung nicht vorhanden" @@ -1805,61 +1805,66 @@ msgstr "" msgid "Error opening %s\n" msgstr "" -#: plugins/check_load.c:160 +#: plugins/check_load.c:163 +#, fuzzy, c-format +msgid "could not parse load from uptime: %s\n" +msgstr "Argumente konnten nicht ausgewertet werden" + +#: plugins/check_load.c:169 #, c-format msgid "Error code %d returned in %s\n" msgstr "" -#: plugins/check_load.c:175 +#: plugins/check_load.c:184 #, c-format msgid "Error in getloadavg()\n" msgstr "" -#: plugins/check_load.c:178 plugins/check_load.c:180 +#: plugins/check_load.c:187 plugins/check_load.c:189 #, c-format msgid "Error processing %s\n" msgstr "" -#: plugins/check_load.c:189 +#: plugins/check_load.c:198 #, c-format msgid "load average: %.2f, %.2f, %.2f" msgstr "" -#: plugins/check_load.c:282 +#: plugins/check_load.c:291 #, fuzzy, c-format msgid "Critical threshold for %d-minute load average is not specified\n" msgstr "Critical threshold muss ein positiver Integer sein\n" -#: plugins/check_load.c:284 +#: plugins/check_load.c:293 #, fuzzy, c-format msgid "Warning threshold for %d-minute load average is not specified\n" msgstr "Warning threshold muss ein positiver Integer sein\n" -#: plugins/check_load.c:286 +#: plugins/check_load.c:295 #, c-format msgid "" "Parameter inconsistency: %d-minute \"warning load\" is greater than " "\"critical load\"\n" msgstr "" -#: plugins/check_load.c:302 +#: plugins/check_load.c:311 #, c-format msgid "This plugin tests the current system load average." msgstr "" -#: plugins/check_load.c:312 +#: plugins/check_load.c:321 msgid "Exit with WARNING status if load average exceeds WLOADn" msgstr "" -#: plugins/check_load.c:314 +#: plugins/check_load.c:323 msgid "Exit with CRITICAL status if load average exceed CLOADn" msgstr "" -#: plugins/check_load.c:315 +#: plugins/check_load.c:324 msgid "the load average format is the same used by \"uptime\" and \"w\"" msgstr "" -#: plugins/check_load.c:317 +#: plugins/check_load.c:326 msgid "Divide the load averages by the number of CPUs (when possible)" msgstr "" @@ -4246,7 +4251,7 @@ msgstr "Ung msgid "Invalid REAL response received from host on port %d\n" msgstr "" -#: plugins/check_real.c:184 plugins/check_tcp.c:297 +#: plugins/check_real.c:184 plugins/check_tcp.c:311 #, c-format msgid "No data received from host\n" msgstr "" @@ -4493,7 +4498,7 @@ msgstr "" msgid "FQDN used for HELO" msgstr "" -#: plugins/check_smtp.c:809 plugins/check_tcp.c:651 +#: plugins/check_smtp.c:809 plugins/check_tcp.c:665 msgid "Minimum number of days a certificate has to be valid." msgstr "" @@ -4946,108 +4951,108 @@ msgstr "" msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s." msgstr "" -#: plugins/check_tcp.c:199 +#: plugins/check_tcp.c:206 msgid "CRITICAL - Generic check_tcp called with unknown service\n" msgstr "" -#: plugins/check_tcp.c:223 +#: plugins/check_tcp.c:230 msgid "With UDP checks, a send/expect string must be specified." msgstr "" -#: plugins/check_tcp.c:417 +#: plugins/check_tcp.c:431 msgid "No arguments found" msgstr "" -#: plugins/check_tcp.c:520 +#: plugins/check_tcp.c:534 msgid "Maxbytes must be a positive integer" msgstr "Maxbytes muss ein positiver Integer sein" -#: plugins/check_tcp.c:538 +#: plugins/check_tcp.c:552 msgid "Refuse must be one of ok, warn, crit" msgstr "" -#: plugins/check_tcp.c:548 +#: plugins/check_tcp.c:562 msgid "Mismatch must be one of ok, warn, crit" msgstr "" -#: plugins/check_tcp.c:554 +#: plugins/check_tcp.c:568 msgid "Delay must be a positive integer" msgstr "Delay muss ein positiver Integer sein" -#: plugins/check_tcp.c:599 +#: plugins/check_tcp.c:613 #, fuzzy msgid "You must provide a server address" msgstr "%s: Hostname muss angegeben werden\n" -#: plugins/check_tcp.c:601 +#: plugins/check_tcp.c:615 #, fuzzy msgid "Invalid hostname, address or socket" msgstr "Ungültige(r) Hostname/Adresse" -#: plugins/check_tcp.c:615 +#: plugins/check_tcp.c:629 #, fuzzy, c-format msgid "" "This plugin tests %s connections with the specified host (or unix socket).\n" "\n" msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." -#: plugins/check_tcp.c:628 +#: plugins/check_tcp.c:642 msgid "" "Can use \\n, \\r, \\t or \\ in send or quit string. Must come before send or " "quit option" msgstr "" -#: plugins/check_tcp.c:629 +#: plugins/check_tcp.c:643 msgid "Default: nothing added to send, \\r\\n added to end of quit" msgstr "" -#: plugins/check_tcp.c:631 +#: plugins/check_tcp.c:645 msgid "String to send to the server" msgstr "" -#: plugins/check_tcp.c:633 +#: plugins/check_tcp.c:647 msgid "String to expect in server response" msgstr "" -#: plugins/check_tcp.c:633 +#: plugins/check_tcp.c:647 msgid "(may be repeated)" msgstr "" -#: plugins/check_tcp.c:635 +#: plugins/check_tcp.c:649 msgid "All expect strings need to occur in server response. Default is any" msgstr "" -#: plugins/check_tcp.c:637 +#: plugins/check_tcp.c:651 msgid "String to send server to initiate a clean close of the connection" msgstr "" -#: plugins/check_tcp.c:639 +#: plugins/check_tcp.c:653 msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" msgstr "" -#: plugins/check_tcp.c:641 +#: plugins/check_tcp.c:655 msgid "" "Accept expected string mismatches with states ok, warn, crit (default: warn)" msgstr "" -#: plugins/check_tcp.c:643 +#: plugins/check_tcp.c:657 #, fuzzy msgid "Hide output from TCP socket" msgstr "Konnte TCP socket nicht öffnen\n" -#: plugins/check_tcp.c:645 +#: plugins/check_tcp.c:659 msgid "Close connection once more than this number of bytes are received" msgstr "" -#: plugins/check_tcp.c:647 +#: plugins/check_tcp.c:661 msgid "Seconds to wait between sending string and polling for response" msgstr "" -#: plugins/check_tcp.c:652 +#: plugins/check_tcp.c:666 msgid "1st is #days for warning, 2nd is critical (if not specified - 0)." msgstr "" -#: plugins/check_tcp.c:654 +#: plugins/check_tcp.c:668 msgid "Use SSL for the connection." msgstr "" @@ -5565,7 +5570,7 @@ msgstr "" msgid "Receive failed" msgstr "" -#: plugins/netutils.c:331 plugins-root/check_dhcp.c:1337 +#: plugins/netutils.c:331 plugins-root/check_dhcp.c:1342 #, fuzzy, c-format msgid "Invalid hostname/address - %s" msgstr "" @@ -5793,294 +5798,294 @@ msgstr "" msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" msgstr "" -#: plugins-root/check_dhcp.c:383 +#: plugins-root/check_dhcp.c:388 #, c-format msgid "" "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " "eg lnc0.\n" msgstr "" -#: plugins-root/check_dhcp.c:388 plugins-root/check_dhcp.c:400 +#: plugins-root/check_dhcp.c:393 plugins-root/check_dhcp.c:405 #, c-format msgid "" "Error: can't read MAC address from DLPI streams interface for device %s unit " "%d.\n" msgstr "" -#: plugins-root/check_dhcp.c:406 +#: plugins-root/check_dhcp.c:411 #, c-format msgid "" "Error: can't get MAC address for this architecture. Use the --mac option.\n" msgstr "" -#: plugins-root/check_dhcp.c:425 +#: plugins-root/check_dhcp.c:430 #, c-format msgid "Error: Cannot determine IP address of interface %s\n" msgstr "" -#: plugins-root/check_dhcp.c:433 +#: plugins-root/check_dhcp.c:438 #, c-format msgid "Error: Cannot get interface IP address on this platform.\n" msgstr "" -#: plugins-root/check_dhcp.c:438 +#: plugins-root/check_dhcp.c:443 #, c-format msgid "Pretending to be relay client %s\n" msgstr "" -#: plugins-root/check_dhcp.c:523 +#: plugins-root/check_dhcp.c:528 #, c-format msgid "DHCPDISCOVER to %s port %d\n" msgstr "" -#: plugins-root/check_dhcp.c:575 +#: plugins-root/check_dhcp.c:580 #, c-format msgid "Result=ERROR\n" msgstr "" -#: plugins-root/check_dhcp.c:581 +#: plugins-root/check_dhcp.c:586 #, c-format msgid "Result=OK\n" msgstr "" -#: plugins-root/check_dhcp.c:591 +#: plugins-root/check_dhcp.c:596 #, c-format msgid "DHCPOFFER from IP address %s" msgstr "" -#: plugins-root/check_dhcp.c:592 +#: plugins-root/check_dhcp.c:597 #, c-format msgid " via %s\n" msgstr "" -#: plugins-root/check_dhcp.c:599 +#: plugins-root/check_dhcp.c:604 #, c-format msgid "" "DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n" msgstr "" -#: plugins-root/check_dhcp.c:621 +#: plugins-root/check_dhcp.c:626 #, c-format msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" msgstr "" -#: plugins-root/check_dhcp.c:639 +#: plugins-root/check_dhcp.c:644 #, c-format msgid "Total responses seen on the wire: %d\n" msgstr "" -#: plugins-root/check_dhcp.c:640 +#: plugins-root/check_dhcp.c:645 #, fuzzy, c-format msgid "Valid responses for this machine: %d\n" msgstr "Keine Antwort vom Host \n" -#: plugins-root/check_dhcp.c:655 +#: plugins-root/check_dhcp.c:660 #, c-format msgid "send_dhcp_packet result: %d\n" msgstr "" -#: plugins-root/check_dhcp.c:688 +#: plugins-root/check_dhcp.c:693 #, fuzzy, c-format msgid "No (more) data received (nfound: %d)\n" msgstr "Keine Daten empfangen %s\n" -#: plugins-root/check_dhcp.c:707 +#: plugins-root/check_dhcp.c:712 #, c-format msgid "recvfrom() failed, " msgstr "" -#: plugins-root/check_dhcp.c:714 +#: plugins-root/check_dhcp.c:719 #, c-format msgid "receive_dhcp_packet() result: %d\n" msgstr "" -#: plugins-root/check_dhcp.c:715 +#: plugins-root/check_dhcp.c:720 #, c-format msgid "receive_dhcp_packet() source: %s\n" msgstr "" -#: plugins-root/check_dhcp.c:745 +#: plugins-root/check_dhcp.c:750 #, c-format msgid "Error: Could not create socket!\n" msgstr "" -#: plugins-root/check_dhcp.c:755 +#: plugins-root/check_dhcp.c:760 #, c-format msgid "Error: Could not set reuse address option on DHCP socket!\n" msgstr "" -#: plugins-root/check_dhcp.c:761 +#: plugins-root/check_dhcp.c:766 #, c-format msgid "Error: Could not set broadcast option on DHCP socket!\n" msgstr "" -#: plugins-root/check_dhcp.c:770 +#: plugins-root/check_dhcp.c:775 #, c-format msgid "" "Error: Could not bind socket to interface %s. Check your privileges...\n" msgstr "" -#: plugins-root/check_dhcp.c:781 +#: plugins-root/check_dhcp.c:786 #, c-format msgid "" "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" msgstr "" -#: plugins-root/check_dhcp.c:815 +#: plugins-root/check_dhcp.c:820 #, c-format msgid "Requested server address: %s\n" msgstr "" -#: plugins-root/check_dhcp.c:877 +#: plugins-root/check_dhcp.c:882 #, c-format msgid "Lease Time: Infinite\n" msgstr "" -#: plugins-root/check_dhcp.c:879 +#: plugins-root/check_dhcp.c:884 #, c-format msgid "Lease Time: %lu seconds\n" msgstr "" -#: plugins-root/check_dhcp.c:881 +#: plugins-root/check_dhcp.c:886 #, c-format msgid "Renewal Time: Infinite\n" msgstr "" -#: plugins-root/check_dhcp.c:883 +#: plugins-root/check_dhcp.c:888 #, c-format msgid "Renewal Time: %lu seconds\n" msgstr "" -#: plugins-root/check_dhcp.c:885 +#: plugins-root/check_dhcp.c:890 #, c-format msgid "Rebinding Time: Infinite\n" msgstr "" -#: plugins-root/check_dhcp.c:886 +#: plugins-root/check_dhcp.c:891 #, c-format msgid "Rebinding Time: %lu seconds\n" msgstr "" -#: plugins-root/check_dhcp.c:914 +#: plugins-root/check_dhcp.c:919 #, c-format msgid "Added offer from server @ %s" msgstr "" -#: plugins-root/check_dhcp.c:915 +#: plugins-root/check_dhcp.c:920 #, c-format msgid " of IP address %s\n" msgstr "" -#: plugins-root/check_dhcp.c:982 +#: plugins-root/check_dhcp.c:987 #, c-format msgid "DHCP Server Match: Offerer=%s" msgstr "" -#: plugins-root/check_dhcp.c:983 +#: plugins-root/check_dhcp.c:988 #, c-format msgid " Requested=%s" msgstr "" -#: plugins-root/check_dhcp.c:985 +#: plugins-root/check_dhcp.c:990 #, c-format msgid " (duplicate)" msgstr "" -#: plugins-root/check_dhcp.c:986 +#: plugins-root/check_dhcp.c:991 #, c-format msgid "\n" msgstr "" -#: plugins-root/check_dhcp.c:1034 +#: plugins-root/check_dhcp.c:1039 #, c-format msgid "No DHCPOFFERs were received.\n" msgstr "" -#: plugins-root/check_dhcp.c:1038 +#: plugins-root/check_dhcp.c:1043 #, c-format msgid "Received %d DHCPOFFER(s)" msgstr "" -#: plugins-root/check_dhcp.c:1041 +#: plugins-root/check_dhcp.c:1046 #, c-format msgid ", %s%d of %d requested servers responded" msgstr "" -#: plugins-root/check_dhcp.c:1044 +#: plugins-root/check_dhcp.c:1049 #, c-format msgid ", requested address (%s) was %soffered" msgstr "" -#: plugins-root/check_dhcp.c:1044 +#: plugins-root/check_dhcp.c:1049 msgid "not " msgstr "" -#: plugins-root/check_dhcp.c:1046 +#: plugins-root/check_dhcp.c:1051 #, c-format msgid ", max lease time = " msgstr "" -#: plugins-root/check_dhcp.c:1048 +#: plugins-root/check_dhcp.c:1053 #, c-format msgid "Infinity" msgstr "" -#: plugins-root/check_dhcp.c:1229 +#: plugins-root/check_dhcp.c:1234 #, c-format msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" msgstr "" -#: plugins-root/check_dhcp.c:1241 +#: plugins-root/check_dhcp.c:1246 #, c-format msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" msgstr "" -#: plugins-root/check_dhcp.c:1254 +#: plugins-root/check_dhcp.c:1259 #, c-format msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" msgstr "" -#: plugins-root/check_dhcp.c:1266 +#: plugins-root/check_dhcp.c:1271 #, c-format msgid "" "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" msgstr "" -#: plugins-root/check_dhcp.c:1290 +#: plugins-root/check_dhcp.c:1295 #, c-format msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" msgstr "" -#: plugins-root/check_dhcp.c:1369 +#: plugins-root/check_dhcp.c:1374 #, c-format msgid "Hardware address: " msgstr "" -#: plugins-root/check_dhcp.c:1385 +#: plugins-root/check_dhcp.c:1390 msgid "This plugin tests the availability of DHCP servers on a network." msgstr "" -#: plugins-root/check_dhcp.c:1397 +#: plugins-root/check_dhcp.c:1402 msgid "IP address of DHCP server that we must hear from" msgstr "" -#: plugins-root/check_dhcp.c:1399 +#: plugins-root/check_dhcp.c:1404 msgid "IP address that should be offered by at least one DHCP server" msgstr "" -#: plugins-root/check_dhcp.c:1401 +#: plugins-root/check_dhcp.c:1406 msgid "Seconds to wait for DHCPOFFER before timeout occurs" msgstr "" -#: plugins-root/check_dhcp.c:1403 +#: plugins-root/check_dhcp.c:1408 msgid "Interface to to use for listening (i.e. eth0)" msgstr "" -#: plugins-root/check_dhcp.c:1405 +#: plugins-root/check_dhcp.c:1410 msgid "MAC address to use in the DHCP request" msgstr "" -#: plugins-root/check_dhcp.c:1407 +#: plugins-root/check_dhcp.c:1412 msgid "Unicast testing: mimic a DHCP relay, requires -s" msgstr "" diff --git a/po/fr.gmo b/po/fr.gmo index cf3f489..8f41723 100644 Binary files a/po/fr.gmo and b/po/fr.gmo differ diff --git a/po/fr.po b/po/fr.po index a88a1e0..282b6a9 100644 --- a/po/fr.po +++ b/po/fr.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: nagiosplug-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-09-13 00:18+0200\n" +"POT-Creation-Date: 2013-09-20 11:35+0200\n" "PO-Revision-Date: 2010-04-21 23:38-0400\n" "Last-Translator: Thomas Guyot-Sionnest \n" "Language-Team: Nagios Plugin Development Mailing List ,%% where is the round trip average travel time " @@ -1039,18 +1039,18 @@ msgstr "" "Le seuil est ,%% ou est le temps moyen pour l'aller retour " "(ms)" -#: plugins/check_fping.c:485 +#: plugins/check_fping.c:492 msgid "" "which triggers a WARNING or CRITICAL state, and is the percentage of" msgstr "" "qui déclenche résultat AVERTISSEMENT ou CRITIQUE, et est le pourcentage " "de" -#: plugins/check_fping.c:486 +#: plugins/check_fping.c:493 msgid "packet loss to trigger an alarm state." msgstr "paquets perdu pour déclencher une alarme." -#: plugins/check_fping.c:489 +#: plugins/check_fping.c:496 msgid "IPv4 is used by default. Specify -6 to use IPv6." msgstr "" @@ -1188,8 +1188,8 @@ msgid "file does not exist or is not readable" msgstr "" #: plugins/check_http.c:310 plugins/check_http.c:315 plugins/check_http.c:321 -#: plugins/check_smtp.c:600 plugins/check_tcp.c:562 plugins/check_tcp.c:566 -#: plugins/check_tcp.c:572 +#: plugins/check_smtp.c:600 plugins/check_tcp.c:576 plugins/check_tcp.c:580 +#: plugins/check_tcp.c:586 msgid "Invalid certificate expiration period" msgstr "Période d'expiration du certificat invalide" @@ -1199,7 +1199,7 @@ msgid "" "(SSLv3)" msgstr "" -#: plugins/check_http.c:354 plugins/check_tcp.c:585 +#: plugins/check_http.c:354 plugins/check_tcp.c:599 msgid "Invalid option - SSL is not available" msgstr "Option invalide - SSL n'est pas disponible" @@ -1223,7 +1223,7 @@ msgstr "Impossible de compiler l'expression rationnelle: %s" #: plugins/check_http.c:464 plugins/check_ntp.c:722 #: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:512 -#: plugins/check_smtp.c:621 plugins/check_ssh.c:149 plugins/check_tcp.c:463 +#: plugins/check_smtp.c:621 plugins/check_ssh.c:149 plugins/check_tcp.c:477 msgid "IPv6 support not available" msgstr "Support IPv6 non disponible" @@ -1846,41 +1846,46 @@ msgstr "Le seuil d'alerte doit être un nombre à virgule flottante!\n" msgid "Error opening %s\n" msgstr "Erreur à l'ouverture de %s\n" -#: plugins/check_load.c:160 +#: plugins/check_load.c:163 +#, fuzzy, c-format +msgid "could not parse load from uptime: %s\n" +msgstr "Lecture des arguments impossible\n" + +#: plugins/check_load.c:169 #, c-format msgid "Error code %d returned in %s\n" msgstr "Le code erreur %d à été retourné par %s\n" -#: plugins/check_load.c:175 +#: plugins/check_load.c:184 #, c-format msgid "Error in getloadavg()\n" msgstr "Erreur dans la fonction getloadavg()\n" -#: plugins/check_load.c:178 plugins/check_load.c:180 +#: plugins/check_load.c:187 plugins/check_load.c:189 #, c-format msgid "Error processing %s\n" msgstr "Erreur lors de l'utilisation de %s\n" -#: plugins/check_load.c:189 +#: plugins/check_load.c:198 #, c-format msgid "load average: %.2f, %.2f, %.2f" msgstr "Charge moyenne: %.2f, %.2f, %.2f" -#: plugins/check_load.c:282 +#: plugins/check_load.c:291 #, c-format msgid "Critical threshold for %d-minute load average is not specified\n" msgstr "" "Le seuil critique pour la charge système après %d minutes n'est pas " "spécifié\n" -#: plugins/check_load.c:284 +#: plugins/check_load.c:293 #, c-format msgid "Warning threshold for %d-minute load average is not specified\n" msgstr "" "Le seuil d'avertissement pour la charge système après %d minutes n'est pas " "spécifié\n" -#: plugins/check_load.c:286 +#: plugins/check_load.c:295 #, c-format msgid "" "Parameter inconsistency: %d-minute \"warning load\" is greater than " @@ -1889,25 +1894,25 @@ msgstr "" "Arguments Incorrects: %d-minute \"alerte charge système\" est plus grand que " "\"alerte critique charge système\"\n" -#: plugins/check_load.c:302 +#: plugins/check_load.c:311 #, c-format msgid "This plugin tests the current system load average." msgstr "Ce plugin teste la charge système actuelle." -#: plugins/check_load.c:312 +#: plugins/check_load.c:321 msgid "Exit with WARNING status if load average exceeds WLOADn" msgstr "" "Sortir avec un résultat AVERTISSEMENT si la charge moyenne dépasse WLOAD" -#: plugins/check_load.c:314 +#: plugins/check_load.c:323 msgid "Exit with CRITICAL status if load average exceed CLOADn" msgstr "Sortir avec un résultat CRITIQUE si la charge moyenne excède CLOAD" -#: plugins/check_load.c:315 +#: plugins/check_load.c:324 msgid "the load average format is the same used by \"uptime\" and \"w\"" msgstr "" -#: plugins/check_load.c:317 +#: plugins/check_load.c:326 msgid "Divide the load averages by the number of CPUs (when possible)" msgstr "" @@ -4320,7 +4325,7 @@ msgstr "Réponses REAL invalide reçue de l'hôte" msgid "Invalid REAL response received from host on port %d\n" msgstr "Réponses REAL invalide reçue de l'hôte sur le port %d\n" -#: plugins/check_real.c:184 plugins/check_tcp.c:297 +#: plugins/check_real.c:184 plugins/check_tcp.c:311 #, c-format msgid "No data received from host\n" msgstr "Pas de données reçues de l'hôte\n" @@ -4560,7 +4565,7 @@ msgstr "" msgid "FQDN used for HELO" msgstr "" -#: plugins/check_smtp.c:809 plugins/check_tcp.c:651 +#: plugins/check_smtp.c:809 plugins/check_tcp.c:665 msgid "Minimum number of days a certificate has to be valid." msgstr "Nombre de jours minimum pour que le certificat soit valide." @@ -5025,46 +5030,46 @@ msgstr "" "Sur AIX, si -a est spécifié, le plugin utilise lsps -a, sinon il utilise " "lsps -s." -#: plugins/check_tcp.c:199 +#: plugins/check_tcp.c:206 msgid "CRITICAL - Generic check_tcp called with unknown service\n" msgstr "" "CRITIQUE -check_tcp version générique utilisé avec un service inconnu\n" -#: plugins/check_tcp.c:223 +#: plugins/check_tcp.c:230 msgid "With UDP checks, a send/expect string must be specified." msgstr "" "Avec la surveillance UDP, une chaîne d'envoi et un chaîne de réponse doit " "être spécifiée." -#: plugins/check_tcp.c:417 +#: plugins/check_tcp.c:431 msgid "No arguments found" msgstr "Pas de paramètres" -#: plugins/check_tcp.c:520 +#: plugins/check_tcp.c:534 msgid "Maxbytes must be a positive integer" msgstr "Maxbytes doit être un entier positif" -#: plugins/check_tcp.c:538 +#: plugins/check_tcp.c:552 msgid "Refuse must be one of ok, warn, crit" msgstr "Refuse doit être parmis ok, warn, crit" -#: plugins/check_tcp.c:548 +#: plugins/check_tcp.c:562 msgid "Mismatch must be one of ok, warn, crit" msgstr "Mismatch doit être parmis ok, warn, crit" -#: plugins/check_tcp.c:554 +#: plugins/check_tcp.c:568 msgid "Delay must be a positive integer" msgstr "Delay doit être un entier positif" -#: plugins/check_tcp.c:599 +#: plugins/check_tcp.c:613 msgid "You must provide a server address" msgstr "Vous devez fournir une adresse serveur" -#: plugins/check_tcp.c:601 +#: plugins/check_tcp.c:615 msgid "Invalid hostname, address or socket" msgstr "Adresse/Nom/Socket invalide" -#: plugins/check_tcp.c:615 +#: plugins/check_tcp.c:629 #, c-format msgid "" "This plugin tests %s connections with the specified host (or unix socket).\n" @@ -5073,7 +5078,7 @@ msgstr "" "Ce plugin teste %s connections avec l'hôte spécifié (ou socket unix).\n" "\n" -#: plugins/check_tcp.c:628 +#: plugins/check_tcp.c:642 msgid "" "Can use \\n, \\r, \\t or \\ in send or quit string. Must come before send or " "quit option" @@ -5081,59 +5086,59 @@ msgstr "" "Permet d'utiliser \\n, \\r, \\t ou \\ dans la chaîne de caractères send ou " "quit. Doit être placé avant ces dernières." -#: plugins/check_tcp.c:629 +#: plugins/check_tcp.c:643 msgid "Default: nothing added to send, \\r\\n added to end of quit" msgstr "" "Par défaut: Rien n'est ajouté à send, \\r\\n est ajouté à la fin de quit" -#: plugins/check_tcp.c:631 +#: plugins/check_tcp.c:645 msgid "String to send to the server" msgstr "Chaîne de caractères à envoyer au serveur" -#: plugins/check_tcp.c:633 +#: plugins/check_tcp.c:647 msgid "String to expect in server response" msgstr "Chaîne de caractères à attendre en réponse" -#: plugins/check_tcp.c:633 +#: plugins/check_tcp.c:647 msgid "(may be repeated)" msgstr "(peut être utilisé plusieurs fois)" -#: plugins/check_tcp.c:635 +#: plugins/check_tcp.c:649 msgid "All expect strings need to occur in server response. Default is any" msgstr "" "Toutes les chaînes attendus (expect) doivent être repérés dans la réponse. " "Par défaut, n'importe laquelle suffit." -#: plugins/check_tcp.c:637 +#: plugins/check_tcp.c:651 msgid "String to send server to initiate a clean close of the connection" msgstr "Chaîne de caractères à envoyer pour fermer gracieusement la connection" -#: plugins/check_tcp.c:639 +#: plugins/check_tcp.c:653 msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" msgstr "" -#: plugins/check_tcp.c:641 +#: plugins/check_tcp.c:655 msgid "" "Accept expected string mismatches with states ok, warn, crit (default: warn)" msgstr "" -#: plugins/check_tcp.c:643 +#: plugins/check_tcp.c:657 msgid "Hide output from TCP socket" msgstr "Cacher la réponse provenant du socket TCP" -#: plugins/check_tcp.c:645 +#: plugins/check_tcp.c:659 msgid "Close connection once more than this number of bytes are received" msgstr "" -#: plugins/check_tcp.c:647 +#: plugins/check_tcp.c:661 msgid "Seconds to wait between sending string and polling for response" msgstr "" -#: plugins/check_tcp.c:652 +#: plugins/check_tcp.c:666 msgid "1st is #days for warning, 2nd is critical (if not specified - 0)." msgstr "" -#: plugins/check_tcp.c:654 +#: plugins/check_tcp.c:668 msgid "Use SSL for the connection." msgstr "" @@ -5673,7 +5678,7 @@ msgstr "Le chemin fourni est trop long pour un socket unix" msgid "Receive failed" msgstr "La réception à échoué" -#: plugins/netutils.c:331 plugins-root/check_dhcp.c:1337 +#: plugins/netutils.c:331 plugins-root/check_dhcp.c:1342 #, c-format msgid "Invalid hostname/address - %s" msgstr "Adresse/Nom invalide - %s" @@ -5954,7 +5959,7 @@ msgstr "" "Erreur: Impossible d'obtenir l'adresse matérielle depuis %s erreur sysctl 2 " "- %s.\n" -#: plugins-root/check_dhcp.c:383 +#: plugins-root/check_dhcp.c:388 #, c-format msgid "" "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " @@ -5963,7 +5968,7 @@ msgstr "" "Erreur: impossible de trouver le numéro dans le nom de l'interface (%s).\n" "J'attendais le nom suivi du type ex lnc0.\n" -#: plugins-root/check_dhcp.c:388 plugins-root/check_dhcp.c:400 +#: plugins-root/check_dhcp.c:393 plugins-root/check_dhcp.c:405 #, c-format msgid "" "Error: can't read MAC address from DLPI streams interface for device %s unit " @@ -5972,7 +5977,7 @@ msgstr "" "Erreur: impossible de lire l'adresse MAC depuis l'interface DLPI pour le \n" "périphérique %s numéro %d.\n" -#: plugins-root/check_dhcp.c:406 +#: plugins-root/check_dhcp.c:411 #, c-format msgid "" "Error: can't get MAC address for this architecture. Use the --mac option.\n" @@ -5980,47 +5985,47 @@ msgstr "" "Erreur: impossible d'obtenir l'adresse MAC sur cette architecture. Utilisez " "l'option --mac.\n" -#: plugins-root/check_dhcp.c:425 +#: plugins-root/check_dhcp.c:430 #, c-format msgid "Error: Cannot determine IP address of interface %s\n" msgstr "Erreur: Impossible d'obtenir l'adresse IP de l'interface %s\n" -#: plugins-root/check_dhcp.c:433 +#: plugins-root/check_dhcp.c:438 #, c-format msgid "Error: Cannot get interface IP address on this platform.\n" msgstr "Erreur: Impossible d'obtenir l'adresse IP sur cette architecture.\n" -#: plugins-root/check_dhcp.c:438 +#: plugins-root/check_dhcp.c:443 #, c-format msgid "Pretending to be relay client %s\n" msgstr "" -#: plugins-root/check_dhcp.c:523 +#: plugins-root/check_dhcp.c:528 #, c-format msgid "DHCPDISCOVER to %s port %d\n" msgstr "DHCPDISCOVER vers %s port %d\n" -#: plugins-root/check_dhcp.c:575 +#: plugins-root/check_dhcp.c:580 #, c-format msgid "Result=ERROR\n" msgstr "Résultat=ERREUR\n" -#: plugins-root/check_dhcp.c:581 +#: plugins-root/check_dhcp.c:586 #, c-format msgid "Result=OK\n" msgstr "Résultat=OK\n" -#: plugins-root/check_dhcp.c:591 +#: plugins-root/check_dhcp.c:596 #, c-format msgid "DHCPOFFER from IP address %s" msgstr "DHCPOFFER depuis l'adresse IP %s" -#: plugins-root/check_dhcp.c:592 +#: plugins-root/check_dhcp.c:597 #, c-format msgid " via %s\n" msgstr " depuis %s\n" -#: plugins-root/check_dhcp.c:599 +#: plugins-root/check_dhcp.c:604 #, c-format msgid "" "DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n" @@ -6028,67 +6033,67 @@ msgstr "" "DHCPOFFER XID (%u) ne correspond pas au DHCPDISCOVER XID (%u) - paquet " "ignoré\n" -#: plugins-root/check_dhcp.c:621 +#: plugins-root/check_dhcp.c:626 #, c-format msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" msgstr "" "l'adresse matérielle du DHCPOFFER ne correspond pas à la notre paquet " "ignoré\n" -#: plugins-root/check_dhcp.c:639 +#: plugins-root/check_dhcp.c:644 #, c-format msgid "Total responses seen on the wire: %d\n" msgstr "Nombre total de réponses vues: %d\n" -#: plugins-root/check_dhcp.c:640 +#: plugins-root/check_dhcp.c:645 #, c-format msgid "Valid responses for this machine: %d\n" msgstr "Nombre de réponse valides pour cette machine: %d\n" -#: plugins-root/check_dhcp.c:655 +#: plugins-root/check_dhcp.c:660 #, c-format msgid "send_dhcp_packet result: %d\n" msgstr "résultat de send_dchp_packet: %d\n" -#: plugins-root/check_dhcp.c:688 +#: plugins-root/check_dhcp.c:693 #, c-format msgid "No (more) data received (nfound: %d)\n" msgstr "Plus de données reçues (nfound: %d)\n" -#: plugins-root/check_dhcp.c:707 +#: plugins-root/check_dhcp.c:712 #, c-format msgid "recvfrom() failed, " msgstr "recvfrom() a échoué, " -#: plugins-root/check_dhcp.c:714 +#: plugins-root/check_dhcp.c:719 #, c-format msgid "receive_dhcp_packet() result: %d\n" msgstr "résultat de receive_dchp_packet(): %d\n" -#: plugins-root/check_dhcp.c:715 +#: plugins-root/check_dhcp.c:720 #, c-format msgid "receive_dhcp_packet() source: %s\n" msgstr "source de receive_dchp_packet(): %s\n" -#: plugins-root/check_dhcp.c:745 +#: plugins-root/check_dhcp.c:750 #, c-format msgid "Error: Could not create socket!\n" msgstr "Erreur: Impossible de créer un socket!\n" -#: plugins-root/check_dhcp.c:755 +#: plugins-root/check_dhcp.c:760 #, c-format msgid "Error: Could not set reuse address option on DHCP socket!\n" msgstr "" "Erreur: Impossible de configurer l'option de réutilisation de l'adresse sur\n" "le socket DHCP!\n" -#: plugins-root/check_dhcp.c:761 +#: plugins-root/check_dhcp.c:766 #, c-format msgid "Error: Could not set broadcast option on DHCP socket!\n" msgstr "" "Erreur: Impossible de configurer l'option broadcast sur le socket DHCP!\n" -#: plugins-root/check_dhcp.c:770 +#: plugins-root/check_dhcp.c:775 #, c-format msgid "" "Error: Could not bind socket to interface %s. Check your privileges...\n" @@ -6096,7 +6101,7 @@ msgstr "" "Erreur: Impossible de connecter le socket à l'interface %s.\n" "Vérifiez vos droits...\n" -#: plugins-root/check_dhcp.c:781 +#: plugins-root/check_dhcp.c:786 #, c-format msgid "" "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" @@ -6104,125 +6109,125 @@ msgstr "" "Erreur: Impossible de se connecter au socket (port %d)! Vérifiez vos " "droits..\n" -#: plugins-root/check_dhcp.c:815 +#: plugins-root/check_dhcp.c:820 #, c-format msgid "Requested server address: %s\n" msgstr "Adresse serveur demandée: %s\n" -#: plugins-root/check_dhcp.c:877 +#: plugins-root/check_dhcp.c:882 #, c-format msgid "Lease Time: Infinite\n" msgstr "Durée du Bail: Infini\n" -#: plugins-root/check_dhcp.c:879 +#: plugins-root/check_dhcp.c:884 #, c-format msgid "Lease Time: %lu seconds\n" msgstr "Durée du Bail: %lu secondes\n" -#: plugins-root/check_dhcp.c:881 +#: plugins-root/check_dhcp.c:886 #, c-format msgid "Renewal Time: Infinite\n" msgstr "Renouvellement du bail: Infini\n" -#: plugins-root/check_dhcp.c:883 +#: plugins-root/check_dhcp.c:888 #, c-format msgid "Renewal Time: %lu seconds\n" msgstr "Durée du renouvellement = %lu secondes\n" -#: plugins-root/check_dhcp.c:885 +#: plugins-root/check_dhcp.c:890 #, c-format msgid "Rebinding Time: Infinite\n" msgstr "Délai de nouvelle demande: Infini\n" -#: plugins-root/check_dhcp.c:886 +#: plugins-root/check_dhcp.c:891 #, c-format msgid "Rebinding Time: %lu seconds\n" msgstr "Délai de nouvelle demande: %lu secondes\n" -#: plugins-root/check_dhcp.c:914 +#: plugins-root/check_dhcp.c:919 #, c-format msgid "Added offer from server @ %s" msgstr "Rajouté offre du serveur @ %s" -#: plugins-root/check_dhcp.c:915 +#: plugins-root/check_dhcp.c:920 #, c-format msgid " of IP address %s\n" msgstr "de l'adresse IP %s\n" -#: plugins-root/check_dhcp.c:982 +#: plugins-root/check_dhcp.c:987 #, c-format msgid "DHCP Server Match: Offerer=%s" msgstr "Correspondance du serveur DHCP: Offrant=%s" -#: plugins-root/check_dhcp.c:983 +#: plugins-root/check_dhcp.c:988 #, c-format msgid " Requested=%s" msgstr " Demandé=%s" -#: plugins-root/check_dhcp.c:985 +#: plugins-root/check_dhcp.c:990 #, c-format msgid " (duplicate)" msgstr "" -#: plugins-root/check_dhcp.c:986 +#: plugins-root/check_dhcp.c:991 #, c-format msgid "\n" msgstr "" -#: plugins-root/check_dhcp.c:1034 +#: plugins-root/check_dhcp.c:1039 #, c-format msgid "No DHCPOFFERs were received.\n" msgstr "Pas de DHCPOFFERs reçus.\n" -#: plugins-root/check_dhcp.c:1038 +#: plugins-root/check_dhcp.c:1043 #, c-format msgid "Received %d DHCPOFFER(s)" msgstr "Reçu %d DHCPOFFER(s)" -#: plugins-root/check_dhcp.c:1041 +#: plugins-root/check_dhcp.c:1046 #, c-format msgid ", %s%d of %d requested servers responded" msgstr ", %s%d de %d serveurs ont répondus" -#: plugins-root/check_dhcp.c:1044 +#: plugins-root/check_dhcp.c:1049 #, c-format msgid ", requested address (%s) was %soffered" msgstr ", l'adresse demandée (%s) %s été offerte" -#: plugins-root/check_dhcp.c:1044 +#: plugins-root/check_dhcp.c:1049 msgid "not " msgstr "n'as pas" -#: plugins-root/check_dhcp.c:1046 +#: plugins-root/check_dhcp.c:1051 #, c-format msgid ", max lease time = " msgstr ", bail maximum = " -#: plugins-root/check_dhcp.c:1048 +#: plugins-root/check_dhcp.c:1053 #, c-format msgid "Infinity" msgstr "Infini" -#: plugins-root/check_dhcp.c:1229 +#: plugins-root/check_dhcp.c:1234 #, c-format msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" msgstr "" "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans check_ctrl: %s.\n" -#: plugins-root/check_dhcp.c:1241 +#: plugins-root/check_dhcp.c:1246 #, c-format msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" msgstr "" "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans put_ctrl/putmsg(): " "%s.\n" -#: plugins-root/check_dhcp.c:1254 +#: plugins-root/check_dhcp.c:1259 #, c-format msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" msgstr "" "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans put_both/putmsg().\n" -#: plugins-root/check_dhcp.c:1266 +#: plugins-root/check_dhcp.c:1271 #, c-format msgid "" "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" @@ -6230,43 +6235,43 @@ msgstr "" "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans dl_attach_req/" "open(%s..): %s.\n" -#: plugins-root/check_dhcp.c:1290 +#: plugins-root/check_dhcp.c:1295 #, c-format msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" msgstr "" "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans dl_bind/" "check_ctrl(): %s.\n" -#: plugins-root/check_dhcp.c:1369 +#: plugins-root/check_dhcp.c:1374 #, c-format msgid "Hardware address: " msgstr "Adresse matérielle: " -#: plugins-root/check_dhcp.c:1385 +#: plugins-root/check_dhcp.c:1390 msgid "This plugin tests the availability of DHCP servers on a network." msgstr "Ce plugin teste la disponibilité de serveurs DHCP dans un réseau." -#: plugins-root/check_dhcp.c:1397 +#: plugins-root/check_dhcp.c:1402 msgid "IP address of DHCP server that we must hear from" msgstr "" -#: plugins-root/check_dhcp.c:1399 +#: plugins-root/check_dhcp.c:1404 msgid "IP address that should be offered by at least one DHCP server" msgstr "" -#: plugins-root/check_dhcp.c:1401 +#: plugins-root/check_dhcp.c:1406 msgid "Seconds to wait for DHCPOFFER before timeout occurs" msgstr "" -#: plugins-root/check_dhcp.c:1403 +#: plugins-root/check_dhcp.c:1408 msgid "Interface to to use for listening (i.e. eth0)" msgstr "" -#: plugins-root/check_dhcp.c:1405 +#: plugins-root/check_dhcp.c:1410 msgid "MAC address to use in the DHCP request" msgstr "" -#: plugins-root/check_dhcp.c:1407 +#: plugins-root/check_dhcp.c:1412 msgid "Unicast testing: mimic a DHCP relay, requires -s" msgstr "" diff --git a/po/nagios-plugins.pot b/po/nagios-plugins.pot index d3986b9..cd6c297 100644 --- a/po/nagios-plugins.pot +++ b/po/nagios-plugins.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: nagiosplug-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-09-13 00:18+0200\n" +"POT-Creation-Date: 2013-09-20 11:35+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,7 +29,7 @@ msgstr "" #: plugins/check_pgsql.c:172 plugins/check_ping.c:95 plugins/check_procs.c:171 #: plugins/check_radius.c:160 plugins/check_real.c:80 plugins/check_smtp.c:144 #: plugins/check_snmp.c:240 plugins/check_ssh.c:73 plugins/check_swap.c:110 -#: plugins/check_tcp.c:211 plugins/check_time.c:78 plugins/check_ups.c:122 +#: plugins/check_tcp.c:218 plugins/check_time.c:78 plugins/check_ups.c:122 #: plugins/check_users.c:77 plugins/negate.c:214 plugins-root/check_dhcp.c:270 msgid "Could not parse arguments" msgstr "" @@ -64,14 +64,14 @@ msgstr "" #: plugins/check_http.c:278 plugins/check_ldap.c:293 plugins/check_pgsql.c:311 #: plugins/check_procs.c:429 plugins/check_radius.c:308 #: plugins/check_real.c:356 plugins/check_smtp.c:581 plugins/check_snmp.c:736 -#: plugins/check_ssh.c:138 plugins/check_tcp.c:491 plugins/check_time.c:302 +#: plugins/check_ssh.c:138 plugins/check_tcp.c:505 plugins/check_time.c:302 #: plugins/check_ups.c:556 plugins/negate.c:164 msgid "Timeout interval must be a positive integer" msgstr "" #: plugins/check_by_ssh.c:230 plugins/check_pgsql.c:341 #: plugins/check_radius.c:272 plugins/check_real.c:327 -#: plugins/check_smtp.c:506 plugins/check_tcp.c:497 plugins/check_time.c:296 +#: plugins/check_smtp.c:506 plugins/check_tcp.c:511 plugins/check_time.c:296 #: plugins/check_ups.c:518 msgid "Port must be a positive integer" msgstr "" @@ -225,9 +225,9 @@ msgstr "" #: plugins/check_by_ssh.c:460 plugins/check_cluster.c:274 #: plugins/check_dig.c:367 plugins/check_disk.c:941 plugins/check_dns.c:486 -#: plugins/check_dummy.c:122 plugins/check_fping.c:498 +#: plugins/check_dummy.c:122 plugins/check_fping.c:505 #: plugins/check_game.c:331 plugins/check_hpjd.c:414 plugins/check_http.c:1590 -#: plugins/check_ldap.c:451 plugins/check_load.c:325 plugins/check_mrtg.c:382 +#: plugins/check_ldap.c:451 plugins/check_load.c:334 plugins/check_mrtg.c:382 #: plugins/check_mysql.c:569 plugins/check_nagios.c:323 plugins/check_nt.c:774 #: plugins/check_ntp.c:888 plugins/check_ntp_peer.c:725 #: plugins/check_ntp_time.c:642 plugins/check_nwstat.c:1685 @@ -235,10 +235,10 @@ msgstr "" #: plugins/check_ping.c:603 plugins/check_procs.c:773 #: plugins/check_radius.c:385 plugins/check_real.c:451 #: plugins/check_smtp.c:843 plugins/check_snmp.c:1207 plugins/check_ssh.c:309 -#: plugins/check_swap.c:558 plugins/check_tcp.c:670 plugins/check_time.c:371 +#: plugins/check_swap.c:558 plugins/check_tcp.c:684 plugins/check_time.c:371 #: plugins/check_ups.c:660 plugins/check_users.c:240 #: plugins/check_ide_smart.c:640 plugins/negate.c:295 plugins/urlize.c:197 -#: plugins-root/check_dhcp.c:1417 plugins-root/check_icmp.c:1354 +#: plugins-root/check_dhcp.c:1422 plugins-root/check_icmp.c:1354 msgid "Usage:" msgstr "" @@ -839,37 +839,37 @@ msgstr "" msgid "FPING UNKNOWN - failed system call\n" msgstr "" -#: plugins/check_fping.c:185 +#: plugins/check_fping.c:187 #, c-format msgid "FPING UNKNOW - %s not found\n" msgstr "" -#: plugins/check_fping.c:189 +#: plugins/check_fping.c:191 #, c-format msgid "FPING CRITICAL - %s is unreachable\n" msgstr "" -#: plugins/check_fping.c:194 +#: plugins/check_fping.c:196 #, c-format msgid "FPING UNKNOWN - %s parameter error\n" msgstr "" -#: plugins/check_fping.c:198 +#: plugins/check_fping.c:200 plugins/check_fping.c:240 #, c-format msgid "FPING CRITICAL - %s is down\n" msgstr "" -#: plugins/check_fping.c:225 +#: plugins/check_fping.c:227 #, c-format msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n" msgstr "" -#: plugins/check_fping.c:246 +#: plugins/check_fping.c:253 #, c-format msgid "FPING %s - %s (loss=%.0f%% )|%s\n" msgstr "" -#: plugins/check_fping.c:319 plugins/check_fping.c:325 +#: plugins/check_fping.c:326 plugins/check_fping.c:332 #: plugins/check_hpjd.c:338 plugins/check_hpjd.c:361 plugins/check_mysql.c:371 #: plugins/check_mysql.c:455 plugins/check_ntp.c:709 #: plugins/check_ntp_peer.c:497 plugins/check_ntp_time.c:496 @@ -881,107 +881,107 @@ msgstr "" msgid "Invalid hostname/address" msgstr "" -#: plugins/check_fping.c:338 plugins/check_ldap.c:353 plugins/check_ping.c:246 +#: plugins/check_fping.c:345 plugins/check_ldap.c:353 plugins/check_ping.c:246 msgid "IPv6 support not available\n" msgstr "" -#: plugins/check_fping.c:371 +#: plugins/check_fping.c:378 msgid "Packet size must be a positive integer" msgstr "" -#: plugins/check_fping.c:377 +#: plugins/check_fping.c:384 msgid "Packet count must be a positive integer" msgstr "" -#: plugins/check_fping.c:383 +#: plugins/check_fping.c:390 msgid "Target timeout must be a positive integer" msgstr "" -#: plugins/check_fping.c:389 +#: plugins/check_fping.c:396 msgid "Interval must be a positive integer" msgstr "" -#: plugins/check_fping.c:395 plugins/check_ntp.c:733 +#: plugins/check_fping.c:402 plugins/check_ntp.c:733 #: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:523 #: plugins/check_radius.c:314 plugins/check_time.c:319 msgid "Hostname was not supplied" msgstr "" -#: plugins/check_fping.c:415 +#: plugins/check_fping.c:422 #, c-format msgid "%s: Only one threshold may be packet loss (%s)\n" msgstr "" -#: plugins/check_fping.c:419 +#: plugins/check_fping.c:426 #, c-format msgid "%s: Only one threshold must be packet loss (%s)\n" msgstr "" -#: plugins/check_fping.c:451 +#: plugins/check_fping.c:458 msgid "" "This plugin will use the fping command to ping the specified host for a fast " "check" msgstr "" -#: plugins/check_fping.c:453 +#: plugins/check_fping.c:460 msgid "Note that it is necessary to set the suid flag on fping." msgstr "" -#: plugins/check_fping.c:465 +#: plugins/check_fping.c:472 msgid "" "name or IP Address of host to ping (IP Address bypasses name lookup, " "reducing system load)" msgstr "" -#: plugins/check_fping.c:467 plugins/check_ping.c:575 +#: plugins/check_fping.c:474 plugins/check_ping.c:575 msgid "warning threshold pair" msgstr "" -#: plugins/check_fping.c:469 plugins/check_ping.c:577 +#: plugins/check_fping.c:476 plugins/check_ping.c:577 msgid "critical threshold pair" msgstr "" -#: plugins/check_fping.c:471 +#: plugins/check_fping.c:478 msgid "size of ICMP packet" msgstr "" -#: plugins/check_fping.c:473 +#: plugins/check_fping.c:480 msgid "number of ICMP packets to send" msgstr "" -#: plugins/check_fping.c:475 +#: plugins/check_fping.c:482 msgid "Target timeout (ms)" msgstr "" -#: plugins/check_fping.c:477 +#: plugins/check_fping.c:484 msgid "Interval (ms) between sending packets" msgstr "" -#: plugins/check_fping.c:479 +#: plugins/check_fping.c:486 msgid "name or IP Address of sourceip" msgstr "" -#: plugins/check_fping.c:481 +#: plugins/check_fping.c:488 msgid "source interface name" msgstr "" -#: plugins/check_fping.c:484 +#: plugins/check_fping.c:491 #, c-format msgid "" "THRESHOLD is ,%% where is the round trip average travel time " "(ms)" msgstr "" -#: plugins/check_fping.c:485 +#: plugins/check_fping.c:492 msgid "" "which triggers a WARNING or CRITICAL state, and is the percentage of" msgstr "" -#: plugins/check_fping.c:486 +#: plugins/check_fping.c:493 msgid "packet loss to trigger an alarm state." msgstr "" -#: plugins/check_fping.c:489 +#: plugins/check_fping.c:496 msgid "IPv4 is used by default. Specify -6 to use IPv6." msgstr "" @@ -1114,8 +1114,8 @@ msgid "file does not exist or is not readable" msgstr "" #: plugins/check_http.c:310 plugins/check_http.c:315 plugins/check_http.c:321 -#: plugins/check_smtp.c:600 plugins/check_tcp.c:562 plugins/check_tcp.c:566 -#: plugins/check_tcp.c:572 +#: plugins/check_smtp.c:600 plugins/check_tcp.c:576 plugins/check_tcp.c:580 +#: plugins/check_tcp.c:586 msgid "Invalid certificate expiration period" msgstr "" @@ -1125,7 +1125,7 @@ msgid "" "(SSLv3)" msgstr "" -#: plugins/check_http.c:354 plugins/check_tcp.c:585 +#: plugins/check_http.c:354 plugins/check_tcp.c:599 msgid "Invalid option - SSL is not available" msgstr "" @@ -1149,7 +1149,7 @@ msgstr "" #: plugins/check_http.c:464 plugins/check_ntp.c:722 #: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:512 -#: plugins/check_smtp.c:621 plugins/check_ssh.c:149 plugins/check_tcp.c:463 +#: plugins/check_smtp.c:621 plugins/check_ssh.c:149 plugins/check_tcp.c:477 msgid "IPv6 support not available" msgstr "" @@ -1752,61 +1752,66 @@ msgstr "" msgid "Error opening %s\n" msgstr "" -#: plugins/check_load.c:160 +#: plugins/check_load.c:163 +#, c-format +msgid "could not parse load from uptime: %s\n" +msgstr "" + +#: plugins/check_load.c:169 #, c-format msgid "Error code %d returned in %s\n" msgstr "" -#: plugins/check_load.c:175 +#: plugins/check_load.c:184 #, c-format msgid "Error in getloadavg()\n" msgstr "" -#: plugins/check_load.c:178 plugins/check_load.c:180 +#: plugins/check_load.c:187 plugins/check_load.c:189 #, c-format msgid "Error processing %s\n" msgstr "" -#: plugins/check_load.c:189 +#: plugins/check_load.c:198 #, c-format msgid "load average: %.2f, %.2f, %.2f" msgstr "" -#: plugins/check_load.c:282 +#: plugins/check_load.c:291 #, c-format msgid "Critical threshold for %d-minute load average is not specified\n" msgstr "" -#: plugins/check_load.c:284 +#: plugins/check_load.c:293 #, c-format msgid "Warning threshold for %d-minute load average is not specified\n" msgstr "" -#: plugins/check_load.c:286 +#: plugins/check_load.c:295 #, c-format msgid "" "Parameter inconsistency: %d-minute \"warning load\" is greater than " "\"critical load\"\n" msgstr "" -#: plugins/check_load.c:302 +#: plugins/check_load.c:311 #, c-format msgid "This plugin tests the current system load average." msgstr "" -#: plugins/check_load.c:312 +#: plugins/check_load.c:321 msgid "Exit with WARNING status if load average exceeds WLOADn" msgstr "" -#: plugins/check_load.c:314 +#: plugins/check_load.c:323 msgid "Exit with CRITICAL status if load average exceed CLOADn" msgstr "" -#: plugins/check_load.c:315 +#: plugins/check_load.c:324 msgid "the load average format is the same used by \"uptime\" and \"w\"" msgstr "" -#: plugins/check_load.c:317 +#: plugins/check_load.c:326 msgid "Divide the load averages by the number of CPUs (when possible)" msgstr "" @@ -4145,7 +4150,7 @@ msgstr "" msgid "Invalid REAL response received from host on port %d\n" msgstr "" -#: plugins/check_real.c:184 plugins/check_tcp.c:297 +#: plugins/check_real.c:184 plugins/check_tcp.c:311 #, c-format msgid "No data received from host\n" msgstr "" @@ -4380,7 +4385,7 @@ msgstr "" msgid "FQDN used for HELO" msgstr "" -#: plugins/check_smtp.c:809 plugins/check_tcp.c:651 +#: plugins/check_smtp.c:809 plugins/check_tcp.c:665 msgid "Minimum number of days a certificate has to be valid." msgstr "" @@ -4820,105 +4825,105 @@ msgstr "" msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s." msgstr "" -#: plugins/check_tcp.c:199 +#: plugins/check_tcp.c:206 msgid "CRITICAL - Generic check_tcp called with unknown service\n" msgstr "" -#: plugins/check_tcp.c:223 +#: plugins/check_tcp.c:230 msgid "With UDP checks, a send/expect string must be specified." msgstr "" -#: plugins/check_tcp.c:417 +#: plugins/check_tcp.c:431 msgid "No arguments found" msgstr "" -#: plugins/check_tcp.c:520 +#: plugins/check_tcp.c:534 msgid "Maxbytes must be a positive integer" msgstr "" -#: plugins/check_tcp.c:538 +#: plugins/check_tcp.c:552 msgid "Refuse must be one of ok, warn, crit" msgstr "" -#: plugins/check_tcp.c:548 +#: plugins/check_tcp.c:562 msgid "Mismatch must be one of ok, warn, crit" msgstr "" -#: plugins/check_tcp.c:554 +#: plugins/check_tcp.c:568 msgid "Delay must be a positive integer" msgstr "" -#: plugins/check_tcp.c:599 +#: plugins/check_tcp.c:613 msgid "You must provide a server address" msgstr "" -#: plugins/check_tcp.c:601 +#: plugins/check_tcp.c:615 msgid "Invalid hostname, address or socket" msgstr "" -#: plugins/check_tcp.c:615 +#: plugins/check_tcp.c:629 #, c-format msgid "" "This plugin tests %s connections with the specified host (or unix socket).\n" "\n" msgstr "" -#: plugins/check_tcp.c:628 +#: plugins/check_tcp.c:642 msgid "" "Can use \\n, \\r, \\t or \\ in send or quit string. Must come before send or " "quit option" msgstr "" -#: plugins/check_tcp.c:629 +#: plugins/check_tcp.c:643 msgid "Default: nothing added to send, \\r\\n added to end of quit" msgstr "" -#: plugins/check_tcp.c:631 +#: plugins/check_tcp.c:645 msgid "String to send to the server" msgstr "" -#: plugins/check_tcp.c:633 +#: plugins/check_tcp.c:647 msgid "String to expect in server response" msgstr "" -#: plugins/check_tcp.c:633 +#: plugins/check_tcp.c:647 msgid "(may be repeated)" msgstr "" -#: plugins/check_tcp.c:635 +#: plugins/check_tcp.c:649 msgid "All expect strings need to occur in server response. Default is any" msgstr "" -#: plugins/check_tcp.c:637 +#: plugins/check_tcp.c:651 msgid "String to send server to initiate a clean close of the connection" msgstr "" -#: plugins/check_tcp.c:639 +#: plugins/check_tcp.c:653 msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" msgstr "" -#: plugins/check_tcp.c:641 +#: plugins/check_tcp.c:655 msgid "" "Accept expected string mismatches with states ok, warn, crit (default: warn)" msgstr "" -#: plugins/check_tcp.c:643 +#: plugins/check_tcp.c:657 msgid "Hide output from TCP socket" msgstr "" -#: plugins/check_tcp.c:645 +#: plugins/check_tcp.c:659 msgid "Close connection once more than this number of bytes are received" msgstr "" -#: plugins/check_tcp.c:647 +#: plugins/check_tcp.c:661 msgid "Seconds to wait between sending string and polling for response" msgstr "" -#: plugins/check_tcp.c:652 +#: plugins/check_tcp.c:666 msgid "1st is #days for warning, 2nd is critical (if not specified - 0)." msgstr "" -#: plugins/check_tcp.c:654 +#: plugins/check_tcp.c:668 msgid "Use SSL for the connection." msgstr "" @@ -5420,7 +5425,7 @@ msgstr "" msgid "Receive failed" msgstr "" -#: plugins/netutils.c:331 plugins-root/check_dhcp.c:1337 +#: plugins/netutils.c:331 plugins-root/check_dhcp.c:1342 #, c-format msgid "Invalid hostname/address - %s" msgstr "" @@ -5640,294 +5645,294 @@ msgstr "" msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" msgstr "" -#: plugins-root/check_dhcp.c:383 +#: plugins-root/check_dhcp.c:388 #, c-format msgid "" "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " "eg lnc0.\n" msgstr "" -#: plugins-root/check_dhcp.c:388 plugins-root/check_dhcp.c:400 +#: plugins-root/check_dhcp.c:393 plugins-root/check_dhcp.c:405 #, c-format msgid "" "Error: can't read MAC address from DLPI streams interface for device %s unit " "%d.\n" msgstr "" -#: plugins-root/check_dhcp.c:406 +#: plugins-root/check_dhcp.c:411 #, c-format msgid "" "Error: can't get MAC address for this architecture. Use the --mac option.\n" msgstr "" -#: plugins-root/check_dhcp.c:425 +#: plugins-root/check_dhcp.c:430 #, c-format msgid "Error: Cannot determine IP address of interface %s\n" msgstr "" -#: plugins-root/check_dhcp.c:433 +#: plugins-root/check_dhcp.c:438 #, c-format msgid "Error: Cannot get interface IP address on this platform.\n" msgstr "" -#: plugins-root/check_dhcp.c:438 +#: plugins-root/check_dhcp.c:443 #, c-format msgid "Pretending to be relay client %s\n" msgstr "" -#: plugins-root/check_dhcp.c:523 +#: plugins-root/check_dhcp.c:528 #, c-format msgid "DHCPDISCOVER to %s port %d\n" msgstr "" -#: plugins-root/check_dhcp.c:575 +#: plugins-root/check_dhcp.c:580 #, c-format msgid "Result=ERROR\n" msgstr "" -#: plugins-root/check_dhcp.c:581 +#: plugins-root/check_dhcp.c:586 #, c-format msgid "Result=OK\n" msgstr "" -#: plugins-root/check_dhcp.c:591 +#: plugins-root/check_dhcp.c:596 #, c-format msgid "DHCPOFFER from IP address %s" msgstr "" -#: plugins-root/check_dhcp.c:592 +#: plugins-root/check_dhcp.c:597 #, c-format msgid " via %s\n" msgstr "" -#: plugins-root/check_dhcp.c:599 +#: plugins-root/check_dhcp.c:604 #, c-format msgid "" "DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n" msgstr "" -#: plugins-root/check_dhcp.c:621 +#: plugins-root/check_dhcp.c:626 #, c-format msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" msgstr "" -#: plugins-root/check_dhcp.c:639 +#: plugins-root/check_dhcp.c:644 #, c-format msgid "Total responses seen on the wire: %d\n" msgstr "" -#: plugins-root/check_dhcp.c:640 +#: plugins-root/check_dhcp.c:645 #, c-format msgid "Valid responses for this machine: %d\n" msgstr "" -#: plugins-root/check_dhcp.c:655 +#: plugins-root/check_dhcp.c:660 #, c-format msgid "send_dhcp_packet result: %d\n" msgstr "" -#: plugins-root/check_dhcp.c:688 +#: plugins-root/check_dhcp.c:693 #, c-format msgid "No (more) data received (nfound: %d)\n" msgstr "" -#: plugins-root/check_dhcp.c:707 +#: plugins-root/check_dhcp.c:712 #, c-format msgid "recvfrom() failed, " msgstr "" -#: plugins-root/check_dhcp.c:714 +#: plugins-root/check_dhcp.c:719 #, c-format msgid "receive_dhcp_packet() result: %d\n" msgstr "" -#: plugins-root/check_dhcp.c:715 +#: plugins-root/check_dhcp.c:720 #, c-format msgid "receive_dhcp_packet() source: %s\n" msgstr "" -#: plugins-root/check_dhcp.c:745 +#: plugins-root/check_dhcp.c:750 #, c-format msgid "Error: Could not create socket!\n" msgstr "" -#: plugins-root/check_dhcp.c:755 +#: plugins-root/check_dhcp.c:760 #, c-format msgid "Error: Could not set reuse address option on DHCP socket!\n" msgstr "" -#: plugins-root/check_dhcp.c:761 +#: plugins-root/check_dhcp.c:766 #, c-format msgid "Error: Could not set broadcast option on DHCP socket!\n" msgstr "" -#: plugins-root/check_dhcp.c:770 +#: plugins-root/check_dhcp.c:775 #, c-format msgid "" "Error: Could not bind socket to interface %s. Check your privileges...\n" msgstr "" -#: plugins-root/check_dhcp.c:781 +#: plugins-root/check_dhcp.c:786 #, c-format msgid "" "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" msgstr "" -#: plugins-root/check_dhcp.c:815 +#: plugins-root/check_dhcp.c:820 #, c-format msgid "Requested server address: %s\n" msgstr "" -#: plugins-root/check_dhcp.c:877 +#: plugins-root/check_dhcp.c:882 #, c-format msgid "Lease Time: Infinite\n" msgstr "" -#: plugins-root/check_dhcp.c:879 +#: plugins-root/check_dhcp.c:884 #, c-format msgid "Lease Time: %lu seconds\n" msgstr "" -#: plugins-root/check_dhcp.c:881 +#: plugins-root/check_dhcp.c:886 #, c-format msgid "Renewal Time: Infinite\n" msgstr "" -#: plugins-root/check_dhcp.c:883 +#: plugins-root/check_dhcp.c:888 #, c-format msgid "Renewal Time: %lu seconds\n" msgstr "" -#: plugins-root/check_dhcp.c:885 +#: plugins-root/check_dhcp.c:890 #, c-format msgid "Rebinding Time: Infinite\n" msgstr "" -#: plugins-root/check_dhcp.c:886 +#: plugins-root/check_dhcp.c:891 #, c-format msgid "Rebinding Time: %lu seconds\n" msgstr "" -#: plugins-root/check_dhcp.c:914 +#: plugins-root/check_dhcp.c:919 #, c-format msgid "Added offer from server @ %s" msgstr "" -#: plugins-root/check_dhcp.c:915 +#: plugins-root/check_dhcp.c:920 #, c-format msgid " of IP address %s\n" msgstr "" -#: plugins-root/check_dhcp.c:982 +#: plugins-root/check_dhcp.c:987 #, c-format msgid "DHCP Server Match: Offerer=%s" msgstr "" -#: plugins-root/check_dhcp.c:983 +#: plugins-root/check_dhcp.c:988 #, c-format msgid " Requested=%s" msgstr "" -#: plugins-root/check_dhcp.c:985 +#: plugins-root/check_dhcp.c:990 #, c-format msgid " (duplicate)" msgstr "" -#: plugins-root/check_dhcp.c:986 +#: plugins-root/check_dhcp.c:991 #, c-format msgid "\n" msgstr "" -#: plugins-root/check_dhcp.c:1034 +#: plugins-root/check_dhcp.c:1039 #, c-format msgid "No DHCPOFFERs were received.\n" msgstr "" -#: plugins-root/check_dhcp.c:1038 +#: plugins-root/check_dhcp.c:1043 #, c-format msgid "Received %d DHCPOFFER(s)" msgstr "" -#: plugins-root/check_dhcp.c:1041 +#: plugins-root/check_dhcp.c:1046 #, c-format msgid ", %s%d of %d requested servers responded" msgstr "" -#: plugins-root/check_dhcp.c:1044 +#: plugins-root/check_dhcp.c:1049 #, c-format msgid ", requested address (%s) was %soffered" msgstr "" -#: plugins-root/check_dhcp.c:1044 +#: plugins-root/check_dhcp.c:1049 msgid "not " msgstr "" -#: plugins-root/check_dhcp.c:1046 +#: plugins-root/check_dhcp.c:1051 #, c-format msgid ", max lease time = " msgstr "" -#: plugins-root/check_dhcp.c:1048 +#: plugins-root/check_dhcp.c:1053 #, c-format msgid "Infinity" msgstr "" -#: plugins-root/check_dhcp.c:1229 +#: plugins-root/check_dhcp.c:1234 #, c-format msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" msgstr "" -#: plugins-root/check_dhcp.c:1241 +#: plugins-root/check_dhcp.c:1246 #, c-format msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" msgstr "" -#: plugins-root/check_dhcp.c:1254 +#: plugins-root/check_dhcp.c:1259 #, c-format msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" msgstr "" -#: plugins-root/check_dhcp.c:1266 +#: plugins-root/check_dhcp.c:1271 #, c-format msgid "" "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" msgstr "" -#: plugins-root/check_dhcp.c:1290 +#: plugins-root/check_dhcp.c:1295 #, c-format msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" msgstr "" -#: plugins-root/check_dhcp.c:1369 +#: plugins-root/check_dhcp.c:1374 #, c-format msgid "Hardware address: " msgstr "" -#: plugins-root/check_dhcp.c:1385 +#: plugins-root/check_dhcp.c:1390 msgid "This plugin tests the availability of DHCP servers on a network." msgstr "" -#: plugins-root/check_dhcp.c:1397 +#: plugins-root/check_dhcp.c:1402 msgid "IP address of DHCP server that we must hear from" msgstr "" -#: plugins-root/check_dhcp.c:1399 +#: plugins-root/check_dhcp.c:1404 msgid "IP address that should be offered by at least one DHCP server" msgstr "" -#: plugins-root/check_dhcp.c:1401 +#: plugins-root/check_dhcp.c:1406 msgid "Seconds to wait for DHCPOFFER before timeout occurs" msgstr "" -#: plugins-root/check_dhcp.c:1403 +#: plugins-root/check_dhcp.c:1408 msgid "Interface to to use for listening (i.e. eth0)" msgstr "" -#: plugins-root/check_dhcp.c:1405 +#: plugins-root/check_dhcp.c:1410 msgid "MAC address to use in the DHCP request" msgstr "" -#: plugins-root/check_dhcp.c:1407 +#: plugins-root/check_dhcp.c:1412 msgid "Unicast testing: mimic a DHCP relay, requires -s" msgstr ""