mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-18 23:42:00 +03:00
47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
Description:
|
|
A <sys/ioctl.h> for systems with missing declarations.
|
|
|
|
Files:
|
|
lib/sys_ioctl.in.h
|
|
m4/sys_ioctl_h.m4
|
|
|
|
Depends-on:
|
|
include_next
|
|
link-warning
|
|
unistd
|
|
|
|
configure.ac:
|
|
gl_SYS_IOCTL_H
|
|
AC_PROG_MKDIR_P
|
|
|
|
Makefile.am:
|
|
BUILT_SOURCES += $(SYS_IOCTL_H)
|
|
|
|
# We need the following in order to create <sys/ioctl.h> when the system
|
|
# does not have a complete one.
|
|
sys/ioctl.h: sys_ioctl.in.h
|
|
@MKDIR_P@ sys
|
|
rm -f $@-t $@
|
|
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
|
|
sed -e 's|@''HAVE_SYS_IOCTL_H''@|$(HAVE_SYS_IOCTL_H)|g' \
|
|
-e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
|
|
-e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
|
|
-e 's|@''NEXT_SYS_IOCTL_H''@|$(NEXT_SYS_IOCTL_H)|g' \
|
|
-e 's|@''GNULIB_IOCTL''@|$(GNULIB_IOCTL)|g' \
|
|
-e 's|@''SYS_IOCTL_H_HAVE_WINSOCK2_H''@|$(SYS_IOCTL_H_HAVE_WINSOCK2_H)|g' \
|
|
-e '/definition of GL_LINK_WARNING/r $(LINK_WARNING_H)' \
|
|
< $(srcdir)/sys_ioctl.in.h; \
|
|
} > $@-t
|
|
mv $@-t $@
|
|
MOSTLYCLEANFILES += sys/ioctl.h sys/ioctl.h-t
|
|
MOSTLYCLEANDIRS += sys
|
|
|
|
Include:
|
|
#include <sys/ioctl.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
all
|