From 633a7f7474ffed19a1d79421b758423df0b38e71 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 4 Mar 2020 05:56:41 -0500 Subject: [PATCH] Fix undefined reference to "rpl_malloc" --- configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index b74c898e..7df13a49 100644 --- a/configure.ac +++ b/configure.ac @@ -840,8 +840,9 @@ AC_CHECK_TYPE(in_port_t, [], [AC_DEFINE([in_port_t], [uint16_t], [in_port_t])], #endif]) ACX_CHECK_SS_FAMILY -AC_FUNC_MALLOC -AC_FUNC_REALLOC +# AC_FUNC_MALLOC suffers false failures and causes Asan failures. +# AC_FUNC_MALLOC +# AC_FUNC_REALLOC AC_REPLACE_FUNCS(b64_pton) AC_REPLACE_FUNCS(b64_ntop) -- 2.47.3