mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 20:33:03 +00:00
* src/reader.c (get_merge_function): Use xstrdup, not strdup. * src/files.c (skeleton_find): Remove, unused. * m4/memcmp.m4: New, from the Coreutils 4.5.1. * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
10 lines
231 B
Plaintext
10 lines
231 B
Plaintext
#serial 7
|
|
|
|
AC_DEFUN([jm_FUNC_MEMCMP],
|
|
[AC_REQUIRE([AC_FUNC_MEMCMP])dnl
|
|
if test $ac_cv_func_memcmp_working = no; then
|
|
AC_DEFINE(memcmp, rpl_memcmp,
|
|
[Define to rpl_memcmp if the replacement function should be used.])
|
|
fi
|
|
])
|