From 7590a58f444cd04ab3946d9ae0747e23e66e4f43 Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Mon, 23 Feb 2015 22:29:22 -0500 Subject: [PATCH] Configure: add missing check for funcs: memset, strerror Signed-off-by: Jonathan Rajotte Signed-off-by: Mathieu Desnoyers --- configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 008336c..1ea744c 100644 --- a/configure.ac +++ b/configure.ac @@ -57,7 +57,9 @@ AC_TYPE_SIZE_T # Checks for library functions. AC_FUNC_MALLOC AC_FUNC_MMAP -AC_CHECK_FUNCS([bzero gettimeofday munmap sched_getcpu strtoul sysconf gettid]) +AC_CHECK_FUNCS( + [bzero gettimeofday munmap sched_getcpu strtoul sysconf gettid memeset strerror] +) # Find arch type AS_CASE([$host_cpu], -- 2.34.1