forkpty, openpty: split functions into new modules
[gnulib.git] / modules / pty
1 Description:
2 A <pty.h> for systems that lacks it.
3
4 Files:
5 lib/pty.in.h
6 m4/pty_h.m4
7
8 Depends-on:
9 c++defs
10 include_next
11 warn-on-use
12
13 configure.ac:
14 gl_PTY
15
16 Makefile.am:
17 BUILT_SOURCES += pty.h
18
19 # We need the following in order to create <pty.h> when the system
20 # doesn't have one that works with the given compiler.
21 pty.h: pty.in.h $(CXXDEFS_H) $(WARN_ON_USE_H)
22         $(AM_V_GEN)rm -f $@-t $@ && \
23         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
24           sed -e 's|@''HAVE_PTY_H''@|$(HAVE_PTY_H)|g' \
25               -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
26               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
27               -e 's|@''NEXT_PTY_H''@|$(NEXT_PTY_H)|g' \
28               -e 's|@''GNULIB_FORKPTY''@|$(GNULIB_FORKPTY)|g' \
29               -e 's|@''GNULIB_OPENPTY''@|$(GNULIB_OPENPTY)|g' \
30               -e 's|@''HAVE_UTIL_H''@|$(HAVE_UTIL_H)|g' \
31               -e 's|@''HAVE_LIBUTIL_H''@|$(HAVE_LIBUTIL_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)/pty.in.h; \
35         } > $@-t && \
36         mv $@-t $@
37 MOSTLYCLEANFILES += pty.h pty.h-t
38
39 Include:
40 <pty.h>
41
42 Link:
43 $(PTY_LIB)
44
45 License:
46 LGPL
47
48 Maintainer:
49 Simon Josefsson