Mercurial > hg > octave-jordi > gnulib-hg
annotate modules/free @ 18079:4c948fd76734 default tip master
autoupdate
author | Karl Berry <karl@freefriends.org> |
---|---|
date | Mon, 24 Aug 2015 06:09:19 -0700 |
parents | fff577282e62 |
children |
rev | line source |
---|---|
4753 | 1 Description: |
2 Work around incompatibility on older systems where free (NULL) fails. | |
3 | |
9749
daf5ba9fe2d9
Remove useless "if" tests before free. Deprecate "free" module.
Jim Meyering <meyering@redhat.com>
parents:
7497
diff
changeset
|
4 Notice: |
daf5ba9fe2d9
Remove useless "if" tests before free. Deprecate "free" module.
Jim Meyering <meyering@redhat.com>
parents:
7497
diff
changeset
|
5 This module is obsolete. |
daf5ba9fe2d9
Remove useless "if" tests before free. Deprecate "free" module.
Jim Meyering <meyering@redhat.com>
parents:
7497
diff
changeset
|
6 |
4753 | 7 Files: |
8 lib/free.c | |
9 m4/free.m4 | |
10 | |
11 Depends-on: | |
12 | |
13 configure.ac: | |
14 gl_FUNC_FREE | |
14946
fff577282e62
free: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9749
diff
changeset
|
15 if test $gl_cv_func_free = no; then |
fff577282e62
free: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9749
diff
changeset
|
16 AC_LIBOBJ([free]) |
fff577282e62
free: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9749
diff
changeset
|
17 gl_PREREQ_FREE |
fff577282e62
free: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9749
diff
changeset
|
18 fi |
4753 | 19 |
20 Makefile.am: | |
21 | |
22 Include: | |
23 <stdlib.h> | |
24 | |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4753
diff
changeset
|
25 License: |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4753
diff
changeset
|
26 GPL |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4753
diff
changeset
|
27 |
4753 | 28 Maintainer: |
29 Paul Eggert |