Blame m4/sys_socket_h.m4

Packit 5e354d
# sys_socket_h.m4 serial 2
Packit 5e354d
dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
Packit 5e354d
dnl This file is free software; the Free Software Foundation
Packit 5e354d
dnl gives unlimited permission to copy and/or distribute it,
Packit 5e354d
dnl with or without modifications, as long as this notice is preserved.
Packit 5e354d
Packit 5e354d
dnl From Simon Josefsson.
Packit 5e354d
Packit 5e354d
AC_DEFUN([gl_HEADER_SYS_SOCKET],
Packit 5e354d
[
Packit 5e354d
  AC_CHECK_HEADERS_ONCE([sys/socket.h])
Packit 5e354d
  if test $ac_cv_header_sys_socket_h = yes; then
Packit 5e354d
    SYS_SOCKET_H=''
Packit 5e354d
  else
Packit 5e354d
    dnl We cannot use AC_CHECK_HEADERS_ONCE here, because that would make
Packit 5e354d
    dnl the check for those headers unconditional; yet cygwin reports
Packit 5e354d
    dnl that the headers are present but cannot be compiled (since on
Packit 5e354d
    dnl cygwin, all socket information should come from sys/socket.h).
Packit 5e354d
    AC_CHECK_HEADERS([winsock2.h ws2tcpip.h])
Packit 5e354d
    SYS_SOCKET_H='sys/socket.h'
Packit 5e354d
  fi
Packit 5e354d
  AC_SUBST(SYS_SOCKET_H)
Packit 5e354d
])