posix_spawn_file_actions_* tests: Fix module dependencies.
[gnulib.git] / modules / argz
bloba8eb55e9444931034e53858f785549b2cf1c84b1
1 Description:
2 Argv style string arrays in a single null delimited char*.
4 Files:
5 lib/argz.in.h
6 lib/argz.c
7 m4/argz.m4
9 Depends-on:
10 memmove         [test -n "$ARGZ_H"]
11 mempcpy         [test -n "$ARGZ_H"]
12 stpcpy          [test -n "$ARGZ_H"]
13 strndup         [test -n "$ARGZ_H"]
14 strnlen         [test -n "$ARGZ_H"]
15 strstr          [test -n "$ARGZ_H"]
17 configure.ac:
18 gl_FUNC_ARGZ
19 if test -n "$ARGZ_H"; then
20   AC_LIBOBJ([argz])
23 Makefile.am:
24 BUILT_SOURCES += $(ARGZ_H)
26 # We need the following in order to create <argz.h> when the system
27 # doesn't have one that works with the given compiler.
28 if GL_GENERATE_ARGZ_H
29 argz.h: argz.in.h $(top_builddir)/config.status
30         $(AM_V_GEN)rm -f $@-t $@ && \
31         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
32           cat $(srcdir)/argz.in.h; \
33         } > $@-t && \
34         mv -f $@-t $@
35 else
36 argz.h: $(top_builddir)/config.status
37         rm -f $@
38 endif
39 MOSTLYCLEANFILES += argz.h argz.h-t
41 Include:
42 <argz.h>
44 License:
45 LGPLv2+
47 Maintainer:
48 all