annotate modules/termios @ 14700:6758fa38915e topic/libposix

manual merge
author Bruce Korb <bkorb@gnu.org>
date Fri, 06 May 2011 08:15:59 -0700
parents 8636d98120a9 049942251f65
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13687
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 Description:
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2 A <termios.h> that works around platform issues.
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 Files:
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 lib/termios.in.h
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 m4/termios_h.m4
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8 Depends-on:
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 include_next
13689
af3a7152efba New module 'tcgetsid'.
Bruno Haible <bruno@clisp.org>
parents: 13687
diff changeset
10 c++defs
af3a7152efba New module 'tcgetsid'.
Bruno Haible <bruno@clisp.org>
parents: 13687
diff changeset
11 warn-on-use
13687
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13 configure.ac:
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 gl_TERMIOS_H
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
16 Makefile.am:
14108
873a3371d1d2 spell the pkginclude directory correctly.
Bruce Korb <bkorb@gnu.org>
parents: 14107
diff changeset
17 nodist_pkginclude_HEADERS += termios.h
14102
f49fe7e6d028 add _HEADERS primaries to Makefile.am snippets for installable headers
Gary V. Vaughan <gary@gnu.org>
parents: 13761
diff changeset
18
13687
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19 BUILT_SOURCES += termios.h
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21 # We need the following in order to create <termios.h> when the system
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22 # version does not have all declarations.
14527
049942251f65 Ensure to rebuild generated .h files when config.status has changed.
Bruno Haible <bruno@clisp.org>
parents: 14273
diff changeset
23 termios.h: termios.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(WARN_ON_USE_H)
13687
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24 $(AM_V_GEN)rm -f $@-t $@ && \
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
25 { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
26 sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
27 -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
13761
a19ace3ba849 Avoid line length limitation from HP NonStop system header files.
Bruno Haible <bruno@clisp.org>
parents: 13724
diff changeset
28 -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
13687
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
29 -e 's|@''NEXT_TERMIOS_H''@|$(NEXT_TERMIOS_H)|g' \
13689
af3a7152efba New module 'tcgetsid'.
Bruno Haible <bruno@clisp.org>
parents: 13687
diff changeset
30 -e 's|@''GNULIB_TCGETSID''@|$(GNULIB_TCGETSID)|g' \
13955
7f79090fda41 tcgetsid: Add missing declaration on OSF/1 5.1.
Bruno Haible <bruno@clisp.org>
parents: 13801
diff changeset
31 -e 's|@''HAVE_DECL_TCGETSID''@|$(HAVE_DECL_TCGETSID)|g' \
13801
634db78ff254 termios: fix compilation on mingw
Eric Blake <eblake@redhat.com>
parents: 13761
diff changeset
32 -e 's|@''HAVE_TERMIOS_H''@|$(HAVE_TERMIOS_H)|g' \
13689
af3a7152efba New module 'tcgetsid'.
Bruno Haible <bruno@clisp.org>
parents: 13687
diff changeset
33 -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
af3a7152efba New module 'tcgetsid'.
Bruno Haible <bruno@clisp.org>
parents: 13687
diff changeset
34 -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
13687
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
35 < $(srcdir)/termios.in.h; \
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
36 } > $@-t && \
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
37 mv $@-t $@
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
38 MOSTLYCLEANFILES += termios.h termios.h-t
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
39
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
40 Include:
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
41 <termios.h>
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
42
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
43 License:
13724
3325bb92b660 termios: Relax license.
Bruno Haible <bruno@clisp.org>
parents: 13689
diff changeset
44 LGPLv2+
13687
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
45
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
46 Maintainer:
b3e909bb673a New module 'termios'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
47 Bruno Haible