Add sys_socket module.
[pspp] / m4 / sys_socket_h.m4
1 # sys_socket_h.m4 serial 1
2 dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
6
7 dnl From Simon Josefsson.
8
9 AC_DEFUN([gl_HEADER_SYS_SOCKET],
10 [
11   AC_CHECK_HEADERS_ONCE([sys/socket.h])
12   if test $ac_cv_header_sys_socket_h = yes; then
13     SYS_SOCKET_H=''
14   else
15     AC_CHECK_HEADERS_ONCE([winsock2.h ws2tcpip.h])
16     SYS_SOCKET_H='sys/socket.h'
17   fi
18   AC_SUBST(SYS_SOCKET_H)
19 ])