annotate modules/strtoimax @ 37201:8660fad5c0ba

strtoumax: fix typo in previous commit. Tom G. Christensen reported: > I see this in the configure output: > ./configure: line 7680: test: =: unary operator expected > > $ sed -n 7680p configure > if test $HAVE_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1; then and indeed, we're only setting HAVE_DECL_STRTOUMAX. * modules/strtoumax (Depends-on): Fix typo. * modules/strtoimax (Depends-on): Likewise. Signed-off-by: Eric Blake <eblake@redhat.com>
author Eric Blake <eblake@redhat.com>
date Thu, 10 Oct 2013 12:24:59 -0600
parents c28fa095fda7
children 87fe74e42df8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
23801
c42c33efa265 Module description.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 Description:
23863
dd9db4271652 Add module descriptions.
Bruno Haible <bruno@clisp.org>
parents: 23801
diff changeset
2 strtoimax() function: convert string to 'intmax_t'.
23801
c42c33efa265 Module description.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3
c42c33efa265 Module description.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 Files:
c42c33efa265 Module description.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 lib/strtoimax.c
35921
9490c42daebb strtoimax: Work around AIX 5.1 bug.
Bruno Haible <bruno@clisp.org>
parents: 35247
diff changeset
6 m4/strtoimax.m4
23801
c42c33efa265 Module description.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7 m4/longlong.m4
c42c33efa265 Module description.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8
c42c33efa265 Module description.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 Depends-on:
34312
397d64ece690 inttypes-incomplete: new module
Paul Eggert <eggert@cs.ucla.edu>
parents: 28370
diff changeset
10 inttypes-incomplete
37201
8660fad5c0ba strtoumax: fix typo in previous commit.
Eric Blake <eblake@redhat.com>
parents: 36019
diff changeset
11 verify [test $HAVE_DECL_STRTOIMAX = 0 || test $REPLACE_STRTOIMAX = 1]
8660fad5c0ba strtoumax: fix typo in previous commit.
Eric Blake <eblake@redhat.com>
parents: 36019
diff changeset
12 stdint [test $HAVE_DECL_STRTOIMAX = 0 || test $REPLACE_STRTOIMAX = 1]
8660fad5c0ba strtoumax: fix typo in previous commit.
Eric Blake <eblake@redhat.com>
parents: 36019
diff changeset
13 strtoll [{ test $HAVE_DECL_STRTOIMAX = 0 || test $REPLACE_STRTOIMAX = 1; } && test $ac_cv_type_long_long_int = yes]
23801
c42c33efa265 Module description.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14
c42c33efa265 Module description.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15 configure.ac:
c42c33efa265 Module description.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
16 gl_FUNC_STRTOIMAX
35921
9490c42daebb strtoimax: Work around AIX 5.1 bug.
Bruno Haible <bruno@clisp.org>
parents: 35247
diff changeset
17 if test $HAVE_STRTOIMAX = 0 || test $REPLACE_STRTOIMAX = 1; then
34809
6c7626060f35 strtoimax: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents: 34385
diff changeset
18 AC_LIBOBJ([strtoimax])
6c7626060f35 strtoimax: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents: 34385
diff changeset
19 gl_PREREQ_STRTOIMAX
6c7626060f35 strtoimax: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents: 34385
diff changeset
20 fi
27858
99a24821ea26 Use GL_LINK_WARNING in the generated inttypes.h.
Bruno Haible <bruno@clisp.org>
parents: 27188
diff changeset
21 gl_INTTYPES_MODULE_INDICATOR([strtoimax])
23801
c42c33efa265 Module description.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22
c42c33efa265 Module description.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
23 Makefile.am:
c42c33efa265 Module description.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24
c42c33efa265 Module description.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
25 Include:
28370
2c21a20b77c8 Mention the include file.
Bruno Haible <bruno@clisp.org>
parents: 27858
diff changeset
26 <inttypes.h>
23801
c42c33efa265 Module description.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
27
24942
c85b8fccd94e Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 23888
diff changeset
28 License:
34385
1de33c11c50d strtoimax, strtoumax: Relicense under LGPL.
Bruno Haible <bruno@clisp.org>
parents: 34374
diff changeset
29 LGPL
24942
c85b8fccd94e Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 23888
diff changeset
30
23888
811702529909 Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 23863
diff changeset
31 Maintainer:
811702529909 Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 23863
diff changeset
32 Paul Eggert