aboutsummaryrefslogtreecommitdiff
path: root/libgcobol/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'libgcobol/configure.ac')
-rw-r--r--libgcobol/configure.ac9
1 files changed, 9 insertions, 0 deletions
diff --git a/libgcobol/configure.ac b/libgcobol/configure.ac
index 2e4a88e..34c0235 100644
--- a/libgcobol/configure.ac
+++ b/libgcobol/configure.ac
@@ -215,6 +215,12 @@ AM_CONDITIONAL([ENABLE_DARWIN_AT_RPATH], [test x$enable_darwin_at_rpath = xyes])
AC_SUBST(enable_shared)
AC_SUBST(enable_static)
+# These are GLIBC
+AC_CHECK_FUNCS_ONCE(random_r srandom_r initstate_r setstate_r)
+
+# These are C23, and might not be available in libc.
+AC_CHECK_FUNCS_ONCE(strfromf32 strfromf64)
+
if test "${multilib}" = "yes"; then
multilib_arg="--enable-multilib"
else
@@ -266,6 +272,9 @@ case $host in
esac
AC_SUBST(extra_darwin_ldflags_libgcobol)
+# For iconv support.
+AM_ICONV
+
AC_CONFIG_SRCDIR([Makefile.am])
AC_CONFIG_FILES([Makefile])
####AC_CONFIG_FILES(libgcobol.spec)