mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-14 14:01:48 +03:00
* m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Call AC_CHECK_FUNCS instead of AC_REPLACE_FUNCS. Move AC_LIBOBJ and gl_PREREQ_MEMPCPY invocations from here... * modules/mempcpy (configure.ac): ... to here.
30 lines
385 B
Plaintext
30 lines
385 B
Plaintext
Description:
|
|
mempcpy() function: copy memory area, return point after last written byte.
|
|
|
|
Files:
|
|
lib/mempcpy.c
|
|
m4/mempcpy.m4
|
|
|
|
Depends-on:
|
|
extensions
|
|
string
|
|
|
|
configure.ac:
|
|
gl_FUNC_MEMPCPY
|
|
if test $HAVE_MEMPCPY = 0; then
|
|
AC_LIBOBJ([mempcpy])
|
|
gl_PREREQ_MEMPCPY
|
|
fi
|
|
gl_STRING_MODULE_INDICATOR([mempcpy])
|
|
|
|
Makefile.am:
|
|
|
|
Include:
|
|
<string.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
Simon Josefsson
|