mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-14 14:01:48 +03:00
Fix fnmatch to use it. Problem reported for z/OS by Daniel Richard G. * lib/fnmatch.c (__builtin_expect): * lib/glob.c (__builtin_expect): * lib/grantpt.c (__builtin_expect) [!_LIBC]: * lib/memmem.c (__builtin_expect) [!_LIBC]: * lib/scandir.c (__builtin_expect): * lib/strstr.c (__builtin_expect) [!_LIBC]: Remove macro; config.h now does this. * lib/gl_anytreehash_list1.h (add_to_bucket): * lib/regex_internal.h (BE): Assume __builtin_expect. * m4/builtin-expect.m4, modules/builtin-expect: New files. * modules/avltreehash-list, modules/fnmatch, modules/glob: * modules/grantpt, modules/memmem-simple, modules/rbtreehash-list: * modules/scandir, modules/strstr-simple: Depend on builtin-expect.
34 lines
445 B
Plaintext
34 lines
445 B
Plaintext
Description:
|
|
memmem() function: locate first substring in a buffer.
|
|
|
|
Files:
|
|
lib/str-two-way.h
|
|
lib/memmem.c
|
|
m4/memmem.m4
|
|
|
|
Depends-on:
|
|
builtin-expect
|
|
extensions
|
|
string
|
|
stdint
|
|
memchr
|
|
memcmp
|
|
|
|
configure.ac:
|
|
gl_FUNC_MEMMEM_SIMPLE
|
|
if test $HAVE_MEMMEM = 0 || test $REPLACE_MEMMEM = 1; then
|
|
AC_LIBOBJ([memmem])
|
|
fi
|
|
gl_STRING_MODULE_INDICATOR([memmem])
|
|
|
|
Makefile.am:
|
|
|
|
Include:
|
|
<string.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
libc, Eric Blake, Simon Josefsson
|