mirror of
https://https.git.savannah.gnu.org/git/gnulib.git
synced 2026-09-07 06:03:59 +00:00
* m4/realloc.m4 (gl_FUNC_REALLOC_GNU): Set REPLACE_REALLOC_FOR_REALLOC_GNU instead of REPLACE_REALLOC. (gl_FUNC_REALLOC_POSIX): Set REPLACE_REALLOC_FOR_REALLOC_POSIX instead of REPLACE_REALLOC. * m4/stdlib_h.m4 (gl_STDLIB_H_REQUIRE_DEFAULTS): Initialize the realloc-gnu module indicator. (gl_STDLIB_H_DEFAULTS): Initialize REPLACE_REALLOC_FOR_REALLOC_GNU, REPLACE_REALLOC_FOR_REALLOC_POSIX, not REPLACE_REALLOC. * modules/stdlib (Makefile.am): Substitute GNULIB_REALLOC_GNU, REPLACE_REALLOC_FOR_REALLOC_GNU, REPLACE_REALLOC_FOR_REALLOC_POSIX, not REPLACE_REALLOC. * modules/realloc-posix (Depends-on, configure.ac): Test REPLACE_REALLOC_FOR_REALLOC_POSIX instead of REPLACE_REALLOC. * modules/realloc-gnu (Comment): Remove section. (Depends-on): Add free-posix, malloc-gnu, xalloc-oversized. (configure.ac): Test REPLACE_REALLOC_FOR_REALLOC_GNU instead of REPLACE_REALLOC. Set a module indicator. * lib/stdlib.in.h (realloc): Test REPLACE_REALLOC_FOR_REALLOC_POSIX, REPLACE_REALLOC_FOR_REALLOC_GNU, and the respective module indicators instead of just REPLACE_REALLOC.
30 lines
535 B
Plaintext
30 lines
535 B
Plaintext
Description:
|
|
realloc() function that is glibc compatible.
|
|
|
|
Files:
|
|
lib/realloc.c
|
|
|
|
Depends-on:
|
|
realloc-posix
|
|
free-posix [test $REPLACE_REALLOC_FOR_REALLOC_GNU = 1]
|
|
malloc-gnu [test $REPLACE_REALLOC_FOR_REALLOC_GNU = 1]
|
|
xalloc-oversized [test $REPLACE_REALLOC_FOR_REALLOC_GNU = 1]
|
|
|
|
configure.ac:
|
|
gl_FUNC_REALLOC_GNU
|
|
if test $REPLACE_REALLOC_FOR_REALLOC_GNU = 1; then
|
|
AC_LIBOBJ([realloc])
|
|
fi
|
|
gl_STDLIB_MODULE_INDICATOR([realloc-gnu])
|
|
|
|
Makefile.am:
|
|
|
|
Include:
|
|
<stdlib.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
Jim Meyering
|