Mercurial > hg > octave-kai > gnulib-hg
annotate modules/strtod @ 17431:744044c581c4
getcwd-lgpl: port to Tru64
* lib/getcwd-lgpl.c: Include <stdlib.h>, for malloc etc.
Problem reported by Steven M. Schweda in
<http://lists.gnu.org/archive/html/bug-gzip/2013-06/msg00010.html>.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Tue, 11 Jun 2013 19:52:46 -0700 |
parents | c8ab2009d9a5 |
children |
rev | line source |
---|---|
4110 | 1 Description: |
4172 | 2 strtod() function: convert string to 'double'. |
4110 | 3 |
4 Files: | |
5 lib/strtod.c | |
6 m4/strtod.m4 | |
13462
88292c519d86
Unify tests that set gl_cv_func_ldexp_no_libm.
Bruno Haible <bruno@clisp.org>
parents:
13456
diff
changeset
|
7 m4/ldexp.m4 |
4110 | 8 |
9 Depends-on: | |
9821
18bab9955c43
Document various strtod bugs, with some fixes.
Eric Blake <ebb9@byu.net>
parents:
7497
diff
changeset
|
10 stdlib |
14616
ffa170f6f764
strtod: Remove check for strtod, unless supporting old platforms.
Bruno Haible <bruno@clisp.org>
parents:
13462
diff
changeset
|
11 strtod-obsolete |
14683
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
14616
diff
changeset
|
12 c-ctype [test $HAVE_STRTOD = 0 || test $REPLACE_STRTOD = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
14616
diff
changeset
|
13 stdbool [test $HAVE_STRTOD = 0 || test $REPLACE_STRTOD = 1] |
4110 | 14 |
15 configure.ac: | |
16 gl_FUNC_STRTOD | |
15113
c8ab2009d9a5
strtod: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
17 if test $HAVE_STRTOD = 0 || test $REPLACE_STRTOD = 1; then |
c8ab2009d9a5
strtod: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
18 AC_LIBOBJ([strtod]) |
c8ab2009d9a5
strtod: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
19 gl_PREREQ_STRTOD |
c8ab2009d9a5
strtod: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
20 fi |
9821
18bab9955c43
Document various strtod bugs, with some fixes.
Eric Blake <ebb9@byu.net>
parents:
7497
diff
changeset
|
21 gl_STDLIB_MODULE_INDICATOR([strtod]) |
4110 | 22 |
23 Makefile.am: | |
24 | |
25 Include: | |
26 <stdlib.h> | |
27 | |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4369
diff
changeset
|
28 License: |
5963
6fb8c48c4dcd
* gnulib-tool (func_import): Add support for 'public domain' license.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5251
diff
changeset
|
29 LGPL |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4369
diff
changeset
|
30 |
4197 | 31 Maintainer: |
32 all |