mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-17 12:41:05 +03:00
* m4/getdelim.m4 (gl_FUNC_GETDELIM): Set HAVE_GETDELIM. Move AC_LIBOBJ and gl_PREREQ_GETDELIM invocations from here... * modules/getdelim (configure.ac): ... to here. (Depends-on): Fix condition.
33 lines
604 B
Plaintext
33 lines
604 B
Plaintext
Description:
|
|
Read character delimited data from a stream.
|
|
|
|
Files:
|
|
lib/getdelim.c
|
|
m4/getdelim.m4
|
|
|
|
Depends-on:
|
|
stdio
|
|
extensions
|
|
stdint [test $HAVE_GETDELIM = 0 || test $REPLACE_GETDELIM = 1]
|
|
realloc-posix [test $HAVE_GETDELIM = 0 || test $REPLACE_GETDELIM = 1]
|
|
errno [test $HAVE_GETDELIM = 0 || test $REPLACE_GETDELIM = 1]
|
|
|
|
configure.ac:
|
|
gl_FUNC_GETDELIM
|
|
if test $HAVE_GETDELIM = 0 || test $REPLACE_GETDELIM = 1; then
|
|
AC_LIBOBJ([getdelim])
|
|
gl_PREREQ_GETDELIM
|
|
fi
|
|
gl_STDIO_MODULE_INDICATOR([getdelim])
|
|
|
|
Makefile.am:
|
|
|
|
Include:
|
|
<stdio.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
Simon Josefsson
|