diff options
author | Jan Engelhardt <jengelh@inai.de> | 2015-09-23 16:25:37 +0200 |
---|---|---|
committer | Jan Engelhardt <jengelh@inai.de> | 2015-09-23 16:25:37 +0200 |
commit | e71fadd4dcf49adcc71c01b055c807cb4ac473f9 (patch) | |
tree | 574267d5b04a51ba7dd32d360636c8fbecdb23e5 /configure.ac | |
parent | 7bcff8dabaa44047184faf6f558820dd3a8f92cd (diff) |
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.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 5cdd1d1462..ef03fb082c 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]) |