1 From 2cc80dc06ea42087788cf27b31821ffa99a22f89 Mon Sep 17 00:00:00 2001
2 From: Johannes Lode <johannes.lode@dynainstruments.com>
3 Date: Thu, 14 Nov 2019 10:44:00 +0100
4 Subject: [PATCH] Drop AC_FUNC_MALLOC and _REALLOC and check for them as
7 While cross-compiling there occurred "undefined reference to
8 `rpl_malloc'", the suggested change fixes the problem.
10 Tested for native X86_64 and armv7a-unknown-linux-gnueabihf.
13 1 file changed, 2 insertions(+), 1 deletion(-)
15 diff --git a/configure.ac b/configure.ac
16 index 008499d..b492dc4 100644
19 @@ -81,7 +81,8 @@ AC_DEFUN([HEADER_NOT_FOUND_CXX],
21 # This is always checked (library needs this)
24 +# AC_FUNC_MALLOC -- does not work while cross-compiling
25 +AC_CHECK_FUNC([malloc realloc])
26 AC_CHECK_FUNC([ioctl], [], [FUNC_NOT_FOUND_LIB([ioctl])])
27 AC_CHECK_FUNC([asprintf], [], [FUNC_NOT_FOUND_LIB([asprintf])])
28 AC_CHECK_FUNC([scandir], [], [FUNC_NOT_FOUND_LIB([scandir])])