On 17 August 2018 at 06:51, Michael <aixtools@xxxxxxxxxxxxx> wrote: [...] > All tests succeeded BUT! > TEST_SSH_IPV6="yes" ; \^M > TEST_SSH_UTF8="no" ; \^M > TEST_SSH_ECC="yes" ; \^M > > So, it seems the UTF test on my system is being skipped. That's controlled by the following fragment in configure.ac. Either the test failed to compile or it could not set the locale. You can look in config.log to see what happened. AC_MSG_CHECKING([for utf8 locale support]) AC_RUN_IFELSE( [AC_LANG_PROGRAM([[ #include <locale.h> #include <stdlib.h> ]], [[ char *loc = setlocale(LC_CTYPE, "en_US.UTF-8"); if (loc != NULL) exit(0); exit(1); ]])], AC_MSG_RESULT(yes), [AC_MSG_RESULT(no) TEST_SSH_UTF8=no], AC_MSG_WARN([cross compiling: assuming yes]) ) Darren Tucker (dtucker at dtucker.net) GPG key 11EAA6FA / A86E 3E07 5B19 5880 E860 37F4 9357 ECEF 11EA A6FA (new) Good judgement comes with experience. Unfortunately, the experience usually comes from bad judgement. _______________________________________________ openssh-unix-dev mailing list openssh-unix-dev@xxxxxxxxxxx https://lists.mindrot.org/mailman/listinfo/openssh-unix-dev