From 8af43b7cc2f9c1546d5896ab61aa3e56c606e778 Mon Sep 17 00:00:00 2001 From: bircoph Date: Tue, 18 Nov 2008 09:41:31 +0000 Subject: [PATCH] On OpenBSD socklen_t is defined at sys/types.h, so latter is added to the header search path. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27953 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 4adc99a438..b70dd5a40e 100755 --- a/configure +++ b/configure @@ -2894,7 +2894,7 @@ fi echocheck "socklen_t" _socklen_t=no -for header in "sys/socket.h" "ws2tcpip.h" ; do +for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do cat > $TMPC << EOF #include <$header> int main(void) { socklen_t v = 0; return v; }