Mercurial > hg > octave-nkf > gnulib-hg
annotate modules/free @ 16749:2c1499f688aa
logf-ieee: Fix test whether logf works.
* m4/logf.m4 (gl_FUNC_LOGF): Fix typo in test program.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sun, 01 Apr 2012 19:31:01 +0200 |
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 |