Hello, I managed to fix this FTBFS in Ubuntu by patching configure.ac to include stdlib.h in tests that use exit(). I've attached a copy of the patch to this reply.
Description: Include stdlib in configure tests that use the exit command Author: Lena Voytek <lena.voy...@canonical.com> Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066467 Last-Update: 2025-03-19 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/configure.ac +++ b/configure.ac @@ -312,7 +312,10 @@ AM_CONDITIONAL([NO_LIBASR], [test x$asr_in_libc = x1]) AC_MSG_CHECKING([compiler and flags for sanity]) -AC_RUN_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> ]], [[ exit(0); ]])], +AC_RUN_IFELSE([AC_LANG_PROGRAM([[ +#include <stdio.h> +#include <stdlib.h> +]], [[ exit(0); ]])], [ AC_MSG_RESULT([yes]) ], [ AC_MSG_RESULT([no])
signature.asc
Description: This is a digitally signed message part