Hi Collin,
> I also added the two test cases to gnulib, that way we can catch any
> other platforms that have a bug like this, or regressions.
Thanks!
A small nit in the first of these patches, though:
+ [case "$host_os" in
+ # Guess yes on glibc systems.
+ *-gnu* | gnu*) gl_cv_glob_overflows_stack="guessing yes" ;;
+ esac
+ ])
When cross-compiling, gl_cv_glob_overflows_stack ought to be assigned
in all cases. In other words, the 'case' statement is lacking a default
clause at the end. Such as:
# If we don't know, obey --enable-cross-guesses.
*) gl_cv_glob_overflows_stack="$gl_cross_guess_inverted" ;;
Bruno