From: Jeffrey Walton Date: Wed, 4 Mar 2020 10:56:41 +0000 (-0500) Subject: Fix undefined reference to "rpl_malloc" X-Git-Tag: 1.8.0-rc.1~64^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F81%2Fhead;p=thirdparty%2Fldns.git Fix undefined reference to "rpl_malloc" --- 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)