mirror of
https://https.git.savannah.gnu.org/git/gnulib.git
synced 2026-05-13 15:13:36 +00:00
* lib/poll.in.h: Include c++defs.h and warn-on-use.h. (poll): Use modern idiom. * modules/poll-h: New file. * modules/poll (Files): Remove lib/poll.in.h. (Depends-on): Add poll-h. (configure.ac): Invoke gl_POLL_MODULE_INDICATOR. (Makefile.am): Move code for generation of poll.h to modules/poll-h. * m4/poll_h.m4: New file. * m4/poll.m4 (gl_FUNC_POLL): Require gl_POLL_H. Don't check for poll.h here. Don't set POLL_H here. Instead, set HAVE_POLL and REPLACE_POLL and invoke gl_REPLACE_POLL_H. * lib/poll.c: Use common idiom. * tests/test-poll.c: Likewise. * doc/posix-headers/poll.texi: Mention the poll-h module. Suggested by Eric Blake.
41 lines
848 B
Plaintext
41 lines
848 B
Plaintext
Description:
|
|
A POSIX-like <poll.h>.
|
|
|
|
Files:
|
|
lib/poll.in.h
|
|
m4/poll_h.m4
|
|
|
|
Depends-on:
|
|
c++defs
|
|
warn-on-use
|
|
|
|
configure.ac:
|
|
gl_POLL_H
|
|
|
|
Makefile.am:
|
|
BUILT_SOURCES += $(POLL_H)
|
|
|
|
# We need the following in order to create <poll.h> when the system
|
|
# doesn't have one.
|
|
poll.h: poll.in.h $(CXXDEFS_H) $(WARN_ON_USE_H)
|
|
$(AM_V_GEN)rm -f $@-t $@ && \
|
|
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
|
|
sed -e 's|@''GNULIB_POLL''@|$(GNULIB_POLL)|g' \
|
|
-e 's|@''HAVE_POLL''@|$(HAVE_POLL)|g' \
|
|
-e 's|@''REPLACE_POLL''@|$(REPLACE_POLL)|g' \
|
|
-e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
|
|
-e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
|
|
< $(srcdir)/poll.in.h; \
|
|
} > $@-t && \
|
|
mv -f $@-t $@
|
|
MOSTLYCLEANFILES += poll.h poll.h-t
|
|
|
|
Include:
|
|
<poll.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
Paolo Bonzini, Bruno Haible
|