Mercurial > mplayer.hg
changeset 27919:305a6ca17117
On OpenBSD socklen_t is defined at sys/types.h, so latter is added
to the header search path.
author | bircoph |
---|---|
date | Tue, 18 Nov 2008 09:41:31 +0000 |
parents | 77cedfa1fb7c |
children | 81571689eba3 |
files | configure |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Tue Nov 18 03:41:54 2008 +0000 +++ b/configure Tue Nov 18 09:41:31 2008 +0000 @@ -2894,7 +2894,7 @@ 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; }