From: Alexander Barton Date: Sat, 15 Sep 2012 18:26:59 +0000 (+0200) Subject: Don't use AC_FUNC_MALLOC and AC_FUNC_REALLOC X-Git-Tag: rel-20-rc1~81^2~1 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=fe3bef55b75c5fbfbf87b098cbc61453b718435e Don't use AC_FUNC_MALLOC and AC_FUNC_REALLOC We don't expect the GNU'ish behaviour of of malloc() and realloc() and never implemented the replacement functions rpl_malloc()/rpl_realloc() -- so these test result in linking failues on systems that don't have a GNU'ish malloc() and realloc() even though we don't require it! Introduced by commit 47ad9afc. --- diff --git a/configure.in b/configure.in index 23b50cd7..949a383a 100644 --- a/configure.in +++ b/configure.in @@ -163,8 +163,6 @@ AC_SEARCH_LIBS([bind], [socket], [], [ # -- Functions -- AC_FUNC_FORK -AC_FUNC_MALLOC -AC_FUNC_REALLOC AC_FUNC_STRFTIME # Required functions