mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-14 14:01:48 +03:00
* m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): Call AC_CHECK_FUNCS instead of AC_REPLACE_FUNCS. Set HAVE_MEMMEM. Move AC_LIBOBJ invocations from here... (gl_FUNC_MEMMEM): ... and here... * modules/memmem-simple (configure.ac): ... to here. * modules/memmem (configure.ac): ... and here.
25 lines
312 B
Plaintext
25 lines
312 B
Plaintext
Description:
|
|
memmem() function: efficiently locate first substring in a buffer.
|
|
|
|
Files:
|
|
|
|
Depends-on:
|
|
memmem-simple
|
|
|
|
configure.ac:
|
|
gl_FUNC_MEMMEM
|
|
if test $HAVE_MEMMEM = 0 || test $REPLACE_MEMMEM = 1; then
|
|
AC_LIBOBJ([memmem])
|
|
fi
|
|
|
|
Makefile.am:
|
|
|
|
Include:
|
|
<string.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
libc, Eric Blake
|