Nelson H. F. Beebe wrote in <https://lists.gnu.org/archive/html/platform-testers/2022-04/msg00005.html>:
> On CentOS 5 x86_64: > > test-fopen-gnu.c:64: assertion '(flags & FD_CLOEXEC) != 0' failed > > On macOS 12.3.1 (Monterey): > > ../build-aux/test-driver: line 112: 30653 Abort trap: 6 "$@" > >> "$log_file" 2>&1 > FAIL: test-fopen-gnu > test-fopen-gnu.c:64: assertion '(flags & FD_CLOEXEC) != 0' failed > > On Solaris 10 x86_64: > > ./build-aux/test-driver: line 112: 312 Abort (core > dumped) "$@" >> "$log_file" > 2>&1 > FAIL: test-fopen-gnu > test-fopen-gnu.c:64: assertion '(flags & FD_CLOEXEC) != 0' failed > > On Solaris 10 SPARC: > > ../build-aux/test-driver: line 112: 21570 Abort "$@" > >> "$log_file" 2>&1 > FAIL: test-fopen-gnu > test-fopen-gnu.c:64: assertion '(flags & FD_CLOEXEC) != 0' failed Thanks for the report. This patch should fix it. 2022-06-06 Bruno Haible <br...@clisp.org> fopen-gnu: Make this module work again (regression 2022-01-03). Reported by Nelson H. F. Beebe <be...@math.utah.edu> in <https://lists.gnu.org/archive/html/platform-testers/2022-04/msg00005.html>. * modules/fopen-gnu (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR. diff --git a/modules/fopen-gnu b/modules/fopen-gnu index 86635a140b..8903508986 100644 --- a/modules/fopen-gnu +++ b/modules/fopen-gnu @@ -20,6 +20,7 @@ if test $REPLACE_FOPEN_FOR_FOPEN_GNU = 1; then gl_PREREQ_FOPEN fi gl_MODULE_INDICATOR([fopen-gnu]) +gl_STDIO_MODULE_INDICATOR([fopen-gnu]) Makefile.am: