same-inode: make SAME_INODE tri-state, to port to mingw
[gnulib.git] / modules / ioctl
1 Description:
2 ioctl() function: issue device specific requests on files, devices, or sockets.
3
4 Files:
5 lib/ioctl.c
6 lib/w32sock.h
7
8 Depends-on:
9 sys_ioctl
10 sys_socket
11 errno
12
13 configure.ac:
14 AC_REQUIRE([gl_HEADER_SYS_SOCKET])
15 if test "$ac_cv_header_winsock2_h" = yes; then
16   dnl Even if the 'socket' module is not used here, another part of the
17   dnl application may use it and pass file descriptors that refer to
18   dnl sockets to the ioctl() function. So enable the support for sockets.
19   AC_LIBOBJ([ioctl])
20   gl_REPLACE_SYS_IOCTL_H
21 fi
22 gl_SYS_IOCTL_MODULE_INDICATOR([ioctl])
23 gl_MODULE_INDICATOR([ioctl])
24
25 Makefile.am:
26
27 Include:
28 <sys/ioctl.h>
29
30 License:
31 LGPLv2+
32
33 Maintainer:
34 Paolo Bonzini, Simon Josefsson, Bruno Haible