From dd4cab815320c07a6892373aecfbde60c4a25d3f Mon Sep 17 00:00:00 2001 From: Zdenek Styblik Date: Fri, 5 Dec 2014 13:33:12 +0100 Subject: [PATCH] ID:343 - Remove AC_FUNC_MALLOC Fix cross-compile build error regarding to 'rpl_malloc'. ipmitool actually does not need the GNU's malloc(0) behavior. So, remove AC_FUNC_MALLOC from AC-script in order to help cross-compiling ipmitool without need to directly specify ac_cv_func_malloc_0_nonnull environment variable. --- configure.ac | 1 - 1 file changed, 1 deletion(-) diff --git a/configure.ac b/configure.ac index 6c5ccfb..9df7813 100644 --- a/configure.ac +++ b/configure.ac @@ -26,7 +26,6 @@ AC_C_CONST AC_C_INLINE AC_C_BIGENDIAN -AC_FUNC_MALLOC AC_FUNC_SELECT_ARGTYPES AC_FUNC_STRTOD AC_CHECK_FUNCS([alarm gethostbyname getaddrinfo getifaddrs socket select])