core: assume iconv usability when cross compiling

AC_TRY_RUN needs a fallback action when cross compiling.
This commit is contained in:
Fredrik Fornwall 2014-03-12 21:49:13 +01:00 committed by Sebastien Helleu
parent 86e12946a5
commit 2ea9f673a8

View File

@ -252,7 +252,7 @@ if test "x$ac_found_iconv_header" = "xyes" ; then
return 0;
}
return 1;
}],iconv_found="yes")
}],iconv_found="yes", iconv_found="no", iconv_found="assume-yes")
if test "x$iconv_found" = "xno" ; then
AC_MSG_RESULT(no)
else