annotate modules/ioctl @ 17363:5a51fb7777a9

sys_select, sys_time: port 2013-01-30 Solaris 2.6 fix to Cygwin Problem reported by Marco Atzeri in <http://lists.gnu.org/archive/html/bug-gnulib/2013-03/msg00000.html>. * lib/sys_select.in.h [HAVE_SYS_SELECT_H && _CYGWIN_SYS_TIME_H]: Simply delegate to the system <sys/select.h> in this case too. Also, pay attention to _GL_SYS_SELECT_H_REDIRECT_FROM_SYS_TIME_H only if OSF/1, since otherwise Cygwin breaks, and it doesn't seem to be needed on Solaris either. * lib/sys_time.in.h [_CYGWIN_SYS_TIME_H]: Simply delgate to the system <sys/time.h> in this case.
author Paul Eggert <eggert@cs.ucla.edu>
date Tue, 19 Mar 2013 09:08:47 -0700
parents b86e9061a6d0
children 1f14c6dd175d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10616
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 Description:
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2 ioctl() function: issue device specific requests on files, devices, or sockets.
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 Files:
10690
01f3623813da Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents: 10616
diff changeset
5 lib/ioctl.c
01f3623813da Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents: 10616
diff changeset
6 lib/w32sock.h
13245
46c3f440d469 ioctl: Move autoconf macro to a .m4 file.
Bruno Haible <bruno@clisp.org>
parents: 13088
diff changeset
7 m4/ioctl.m4
10616
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 Depends-on:
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 sys_ioctl
14987
205da32df725 ioctl: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents: 14683
diff changeset
11 sys_socket [test $HAVE_IOCTL = 0 || test $REPLACE_IOCTL = 1]
205da32df725 ioctl: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents: 14683
diff changeset
12 errno [test $HAVE_IOCTL = 0 || test $REPLACE_IOCTL = 1]
205da32df725 ioctl: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents: 14683
diff changeset
13 fd-hook [test $HAVE_IOCTL = 0 || test $REPLACE_IOCTL = 1]
15752
b86e9061a6d0 New module 'msvc-nothrow'. Makes _get_osfhandle safe on MSVC 9.
Bruno Haible <bruno@clisp.org>
parents: 14987
diff changeset
14 msvc-nothrow [test $HAVE_IOCTL = 0 || test $REPLACE_IOCTL = 1]
10616
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
16 configure.ac:
13245
46c3f440d469 ioctl: Move autoconf macro to a .m4 file.
Bruno Haible <bruno@clisp.org>
parents: 13088
diff changeset
17 gl_FUNC_IOCTL
14987
205da32df725 ioctl: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents: 14683
diff changeset
18 if test $HAVE_IOCTL = 0 || test $REPLACE_IOCTL = 1; then
205da32df725 ioctl: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents: 14683
diff changeset
19 AC_LIBOBJ([ioctl])
205da32df725 ioctl: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents: 14683
diff changeset
20 fi
10616
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21 gl_SYS_IOCTL_MODULE_INDICATOR([ioctl])
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
23 Makefile.am:
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
25 Include:
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
26 <sys/ioctl.h>
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
27
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
28 License:
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
29 LGPLv2+
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
30
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
31 Maintainer:
df8ab5d7dc3e New module 'ioctl'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
32 Paolo Bonzini, Simon Josefsson, Bruno Haible