summaryrefslogtreecommitdiffstats
path: root/configure.in
AgeCommit message (Collapse)AuthorFilesLines
2014-01-23Enable extra-opts by defaultThomas Guyot-Sionnest1-1/+1
2014-01-21Capitalize "Monitoring Plugins"Holger Weiss1-1/+1
"Monitoring Plugins" is a name.
2014-01-21Merge branch 'maint'Holger Weiss1-1/+1
* maint: check_ssh: Get rid of sshd: Read from socket failed: Connection reset by peer fixed tests when there is no direct internet connection NEWS: Mention fix for check_http's -S option Fix for SSL Versioning when multiple options are used. Fix #1217 spec file fails to build due to duplicate files and unused files check_http: Don't let "-N" expect an argument README: Change GitHub URL README: Clarify license notice Update URLs and mailing list addresses Just using the posix conform extended regular expression grep check_oracle: --db +ASM bad string matching check_oracle doesn't correctly check for pmon +ASM instance from at least Oracle 11 as the pmon proces was renamed from ora_pmon_.* to asm_pmon_.*. -- Just turning attached patch of github issue #1207 into a push request. (Closes #1207) Update web site URLs Conflicts: FAQ NEWS README SUPPORT configure.in monitoring-plugins.spec.in pkg/solaris/pkginfo.in plugins-root/check_dhcp.c plugins-root/check_icmp.c plugins-scripts/check_ifoperstatus.pl plugins-scripts/check_mssql.pl plugins/check_apt.c plugins/check_by_ssh.c plugins/check_cluster.c plugins/check_dbi.c plugins/check_dig.c plugins/check_disk.c plugins/check_dns.c plugins/check_dummy.c plugins/check_fping.c plugins/check_game.c plugins/check_hpjd.c plugins/check_http.c plugins/check_ide_smart.c plugins/check_ldap.c plugins/check_load.c plugins/check_mrtg.c plugins/check_mrtgtraf.c plugins/check_mysql.c plugins/check_mysql_query.c plugins/check_nagios.c plugins/check_nt.c plugins/check_ntp.c plugins/check_ntp_peer.c plugins/check_ntp_time.c plugins/check_nwstat.c plugins/check_overcr.c plugins/check_pgsql.c plugins/check_ping.c plugins/check_procs.c plugins/check_radius.c plugins/check_real.c plugins/check_smtp.c plugins/check_snmp.c plugins/check_ssh.c plugins/check_swap.c plugins/check_tcp.c plugins/check_time.c plugins/check_ups.c plugins/check_users.c plugins/negate.c plugins/urlize.c plugins/utils.h po/Makevars po/de.po po/fr.po po/monitoring-plugins.pot
2014-01-21New default installation prefix: /usr/localHolger Weiss1-2/+0
Install into /usr/local instead of /usr/local/nagios by default, in order to comply with the Filesystem Hierarchy Standard (FHS) and presumably the expectations of most users.
2014-01-19Project rename initial commit.Monitoring Plugins Development Team1-7/+7
This is an initial take at renaming the project to Monitoring Plugins. It's not expected to be fully complete, and it is expected to break things (The perl module for instance). More testing will be required before this goes mainline.
2014-01-10configure.in: Call AC_CONFIG_HEADERSHolger Weiss1-1/+1
AM_CONFIG_HEADER is deprecated.
2013-10-28Update URLs and mailing list addressesHolger Weiss1-1/+1
Now that we moved our infrastructure away from SourceForge, update the URLs and mailing list addresses accordingly.
2013-10-02Prepare for the 1.5 releaserelease-1.5Holger Weiß1-1/+1
2013-09-02Remove the outdated "command.cfg" fileHolger Weiss1-1/+0
2013-08-20Check for who(1) only if utmpx(5) isn't availableHolger Weiss1-17/+20
The who(1) command is only called by check_users if the system doesn't provide an utmpx(5) interface.
2013-08-20check_users: Use utmpx(5) only if availableHolger Weiss1-0/+4
For systems that don't provide an utmpx(5) interface, restore the code that was replaced in commit 3e622f3a47bc7d31f22513a79892c3c52febd2d3.
2013-08-19check_ide_smart: Add support for NetBSDHolger Weiss1-7/+25
Thanks to Emmanuel Dreyfus for providing the patch.
2013-08-19Clean up check for _SC_NPROCESSORS_ONLNHolger Weiss1-8/+8
Closes #62.
2013-08-19Bug fix for ncpus if hyperthreading turned off in linuxrefs/pull/62/headBooker C. Bense1-3/+11
2013-08-18check_procs: Get rid of HAVE_PROC_PID_EXESebastian Schmidt1-6/+0
Don't check for /proc/pid/exe at compile time, it could be gone in a build chroot or the like. Checking at runtime (once) is sufficient.
2013-08-18check_procs: filter out self by /proc/pid/exeSebastian Schmidt1-0/+6
Make check_procs filter out itself in the process list by comparing the file pointed to by /proc/pid/exe. On platforms where this is not available or when check_procs is passed the -T flag, the old behaviour (check whether PID equals getpid()) is retained. This fixes some false alarms when e.g. Nagios has, for whatever reasons, some backlog of checks to run and check_procs with -a is called more than once in a short time, matching its sister process.
2013-08-17check_fping: Use fping6(8) only if availableHolger Weiss1-11/+9
Let check_fping use IPv6 only if - the operating system supports IPv6, - the user didn't specify --without-ipv6, and - the "configure" script found the fping6(8) binary.
2013-08-17Merge remote-tracking branch 'github/villemattila/check_fping_ipv6'Holger Weiss1-0/+11
* github/villemattila/check_fping_ipv6: check_fping: IPv6 support Conflicts: plugins/check_fping.c
2013-05-12configure: add --without-ldap, --without-radius and --without-dbi options.Diego Elio Pettenò1-40/+51
When building for distributions such as Gentoo Linux, or FreeBSD ports, it's convenient to be able to disable building certain functionalities even if the dependencies are present, to avoid what are called "automagic dependendencies". Adding these parameters solve the issue.
2012-12-28check_fping: IPv6 supportrefs/pull/30/headVille Mattila1-0/+11
Add command line options -4 and -6 (--use-ipv4 and --use-ipv6) to check_fping. IPv4 is used by default, maintaining backwards compatibility with older check_fping versions. IPv6 support requires the fping6 program. The implementation is really just an imitation of check_ping IPv6 support: Plugin command line option -4/-6 designates whether to run fping/fping6. Please note that especially the changes to configure.in might be all wrong - I don't know what's the proper autoconf way, patching configure.in just seemed to work for me.
2012-07-04Merge remote-tracking branch 'github/tokkee/sh/check_dbi'Holger Weiss1-0/+13
2012-06-27Prepare for the 1.4.16 releaserelease-1.4.16Holger Weiss1-1/+1
2012-06-06Initial version of the 'check_dbi' plugin.Sebastian Harl1-0/+13
This plugin connects to an SQL database using libdbi, thus supporting all database backends supported by libdbi. It will then issue the specified SQL query and check the result (the numeric value of the first column of the first row to be precise) against the specified warning/critical ranges. The performance data includes the connection time (µs-resolution as provided by gettimeofday()) and the query result.
2012-04-06Updated to support compiling and building RPM on AIX.Eric Stanley1-1/+2
2012-02-10Enable compiling on AIX 6.1Eric Stanley1-0/+2
2010-07-271.4.15 preprelease-1.4.15Ton Voon1-1/+1
2010-06-18Attempt at detecting 64bit compilation flags between gcc, old, and new ↵Thomas Guyot-Sionnest1-3/+62
versions of sun cc Gcc accepts -m64, just as newer version of Suncc. Older Suncc required -xarch=v9 (SPARC) or -xarch=amd64 (x86-64) to generate 64bit code.
2009-12-05Detect arguments passed via --with-ping[6]-command (#2908236)Thomas Guyot-Sionnest1-2/+17
2009-12-04Whitespace fixesThomas Guyot-Sionnest1-15/+15
2009-09-25Using $srcdir is the proper way to goThomas Guyot-Sionnest1-5/+3
2009-09-25Allow custom versions with the release file...nagiosplugins1-0/+8
2009-09-16Prep for 1.4.14 releaserelease-1.4.14Ton Voon1-1/+1
2009-01-23Add die tests for parse_iniThomas Guyot-Sionnest1-1/+1
2009-01-22Add die tests for extra-optsThomas Guyot-Sionnest1-1/+1
2009-01-21Some platform are missing setenvThomas Guyot-Sionnest1-1/+1
Instead of adding the gnulib module for solving tests only I split the test in two, setting environment from Perl for the later.
2009-01-15Removing AC_FUNC_ALLOCA from configure.in (added in the gnulib sync commit)Thomas Guyot-Sionnest1-1/+0
I added AC_FUNC_ALLOCA because of a mistake on my part (which has been fixed before the final commit). Removing it now.
2009-01-15Sync with gnulibThomas Guyot-Sionnest1-1/+1
2008-11-29Add Libtap as a bundled library (does not change any behaviour without ↵Thomas Guyot-Sionnest1-43/+74
--enable-libtap) Detects system library as pre-1.4.13 and does not install the built-in library anymore Tested on: - Linux x86_64, with and without local libtap (System libtap installed) - Linux x86, with and without local libtap (System libtap NOT installed) - Solaris SPARC, with and without local libtap, with and without system libtap installed
2008-11-28Revert inclusion of libtap into nagiospluginsThomas Guyot-Sionnest1-21/+5
(except for the NEWS file) This reverts the following commits (latest first): f3e0909, 9f16b54, be8df51, f31cd40, 5270c7d, a25083f, f1bfe40, c503d85 and 6c476db
2008-11-26Disable dynamic versionning for releases, and allow generating version out ↵Thomas Guyot-Sionnest1-0/+3
of subversion. This should be a definitive fix for systems with non-compilant make programs as the version will be taken from $(PACKAGE_VERSION) instead. At the same time I added code for generating svn-based version strings.
2008-11-23Removing CVS/SVN tags and replacing with git-based versioningThomas Guyot-Sionnest1-1/+0
For contrib/, full tags have been imported from subversion git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2091 f882894a-f735-0410-b71e-b25c423dba1c
2008-11-05Fixed libtap dependency issue. Warning: will install tap into lib directoriesTon Voon1-0/+4
if ./configure --enable-libtap is used, but as development tool, will be okay git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2068 f882894a-f735-0410-b71e-b25c423dba1c
2008-09-25Preparation for 1.4.13release-1.4.13Ton Voon1-1/+1
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2057 f882894a-f735-0410-b71e-b25c423dba1c
2008-08-21Only include extra-opts tests if libtap is enabledTon Voon1-17/+20
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2044 f882894a-f735-0410-b71e-b25c423dba1c
2008-06-26Adding libtap into distribution to help run C based testsTon Voon1-6/+15
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2013 f882894a-f735-0410-b71e-b25c423dba1c
2008-05-27Preparation for 1.4.12 releaserelease-1.4.12Ton Voon1-1/+1
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2004 f882894a-f735-0410-b71e-b25c423dba1c
2008-05-27Not picking up solaris systems correctly for check_dhcp. OnlyTon Voon1-2/+2
affected SunStudio compiles of check_dhcp (1890260 - Rob Windsor) git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2003 f882894a-f735-0410-b71e-b25c423dba1c
2008-05-22Fix linking against OpenSSL where libdl is requiredThomas Guyot-Sionnest1-0/+8
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1998 f882894a-f735-0410-b71e-b25c423dba1c
2008-04-29Support "--without-pgsql" (reported by Alex Songe via IRC).Holger Weiss1-1/+1
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1987 f882894a-f735-0410-b71e-b25c423dba1c
2008-04-02- Add --enable-extra-opts configure option for compiling extra-opts supportThomas Guyot-Sionnest1-0/+14
- Auto-update po/pot files git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1973 f882894a-f735-0410-b71e-b25c423dba1c