From 43c292fa91b22fd8422cc1c4b67e2d2ac3fab767 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 23 Apr 2021 17:18:51 +0100 Subject: Revert "Revert "Add crosscompiling fallbacks, from Hasso Tepper."" This reverts commit dda3bf896be9ce87b4066636cc7f94ab8030133a. --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 8b13854f..f6bdd3c7 100644 --- a/configure.ac +++ b/configure.ac @@ -172,6 +172,7 @@ AC_RUN_IFELSE([AC_LANG_PROGRAM( [return (reallocarray(NULL, 1, 1) == NULL);] )], AC_MSG_RESULT(yes), + [AC_LIBOBJ(reallocarray) AC_MSG_RESULT([no])], [AC_LIBOBJ(reallocarray) AC_MSG_RESULT([no])] ) AC_MSG_CHECKING([for working recallocarray]) @@ -180,6 +181,7 @@ AC_RUN_IFELSE([AC_LANG_PROGRAM( [return (recallocarray(NULL, 1, 1, 1) == NULL);] )], AC_MSG_RESULT(yes), + [AC_LIBOBJ(recallocarray) AC_MSG_RESULT([no])], [AC_LIBOBJ(recallocarray) AC_MSG_RESULT([no])] ) -- cgit