From 308abfefb900b510be968784ad60f7900e44ee14 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 26 Jul 2006 07:01:35 +0000 Subject: r17253: add configure checks for writev/readv to see how portable they're metze (This used to be commit b5c06d5b4ca4da6d1b582a33830471443a62d842) --- source4/lib/socket/config.m4 | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4') diff --git a/source4/lib/socket/config.m4 b/source4/lib/socket/config.m4 index cb593ea184..7ea7e2b809 100644 --- a/source4/lib/socket/config.m4 +++ b/source4/lib/socket/config.m4 @@ -1,5 +1,8 @@ AC_CHECK_HEADERS(sys/socket.h sys/sockio.h sys/un.h) +AC_CHECK_FUNCS(writev) +AC_CHECK_FUNCS(readv) + AC_CACHE_CHECK([for sin_len in sock],samba_cv_HAVE_SOCK_SIN_LEN,[ AC_TRY_COMPILE([#include #include -- cgit