libposix: Add _HEADERS primaries to posix modules.
[gnulib.git] / modules / termios
1 Description:
2 A <termios.h> that works around platform issues.
3
4 Files:
5 lib/termios.in.h
6 m4/termios_h.m4
7
8 Depends-on:
9 include_next
10 c++defs
11 warn-on-use
12
13 configure.ac:
14 gl_TERMIOS_H
15
16 Makefile.am:
17 nodist_pkginclude_HEADERS += termios.h
18
19 BUILT_SOURCES += termios.h
20
21 # We need the following in order to create <termios.h> when the system
22 # version does not have all declarations.
23 termios.h: termios.in.h $(CXXDEFS_H) $(WARN_ON_USE_H)
24         $(AM_V_GEN)rm -f $@-t $@ && \
25         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
26           sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
27               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
28               -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
29               -e 's|@''NEXT_TERMIOS_H''@|$(NEXT_TERMIOS_H)|g' \
30               -e 's|@''GNULIB_TCGETSID''@|$(GNULIB_TCGETSID)|g' \
31               -e 's|@''HAVE_DECL_TCGETSID''@|$(HAVE_DECL_TCGETSID)|g' \
32               -e 's|@''HAVE_TERMIOS_H''@|$(HAVE_TERMIOS_H)|g' \
33               -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
34               -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
35             < $(srcdir)/termios.in.h; \
36         } > $@-t && \
37         mv $@-t $@
38 MOSTLYCLEANFILES += termios.h termios.h-t
39
40 Include:
41 <termios.h>
42
43 License:
44 LGPLv2+
45
46 Maintainer:
47 Bruno Haible