pixz fails to cross build from source, because it checks for source files with AC_CHECK_FILE. That check is supposed to check files on the host system, but sources only reside on the build system. The check should simply be performed directly e.g. with test -f. After doing so, pixz cross builds successfully. Please consider applying the attached patch. Helmut