From 9b41488ad15e4ffc63b8094379c17f567b094c1b Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Mon, 9 Sep 2002 21:20:41 +0000 Subject: [PATCH] Whoops; configure wasn't looking for memmove. --- ChangeLog | 8 ++++++-- configure.in | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 55dfbc4b..d6006862 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,10 +1,14 @@ +2002-09-09 Paul D. Smith + + * configure.in: Check for memmove(). + 2002-09-04 Paul D. Smith * implicit.c (pattern_search): Daniel reports that GNU make sometimes doesn't recognize that targets can be made, when directories can be created as prerequisites. He - reports changing the order of predicates in the DEP->changed flag - test so that lookup_file() is always performed, solves this + reports that changing the order of predicates in the DEP->changed + flag test so that lookup_file() is always performed, solves this problem. 2002-08-08 Paul D. Smith diff --git a/configure.in b/configure.in index 4507f0ab..5abbad53 100644 --- a/configure.in +++ b/configure.in @@ -119,7 +119,7 @@ if test "$ac_cv_func_gettimeofday" = yes; then [Define if you have a standard gettimeofday function]) fi -AC_CHECK_FUNCS( memcpy strchr strdup mkstemp mktemp fdopen \ +AC_CHECK_FUNCS( memcpy memmove strchr strdup mkstemp mktemp fdopen \ bsd_signal dup2 getcwd sigsetmask sigaction getgroups \ seteuid setegid setlinebuf setreuid setregid setvbuf pipe \ strerror strsignal)