[CCing bug-libunistring, which is the better forum for topics like this.] > > After a build of libunistring 1.1 I am running `make check` and am getting > > 22 failures: > > > > > > ============================================================================ > > Testsuite summary for > > > > ============================================================================ > > # TOTAL: 582 > > # PASS: 522 > > # SKIP: 38 > > # XFAIL: 0 > > *# FAIL: 22* > > # XPASS: 0 > > # ERROR: 0 > > > > ============================================================================
This failure pattern indicates that the iconv include file and API calls are not available or not working. And indeed, in your 'configure' output you have: checking for iconv.h... yes checking for iconv... yes checking for working iconv... no > The iconv executable was not available. Restoring that brings > it back to zero errors. In fact, libunistring relies on the iconv API (in libc or libiconv), not on the 'iconv' program. Bruno