Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/alloca-opt @ 14276:6b7046963230
di-set, ino-map: new modules, from coreutils
* lib/di-set.c: New file.
* lib/di-set.h: Likewise.
* lib/ino-map.c: Likewise.
* lib/ino-map.h: Likewise.
* modules/di-set: Likewise.
* modules/di-set-tests: Likewise.
* modules/ino-map: Likewise.
* modules/ino-map-tests: Likewise.
* tests/test-di-set.c: Likewise.
* tests/test-ino-map.c: Likewise.
author | Jim Meyering <meyering@redhat.com> |
---|---|
date | Mon, 07 Feb 2011 16:01:24 +0100 |
parents | 8f6d3e05c7e2 |
children | 8636d98120a9 662ae53d8d37 |
rev | line source |
---|---|
5273 | 1 Description: |
2 Memory allocation on the stack, as an optional optimization. | |
3 It allows using the alloca() macro if and only if the autoconf tests define | |
4 HAVE_ALLOCA. | |
5 | |
6 Files: | |
9243
a7e785cafb33
Rename alloca_.h to alloca.in.h.
Bruno Haible <bruno@clisp.org>
parents:
9091
diff
changeset
|
7 lib/alloca.in.h |
5273 | 8 m4/alloca.m4 |
9 | |
10 Depends-on: | |
11 | |
12 configure.ac: | |
13 gl_FUNC_ALLOCA | |
14 | |
15 Makefile.am: | |
16 BUILT_SOURCES += $(ALLOCA_H) | |
17 | |
6001
322a0918d54a
* modules/alloca-opt (Makefile.am): Remove explicit dependency on
Paul Eggert <eggert@cs.ucla.edu>
parents:
5273
diff
changeset
|
18 # We need the following in order to create <alloca.h> when the system |
5273 | 19 # doesn't have one that works with the given compiler. |
9243
a7e785cafb33
Rename alloca_.h to alloca.in.h.
Bruno Haible <bruno@clisp.org>
parents:
9091
diff
changeset
|
20 alloca.h: alloca.in.h |
11868
67c2b22aff08
annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
Jim Meyering <meyering@redhat.com>
parents:
11858
diff
changeset
|
21 $(AM_V_GEN)rm -f $@-t $@ && \ |
7421
8bace4b08db5
Mark generated files as "DO NOT EDIT".
Bruno Haible <bruno@clisp.org>
parents:
7274
diff
changeset
|
22 { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ |
9243
a7e785cafb33
Rename alloca_.h to alloca.in.h.
Bruno Haible <bruno@clisp.org>
parents:
9091
diff
changeset
|
23 cat $(srcdir)/alloca.in.h; \ |
11868
67c2b22aff08
annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
Jim Meyering <meyering@redhat.com>
parents:
11858
diff
changeset
|
24 } > $@-t && \ |
7274
9ff9e0f3d681
Don't make generated files read-only. That would bother too many
Jim Meyering <jim@meyering.net>
parents:
7268
diff
changeset
|
25 mv -f $@-t $@ |
5273 | 26 MOSTLYCLEANFILES += alloca.h alloca.h-t |
27 | |
28 Include: | |
12008
18ea6ab4e81d
maint: make Include sections of modules consistent
Eric Blake <ebb9@byu.net>
parents:
11868
diff
changeset
|
29 <alloca.h> |
5273 | 30 |
31 License: | |
9091
d19ce23d01b0
Use the synonymous term "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents:
7497
diff
changeset
|
32 LGPLv2+ |
5273 | 33 |
34 Maintainer: | |
35 bug-gnulib@gnu.org |