summaryrefslogtreecommitdiffstats
path: root/m4/pdns_check_network_libs.m4
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 09:34:30 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 09:34:30 +0000
commit4fc2f55f761d71aae1f145d5aa94ba929cc39676 (patch)
tree5c1e1db3b46dd4edbe11f612d93cb94b96891ce3 /m4/pdns_check_network_libs.m4
parentInitial commit. (diff)
downloaddnsdist-upstream.tar.xz
dnsdist-upstream.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_network_libs.m4')
-rw-r--r--m4/pdns_check_network_libs.m47
1 files changed, 7 insertions, 0 deletions
diff --git a/m4/pdns_check_network_libs.m4 b/m4/pdns_check_network_libs.m4
new file mode 100644
index 0000000..d8b020c
--- /dev/null
+++ b/m4/pdns_check_network_libs.m4
@@ -0,0 +1,7 @@
+AC_DEFUN([PDNS_CHECK_NETWORK_LIBS],[
+ AC_SEARCH_LIBS([inet_aton], [resolv])
+ AC_SEARCH_LIBS([gethostbyname], [nsl])
+ AC_SEARCH_LIBS([socket], [socket])
+ AC_SEARCH_LIBS([gethostent], [nsl])
+ AC_CHECK_FUNCS([recvmmsg sendmmsg accept4])
+])