verify: new macro 'assume'
[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 snippet/c++defs
11 snippet/warn-on-use
12
13 configure.ac:
14 gl_TERMIOS_H
15
16 Makefile.am:
17 BUILT_SOURCES += termios.h
18
19 # We need the following in order to create <termios.h> when the system
20 # version does not have all declarations.
21 termios.h: termios.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(WARN_ON_USE_H)
22         $(AM_V_GEN)rm -f $@-t $@ && \
23         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
24           sed -e 's|@''GUARD_PREFIX''@|${gl_include_guard_prefix}|g' \
25               -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
26               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
27               -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
28               -e 's|@''NEXT_TERMIOS_H''@|$(NEXT_TERMIOS_H)|g' \
29               -e 's/@''GNULIB_TCGETSID''@/$(GNULIB_TCGETSID)/g' \
30               -e 's|@''HAVE_DECL_TCGETSID''@|$(HAVE_DECL_TCGETSID)|g' \
31               -e 's|@''HAVE_TERMIOS_H''@|$(HAVE_TERMIOS_H)|g' \
32               -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
33               -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
34             < $(srcdir)/termios.in.h; \
35         } > $@-t && \
36         mv $@-t $@
37 MOSTLYCLEANFILES += termios.h termios.h-t
38
39 Include:
40 <termios.h>
41
42 License:
43 LGPLv2+
44
45 Maintainer:
46 Bruno Haible