diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-04-15 06:45:19 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-06-10 09:20:07 +0100 |
commit | 0431d4d6396e01fb333bc2bd0f1716c81b450dcf (patch) | |
tree | 7d6cad690177b0a47020501cc6faee4910bfe3ab | |
parent | d8639784647045593353270ae1b04ffb288533ff (diff) | |
download | rtmux-0431d4d6396e01fb333bc2bd0f1716c81b450dcf.tar.gz rtmux-0431d4d6396e01fb333bc2bd0f1716c81b450dcf.tar.bz2 rtmux-0431d4d6396e01fb333bc2bd0f1716c81b450dcf.zip |
Add crosscompiling fallbacks, from Hasso Tepper.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index a8d3787c..bfbec1d4 100644 --- a/configure.ac +++ b/configure.ac @@ -163,6 +163,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]) @@ -171,6 +172,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])] ) |