summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2020-02-17 22:48:50 +1100
committerDarren Tucker <dtucker@dtucker.net>2020-02-17 22:48:50 +1100
commitd4860ec4efd25ba194337082736797fce0bda016 (patch)
tree2f326051eb4c17b4ad0fd04755e4f8a556038693 /configure.ac
parent8aa3455b16fddea4c0144a7c4a1edb10ec67dcc8 (diff)
Check if getpeereid is actually declared.
Check in sys/socket.h (AIX) and unistd.h (FreeBSD, DragonFLy and OS X). Prevents undeclared function warning on at least some versions of AIX.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index b689db4b5..7094d470d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1986,10 +1986,11 @@ AC_CHECK_DECL([tcsendbreak],
1986 1986
1987AC_CHECK_DECLS([h_errno], , ,[#include <netdb.h>]) 1987AC_CHECK_DECLS([h_errno], , ,[#include <netdb.h>])
1988 1988
1989AC_CHECK_DECLS([SHUT_RD], , , 1989AC_CHECK_DECLS([SHUT_RD, getpeereid], , ,
1990 [ 1990 [
1991#include <sys/types.h> 1991#include <sys/types.h>
1992#include <sys/socket.h> 1992#include <sys/socket.h>
1993#include <unistd.h>
1993 ]) 1994 ])
1994 1995
1995AC_CHECK_DECLS([O_NONBLOCK], , , 1996AC_CHECK_DECLS([O_NONBLOCK], , ,