summaryrefslogtreecommitdiffstats
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2023-10-31Removing translation filesJan Wagner1-1/+0
Unfortunately there is very less coverage of the translations and was not very much contribution recently this area. On the other side, maintaing the po files consumes a significant effort. For now we drop the translation files, but we can revert this change anytime in the future.
2023-10-17Change versions back to gitJan Wagner1-1/+1
2023-10-17Prepare release 2.3.4Jan Wagner1-1/+1
2023-10-12Update configure.acrefs/pull/1927/headLorenz Kästle1-1/+1
Co-authored-by: waja <waja@users.noreply.github.com>
2023-09-30Merge branch 'master' into autoconf_fixLorenz Kästle1-1/+0
2023-09-23Somehow this fixes detection of the availability of struct timeval for meRincewindsHat1-6/+10
2023-09-23Remove check for RETSIGTYPE in autoconf stuffrefs/pull/1926/headRincewindsHat1-1/+0
autoupdate tells me, that since C89 I can safely assume RETSIGTYPE is void. Therefore to simplify things I removed the corresponding configure.ac line and replaced all mentions of RETSIGTYPE with void.
2023-08-28check_users: prefer systemd-logind over utmprefs/pull/1888/headThorsten Kukuk1-0/+19
Prefer systemd-logind over utmp to get the number of logged in users. utmp is not reliable for this (e.g. some terminals create utmp entries, other not) and utmp is not Y2038 safe with glibc on Linux.
2023-04-26Changing remaining sscanf format specifier to unsigned longLorenz Kästle1-5/+5
2023-04-14Fix a lot of typos reported by codespellrefs/pull/1864/headJan Wagner1-5/+5
2023-01-31Set autoconf prerequisite version to 2.64RincewindsHat1-1/+1
2022-10-07Replace egrep with grep -E (#1791)Lorenz1-63/+63
Replace egrep with grep -E to avoid the deprecation warnings
2022-02-01Use silent automake by default (#1747)Lorenz1-0/+1
2021-11-01check_procs: improve ps args autodetectionSven Nierlein1-0/+10
one of the first ps commands in the configure.ac is `axwo 'stat comm vsz rss user uid pid ppid args'` which works on most modern linux systems (checked debian 10/11 and centos 7/8). But this test misses the etime argument. Therefore `check_procs --metric=ELAPSED` does not work. To fix this, we simply do the same test including etime before that one. Signed-off-by: Sven Nierlein <sven@nierlein.de>
2020-12-09New version number for gitJan Wagner1-1/+1
2020-12-09Updating version numberJan Wagner1-1/+1
2020-05-15Merge branch 'upstream' into check_curlSven Nierlein1-0/+8
2020-04-14- workaround for issue #1550ghciv61-0/+8
- better use "ping -4" instead of "ping" if supported
2019-09-07remove obsolete AM_CONDITIONAL([WITH_CHECK_CURL])Andreas Baumann1-1/+0
2019-04-04Merge branch 'master' into feature_check_curlAndreas Baumann1-0/+4
2018-10-24check_curl: fix builds if curl is not enabledSven Nierlein1-2/+1
2018-10-24builds: alway put picohttpparser into the dist tarballSven Nierlein1-3/+0
substituting PICOHTTPPARSER_DIR only when curl gets build, leads to different dist tarballs depending on wether libcurl was available or not. This then breaks later builds from this tarball because of the missing files.
2018-10-24check_curl: do not build check_curl if curllibs are missingSven Nierlein1-4/+3
2018-10-23check_curl: enable by default if all requirements are metSven Nierlein1-25/+15
2018-10-22removed embedded uriparser library, added --with-uriparser configure optionAndreas Baumann1-5/+30
to use uriparser library from the system
2018-10-22fixed redirect sticky port handling in redirAndreas Baumann1-0/+1
2018-10-22some rework:Andreas Baumann1-13/+25
- added old style 'redir' function and options along to a new libcurl internal 'follow' parameter 'curl' - moved picohttpparser to it's own subdirectory - added uriparser to be used instead of the home-grown parser in 'redir'
2018-10-22added autoconf stuff for curl plugin, created empty pluginAndreas Baumann1-0/+15
2017-09-07Only turn on ordering procs by CPU usage if PS_USES_PROCPCPUrefs/pull/1507/headMarc Sánchez1-0/+4
Disable sorting of procs by CPU usage on check_load if procpcpu is not present on PS_VARLIST
2016-11-29Prepare for the 2.2 releasev2.2Holger Weiss1-1/+1
2016-11-18Merge remote-tracking branch 'monitoring-plugins/pr/1443'Holger Weiss1-3/+3
* monitoring-plugins/pr/1443: add openssl 1.1 support
2016-11-15This patch adds support for using the readcli lib.Jan Wagner1-11/+18
http://radcli.github.io/radcli/ (Closes #1437)
2016-11-13add openssl 1.1 supportrefs/pull/1443/headvagrant1-3/+3
changes: - CRYPTO_lock detection replaced in configure.ac. We don't use that function anywhere, so just replace it with the suggested one from https://wiki.openssl.org/index.php/Library_Initialization#Autoconf - OPENSSL_NO_SSL2 is no longer defined while ssl2 is not included. Set it ourself using the suggested openssl 1.1 version check from https://wiki.openssl.org/index.php/1.1_API_Changes#Backward_compatibility - openssl 1.1 sends a sigpipe if the connection is still open when calling SSL_shutdown(), so move the close before the shutdown. Signed-off-by: Sven Nierlein <sven@nierlein.de>
2015-10-16Prepare for the 2.1.2 releaseHolger Weiss1-1/+1
2015-10-12Revert "Don't let check_disk hang on hanging file systems"Holger Weiss1-6/+0
This reverts commit 6986aa1d0a352d8d02eed4896034631fffd25a27. That commit leads to issues on non-Linux systems, and it seems to not (always) work as expected on Linux, either. Conflicts: plugins/Makefile.am plugins/check_disk.c Closes #1377 and closes #1329.
2014-12-02check_mailq: Add sudo supportHolger Weiss1-0/+10
This addition is based on a patch contributed by Christopher Schultz. Closes #1099. Closes #1171.
2014-12-02Merge branch 'handle-hanging-nfs'Holger Weiss1-0/+6
* handle-hanging-nfs: NEWS: Mention check_disk enhancement Cosmetic change: s/THRLIBS/THREADLIBS/ configure.ac: Don't let pthread check depend on OS check_disk: Seperate declarations from code check_disk: Remove unused status variable check_disk: Fix pthread start routine type Don't let check_disk hang on hanging file systems
2014-12-02Cosmetic change: s/THRLIBS/THREADLIBS/Holger Weiss1-3/+3
Use a more intuitive variable name.
2014-12-02Merge branch 'maint'Holger Weiss1-1/+1
* maint: NEWS: Modify list of changes for 2.1.1 release Prepare release THANKS.in: Add new authors NEWS: Updating all the fixes check_tcp: fix help description regarding escape option check_ntp: Nul-terminate jitter data Revert "plugins/check_ntp.c - Verify struct from response" check_real: fix null termination check_ntp: fix null termination check_apt: fix memset Conflicts: NEWS
2014-12-02configure.ac: Don't let pthread check depend on OSHolger Weiss1-12/+6
Don't check the operating system environment to detect the correct linker flags for using the POSIX thread library.
2014-12-01Prepare releaseJan Wagner1-1/+1
2014-11-28Don't let check_disk hang on hanging file systemsGerhard Lausser1-0/+12
2014-11-28Added particular ps command for HP-UX (check_procs)Yannick Charton1-0/+14
2014-10-15Prepare for the 2.1 releasev2.1Holger Weiss1-1/+1
2014-10-15Removing the spec file, as it's brokenJan Wagner1-2/+1
Even we have none feedback in PR #1283
2014-07-30Fix PATH_TO_QMAIL_QSTAT in configureawiddersheim1-2/+5
When configuring PATH_TO_QMAIL_QSTAT the PATH_TO_MAILQ would get applied instead after tests had passed. Also made --with-qmail-qstat-command a configuration option.
2014-07-11Prepare for the 2.0 releaseHolger Weiss1-1/+1
2014-06-22configure.ac: Change RADIUS library preferencesHolger Weiss1-7/+7
Prefer the FreeRADIUS Client library over radiusclient-ng, and prefer that one over the original radiusclient library.
2014-06-22check_radius: Support FreeRADIUS Client libraryHolger Weiss1-2/+9
Allow for using the FreeRADIUS Client library instead of radiusclient or radiusclient-ng. The latter two projects are dead. Closes #1231.
2014-06-11configure.ac: Remove unused codeHolger Weiss1-2/+0
We no longer set LIBGNUTLS_CONFIG, as GnuTLS no longer ships a "libgnutls-config" tool.