Commits
Andris Mednis authored cadc276848c
...G...PS. [ZBX-25723] commented out macros AC_FUNC_MALLOC and AC_FUNC_REALLOC from configure.ac to fix compilation on AIX
Both macros check whether malloc() and realloc() are GNU libc compatible.
On not compatible systems like AIX compilation breaks requiring replacement
functions rpl_malloc() and rpl_realloc() to be provided.
Our zbx_malloc2() and zbx_realloc2() provide a protection similar
to rpl_malloc() and rpl_realloc().