Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/atoll @ 17448:b3516a31a386
regex: port to --with-included-regex --enable-gcc-warnings non-threaded
* lib/regex_internal.h (lock_fini, lock_lock): Rework to avoid
gcc warnings in the non-threaded case. Reported by Charlie Brown in
<http://lists.gnu.org/archive/html/bug-gnulib/2013-07/msg00015.html>.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Tue, 09 Jul 2013 11:35:01 -0700 |
parents | 359460c86723 |
children |
rev | line source |
---|---|
10673 | 1 Description: |
2 atoll() function: convert decimal string string to 'long long'. | |
3 | |
4 Files: | |
5 lib/atoll.c | |
6 m4/atoll.m4 | |
7 m4/longlong.m4 | |
8 | |
9 Depends-on: | |
14683
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
10673
diff
changeset
|
10 strtoll [test $HAVE_ATOLL = 0] |
10673 | 11 |
12 configure.ac: | |
13 gl_FUNC_ATOLL | |
14925
359460c86723
atoll: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
14 if test $HAVE_ATOLL = 0; then |
359460c86723
atoll: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
15 AC_LIBOBJ([atoll]) |
359460c86723
atoll: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
16 gl_PREREQ_ATOLL |
359460c86723
atoll: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
17 fi |
10673 | 18 gl_STDLIB_MODULE_INDICATOR([atoll]) |
19 | |
20 Makefile.am: | |
21 | |
22 Include: | |
23 <stdlib.h> | |
24 | |
25 License: | |
26 LGPL | |
27 | |
28 Maintainer: | |
29 all, glibc | |
30 |