Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/mkdtemp @ 11930:86a27b638664
Relicense mkdtemp under LGPLv2+.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Wed, 02 Sep 2009 22:43:05 +0200 |
parents | b9003c1ee8fa |
children | efab6978105e |
rev | line source |
---|---|
4237
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
1 Description: |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
2 mkdtemp() function: create a private temporary directory. |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
3 |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
4 Files: |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
5 lib/mkdtemp.c |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
6 m4/mkdtemp.m4 |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
7 |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
8 Depends-on: |
7293
b2b46d185006
mkdtemp can now use the full <inttypes.h>.
Bruno Haible <bruno@clisp.org>
parents:
6751
diff
changeset
|
9 stdint |
8192
b9003c1ee8fa
mkdtemp.h is replaced with <stdlib.h>.
Bruno Haible <bruno@clisp.org>
parents:
7588
diff
changeset
|
10 stdlib |
7588
66be60b7a727
* modules/tmpdir (Depends-on): Add sys_stat.
Eric Blake <ebb9@byu.net>
parents:
7497
diff
changeset
|
11 tempname |
4237
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
12 |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
13 configure.ac: |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
14 gt_FUNC_MKDTEMP |
8192
b9003c1ee8fa
mkdtemp.h is replaced with <stdlib.h>.
Bruno Haible <bruno@clisp.org>
parents:
7588
diff
changeset
|
15 gl_STDLIB_MODULE_INDICATOR([mkdtemp]) |
4237
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
16 |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
17 Makefile.am: |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
18 |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
19 Include: |
8192
b9003c1ee8fa
mkdtemp.h is replaced with <stdlib.h>.
Bruno Haible <bruno@clisp.org>
parents:
7588
diff
changeset
|
20 <stdlib.h> |
4237
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
21 |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4237
diff
changeset
|
22 License: |
11930
86a27b638664
Relicense mkdtemp under LGPLv2+.
Bruno Haible <bruno@clisp.org>
parents:
8192
diff
changeset
|
23 LGPLv2+ |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4237
diff
changeset
|
24 |
4237
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
25 Maintainer: |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
26 Bruno Haible |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
27 |