Mercurial > hg > octave-kai > gnulib-hg
annotate modules/vasnprintf-posix @ 16033:917610de47d7
New modules 'at-internal', 'openat-h', split off from module 'openat'.
* m4/openat.m4 (gl_FUNC_OPENAT): Don't set GNULIB_OPENAT. Don't
invoke gl_PREREQ_OPENAT and gl_MODULE_INDICATOR.
* modules/openat (Description): Add reference to POSIX function.
(Files): Remove lib/openat.h, lib/openat-proc.c.
(Depends-on): Add at-internal, openat-h. Remove fdopendir, gettext-h,
intprops, unistd.
(configure.ac): Remove AC_LIBOBJ of openat-proc. Invoke
gl_PREREQ_OPENAT, gl_MODULE_INDICATOR here. Invoke
gl_FCNTL_MODULE_INDICATOR.
(Include): Remove unistd.h, openat.h.
* modules/areadlinkat (Files): Add lib/at-func.c.
(Depends-on): Add at-internal, dosname, errno, extensions, fchdir,
openat-die, openat-h, save-cwd.
* modules/areadlinkat-with-size (Files): Add lib/at-func.c.
(Depends-on): Add at-internal, dosname, errno, extensions, fchdir,
openat-die, openat-h, save-cwd, unistd.
* modules/faccessat (Files): Add lib/at-func.c, lib/openat-priv.h.
(Depends-on): Add at-internal, dosname, errno, fchdir, openat-die,
openat-h, save-cwd. Remove fcntl-h, openat.
* modules/fchmodat (Files): Remove lib/openat.h.
(Depends-on): Add at-internal, openat-h. Remove dirent, fcntl-h,
openat, stdbool, unistd.
* modules/fchownat (Files): Remove lib/openat.h.
(Depends-on): Add at-internal, openat-h. Remove dirent, fcntl-h,
openat, stdbool, sys_stat.
* modules/fdopendir (Files): Remove lib/openat-priv.h,
lib/openat-proc.c.
(Depends-on): Add at-internal.
(condigure.ac): Remove AC_LIBOBJ of openat-proc.
* modules/fstatat (Files): Remove lib/openat.h.
(Depends-on): Add at-internal, openat-h. Remove dirent, openat,
stdbool, unistd.
* modules/fts (Depends-on): Add openat-h.
* modules/linkat (Depends-on): Add at-internal, openat-h. Remove
openat.
* modules/mkdirat (Files): Remove lib/openat.h.
(Depends-on): Add at-internal, openat-h. Remove dirent, fcntl-h,
openat, stdbool, sys_stat.
* modules/mkfifoat (Files): Add lib/at-func.c.
(Depends-on): Add at-internal, dosname, errno, fchdir, openat-die,
openat-h, save-cwd. Remove fcntl-h, openat.
* modules/openat-die (Depends-on): Add openat-h. Remove openat.
* modules/readlinkat (Files): Add lib/at-func.c.
(Depends-on): Add at-internal, dosname, errno, fchdir, openat-die,
openat-h, save-cwd. Remove fcntl-h, openat.
* modules/renameat (Depends-on): Add at-internal, openat-h. Remove
openat.
* modules/selinux-at (Files): Add lib/at-func.c.
(Depends-on): Add at-internal, dosname, errno, extensions, fchdir,
fcntl-h, openat-die, openat-h, save-cwd, unistd. Remove openat.
* modules/symlinkat (Files): Add lib/at-func.c.
(Depends-on): Add at-internal, dosname, errno, fchdir, openat-die,
openat-h, save-cwd. Remove fcntl-h, openat.
* modules/unlinkat (Files): Remove lib/openat.h.
(Depends-on): Add at-internal, openat-h. Remove dirent, openat,
stdbool.
* modules/utimensat (Files): Add lib/at-func.c.
(Depends-on): Add at-internal, dosname, errno, fchdir, fcntl-h,
openat-die, openat-h, save-cwd.
* modules/fchownat-tests (Depends-on): Add openat-h. Remove openat.
* modules/fdutimensat-tests (Depends-on): Add openat.
* modules/fstatat-tests (Depends-on): Add openat-h.
* modules/readlinkat-tests (Depends-on): Add openat.
* modules/symlinkat-tests (Depends-on): Add openat.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sat, 05 Nov 2011 11:35:57 +0100 |
parents | 53e09ee0d19a |
children |
rev | line source |
---|---|
8335 | 1 Description: |
2 POSIX compatible vsprintf with automatic memory allocation and bounded output | |
3 size. | |
4 | |
13187
be869a242af0
Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents:
10973
diff
changeset
|
5 Comment: |
be869a242af0
Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents:
10973
diff
changeset
|
6 This module should not be used as a dependency from a test module, |
be869a242af0
Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents:
10973
diff
changeset
|
7 otherwise when this module occurs as a tests-related module, it will |
be869a242af0
Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents:
10973
diff
changeset
|
8 have side effects on the compilation of the 'vasnprintf' module, if |
be869a242af0
Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents:
10973
diff
changeset
|
9 that module occurs among the main modules in lib/. |
be869a242af0
Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents:
10973
diff
changeset
|
10 |
8335 | 11 Files: |
12 m4/vasnprintf-posix.m4 | |
13 m4/printf.m4 | |
15905
53e09ee0d19a
*printf: Fix for platforms where 'long double' == 'double'.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
14 m4/math_h.m4 |
8335 | 15 |
16 Depends-on: | |
17 vasnprintf | |
9646
a113e473cc98
Rename isnan, applicable to 'double' only, to isnand.
Bruno Haible <bruno@clisp.org>
parents:
9449
diff
changeset
|
18 isnand-nolibm |
8335 | 19 isnanl-nolibm |
9442
ad275322f8f1
Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
Bruno Haible <bruno@clisp.org>
parents:
8919
diff
changeset
|
20 frexp-nolibm |
8832
1466c973f476
Add support for 'long double' number output.
Bruno Haible <bruno@clisp.org>
parents:
8655
diff
changeset
|
21 frexpl-nolibm |
8335 | 22 printf-frexp |
23 printf-frexpl | |
8655
9a272158fe43
Faster determination of the sign of a number.
Bruno Haible <bruno@clisp.org>
parents:
8531
diff
changeset
|
24 signbit |
8531 | 25 fpucw |
9449
a859a771e88a
Use GL_NOCRASH, to avoid a crashreporter dialog box from a configure check.
Bruno Haible <bruno@clisp.org>
parents:
9442
diff
changeset
|
26 nocrash |
8919
42e2847583f9
Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
Bruno Haible <bruno@clisp.org>
parents:
8832
diff
changeset
|
27 printf-safe |
10973
e1a3422c4e90
Add support for universal builds to vasnprintf.
Bruno Haible <bruno@clisp.org>
parents:
9646
diff
changeset
|
28 multiarch |
8335 | 29 |
30 configure.ac: | |
31 gl_FUNC_VASNPRINTF_POSIX | |
32 | |
33 Makefile.am: | |
34 | |
35 Include: | |
36 "vasnprintf.h" | |
37 | |
38 License: | |
39 LGPL | |
40 | |
41 Maintainer: | |
42 Bruno Haible | |
43 |