summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorbircoph <bircoph@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-11-18 09:41:31 +0000
committerbircoph <bircoph@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-11-18 09:41:31 +0000
commit8af43b7cc2f9c1546d5896ab61aa3e56c606e778 (patch)
tree2cd4e92de43a710e3eeec34576b8f0a8ed742426 /configure
parentde51092d28e075e74190a2073ccf1ddbdb56ba27 (diff)
downloadmpv-8af43b7cc2f9c1546d5896ab61aa3e56c606e778.tar.bz2
mpv-8af43b7cc2f9c1546d5896ab61aa3e56c606e778.tar.xz
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
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; }