Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/pipe-filter-ii @ 15043:0527dd6759fc
memset: Move AC_LIBOBJ invocations to module description.
* m4/memset.m4 (gl_FUNC_MEMSET): Call AC_CHECK_FUNCS instead of
AC_REPLACE_FUNCS. Move AC_LIBOBJ and gl_PREREQ_MEMSET invocations from
here...
* modules/memset (configure.ac): ... to here.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sat, 21 May 2011 15:28:17 +0200 |
parents | d214c42cc3fe |
children | 99fa3b05f1c8 |
rev | line source |
---|---|
11758 | 1 Description: |
2 Filtering of data through a subprocess. | |
3 | |
4 Files: | |
5 lib/pipe-filter.h | |
6 lib/pipe-filter-ii.c | |
7 lib/pipe-filter-aux.h | |
8 | |
9 Depends-on: | |
13924
5be0c314f2f8
Rename module 'pipe' to 'spawn-pipe'.
Bruno Haible <bruno@clisp.org>
parents:
12166
diff
changeset
|
10 spawn-pipe |
11758 | 11 wait-process |
12 error | |
14533
7c084dd61825
pipe-filter: drop O_NONBLOCK workarounds
Eric Blake <eblake@redhat.com>
parents:
13924
diff
changeset
|
13 fcntl-h |
11758 | 14 gettext-h |
15 stdbool | |
16 stdint | |
14675
d214c42cc3fe
exit: drop remaining clients
Eric Blake <eblake@redhat.com>
parents:
14533
diff
changeset
|
17 stdlib |
11758 | 18 sys_select |
19 unistd | |
20 | |
21 configure.ac: | |
22 AC_REQUIRE([AC_C_INLINE]) | |
12166
d943ffe46edc
use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS in modules/*
Jim Meyering <meyering@redhat.com>
parents:
11758
diff
changeset
|
23 AC_CHECK_FUNCS_ONCE([select]) |
11758 | 24 |
25 Makefile.am: | |
26 lib_SOURCES += pipe-filter-ii.c | |
27 | |
28 Include: | |
29 "pipe-filter.h" | |
30 | |
31 License: | |
32 GPL | |
33 | |
34 Maintainer: | |
35 Bruno Haible |