verify: new macro 'assume'
[gnulib.git] / modules / argz
1 Description:
2 Argv style string arrays in a single null delimited char*.
3
4 Files:
5 lib/argz.in.h
6 lib/argz.c
7 m4/argz.m4
8
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"]
16
17 configure.ac:
18 gl_FUNC_ARGZ
19 if test -n "$ARGZ_H"; then
20   AC_LIBOBJ([argz])
21 fi
22
23 Makefile.am:
24 BUILT_SOURCES += $(ARGZ_H)
25
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
40
41 Include:
42 <argz.h>
43
44 License:
45 LGPLv2+
46
47 Maintainer:
48 all