diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:34:30 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:34:30 +0000 |
commit | 4fc2f55f761d71aae1f145d5aa94ba929cc39676 (patch) | |
tree | 5c1e1db3b46dd4edbe11f612d93cb94b96891ce3 /m4/pdns_check_clock_gettime.m4 | |
parent | Initial commit. (diff) | |
download | dnsdist-upstream/1.7.3.tar.xz dnsdist-upstream/1.7.3.zip |
Adding upstream version 1.7.3.upstream/1.7.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'm4/pdns_check_clock_gettime.m4')
-rw-r--r-- | m4/pdns_check_clock_gettime.m4 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/m4/pdns_check_clock_gettime.m4 b/m4/pdns_check_clock_gettime.m4 new file mode 100644 index 0000000..b2d3207 --- /dev/null +++ b/m4/pdns_check_clock_gettime.m4 @@ -0,0 +1,6 @@ +AC_DEFUN([PDNS_CHECK_CLOCK_GETTIME],[ + OLD_LIBS="$LIBS"; LIBS="" + AC_SEARCH_LIBS([clock_gettime], [rt], [AC_DEFINE(HAVE_CLOCK_GETTIME, [1], [Define to 1 if you have clock_gettime])]) + AC_SUBST([RT_LIBS],[$LIBS]) + LIBS="$OLD_LIBS" +]) |