From: Jan Engelhardt Date: Wed, 23 Sep 2015 14:25:37 +0000 (+0200) Subject: build: remove AC_FUNC_MALLOC X-Git-Tag: v227~85^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1358%2Fhead;p=thirdparty%2Fsystemd.git build: remove AC_FUNC_MALLOC What is the rationale to have AC_FUNC_MALLOC? It does not actually abort the configure run if an "unsuitable" malloc was found, and instead just replaces malloc by rpl_malloc, for which systemd however has no definition, either. Remove the call. --- diff --git a/configure.ac b/configure.ac index 5cdd1d14627..ef03fb082c2 100644 --- a/configure.ac +++ b/configure.ac @@ -1261,7 +1261,6 @@ if test "x$enable_myhostname" != "xno"; then AC_TYPE_SIZE_T AC_HEADER_TIME - AC_FUNC_MALLOC AC_FUNC_SELECT_ARGTYPES AC_CHECK_FUNCS([gethostbyaddr gethostbyname gettimeofday inet_ntoa memset select socket strcspn strdup strerror strncasecmp strcasecmp strspn])