From: Florian Weimer Date: Thu, 24 Nov 2022 11:57:49 +0100 Subject: [PATCH] configure.ac: C99 fix for ERTS___AFTER_MORECORE_HOOK_CAN_TRACK_MALLOC #include for the sbrk function if the header is available. diff --git a/erts/configure b/erts/configure index 815428caaf..47a1eab97a 100755 --- a/erts/configure +++ b/erts/configure @@ -20529,6 +20529,9 @@ else $as_nop #ifdef HAVE_MALLOC_H # include #endif +#ifdef HAVE_UNISTD_H +# include +#endif #if defined(HAVE_END_SYMBOL) extern char end; #elif defined(HAVE__END_SYMBOL) diff --git a/erts/configure.ac b/erts/configure.ac index ab2ee78acd..71423a4c4d 100644 --- a/erts/configure.ac +++ b/erts/configure.ac @@ -2436,6 +2436,9 @@ AC_CACHE_CHECK([if __after_morecore_hook can track malloc()s core memory use], #ifdef HAVE_MALLOC_H # include #endif +#ifdef HAVE_UNISTD_H +# include +#endif #if defined(HAVE_END_SYMBOL) extern char end; #elif defined(HAVE__END_SYMBOL)