Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/memcpy @ 15118:50a0061f67fe
strtoimax: Move AC_LIBOBJ invocations to module description.
* m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Call AC_CHECK_FUNCS instead of
AC_REPLACE_FUNCS. Move AC_LIBOBJ and gl_PREREQ_STRTOIMAX invocations
from here...
* modules/strtoimax (configure.ac): ... to here.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sun, 22 May 2011 14:16:25 +0200 |
parents | 3fec2fcab2fa |
children |
rev | line source |
---|---|
4110 | 1 Description: |
4172 | 2 memcpy() function: copy memory area. |
4110 | 3 |
10749 | 4 Status: |
5 obsolete | |
6 | |
7 Notice: | |
8 This module is obsolete. | |
9 | |
4110 | 10 Files: |
11 lib/memcpy.c | |
12 m4/memcpy.m4 | |
13 | |
14 Depends-on: | |
15 | |
16 configure.ac: | |
17 gl_FUNC_MEMCPY | |
15038
3fec2fcab2fa
memcpy: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10749
diff
changeset
|
18 if test $ac_cv_func_memcpy = no; then |
3fec2fcab2fa
memcpy: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10749
diff
changeset
|
19 AC_LIBOBJ([memcpy]) |
3fec2fcab2fa
memcpy: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10749
diff
changeset
|
20 gl_PREREQ_MEMCPY |
3fec2fcab2fa
memcpy: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10749
diff
changeset
|
21 fi |
4110 | 22 |
23 Makefile.am: | |
24 | |
25 Include: | |
26 <string.h> | |
27 | |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
28 License: |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
29 GPL |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
30 |
4197 | 31 Maintainer: |
32 Jim Meyering | |
33 |