diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2023-10-13 17:09:29 (GMT) |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2023-10-13 17:09:29 (GMT) |
commit | b6d3acf5e3f685d6048905d4bef84ebfbb9f4815 (patch) | |
tree | 8a4f5e2f2f28976f80ba9b5e68dd19ba917e35f4 /configure.ac | |
parent | 41ebe4b6d9c36205577a336ae6f81567a0321267 (diff) | |
parent | bf70f5f847e3407af572d1768cca747af270b993 (diff) | |
download | monitoring-plugins-b6d3acf5e3f685d6048905d4bef84ebfbb9f4815.tar.gz |
Merge branch 'master' into check_dhcp_rogue_detectionrefs/pull/1906/head
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index e6a40d3..b5374b2 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -644,12 +644,16 @@ AC_TRY_COMPILE([#include <sys/time.h>], | |||
644 | [struct timeval *tv; | 644 | [struct timeval *tv; |
645 | struct timezone *tz;], | 645 | struct timezone *tz;], |
646 | AC_DEFINE(HAVE_STRUCT_TIMEVAL,1,[Define if we have a timeval structure]) | 646 | AC_DEFINE(HAVE_STRUCT_TIMEVAL,1,[Define if we have a timeval structure]) |
647 | AC_TRY_COMPILE([#include <sys/time.h>], | 647 | FOUND_STRUCT_TIMEVAL="yes") |
648 | [struct timeval *tv; | 648 | |
649 | struct timezone *tz; | 649 | if test x"$FOUND_STRUCT_TIMEVAL" = x"yes"; then |
650 | gettimeofday(tv, tz);], | 650 | AC_TRY_COMPILE([#include <sys/time.h>], |
651 | AC_DEFINE(HAVE_GETTIMEOFDAY,1,[Define if gettimeofday is found]), | 651 | [struct timeval *tv; |
652 | AC_DEFINE(NEED_GETTIMEOFDAY,1,[Define if gettimeofday is needed]))) | 652 | struct timezone *tz; |
653 | gettimeofday(tv, tz);], | ||
654 | AC_DEFINE(HAVE_GETTIMEOFDAY,1,[Define if gettimeofday is found]), | ||
655 | AC_DEFINE(NEED_GETTIMEOFDAY,1,[Define if gettimeofday is needed])) | ||
656 | fi | ||
653 | 657 | ||
654 | dnl Checks for library functions. | 658 | dnl Checks for library functions. |
655 | AC_CHECK_FUNCS(memmove select socket strdup strstr strtol strtoul floor) | 659 | AC_CHECK_FUNCS(memmove select socket strdup strstr strtol strtoul floor) |