copy-acl: ignore ENOTSUP on HP-UX
[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_H
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 's|@''HAVE_FORKPTY''@|$(HAVE_FORKPTY)|g' \
33               -e 's|@''HAVE_OPENPTY''@|$(HAVE_OPENPTY)|g' \
34               -e 's|@''REPLACE_FORKPTY''@|$(REPLACE_FORKPTY)|g' \
35               -e 's|@''REPLACE_OPENPTY''@|$(REPLACE_OPENPTY)|g' \
36               -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
37               -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
38               < $(srcdir)/pty.in.h; \
39         } > $@-t && \
40         mv $@-t $@
41 MOSTLYCLEANFILES += pty.h pty.h-t
42
43 Include:
44 <pty.h>
45
46 Link:
47 $(PTY_LIB)
48
49 License:
50 LGPLv2+
51
52 Maintainer:
53 Simon Josefsson