Description: Auxiliary module for stdio.h on native Windows. Files: lib/stdio-consolesafe.c Depends-on: stdio-h stdckdint-h fseterr configure.ac: AC_REQUIRE([AC_CANONICAL_HOST]) USES_MSVCRT=0 case "$host_os" in mingw* | windows*) AC_EGREP_CPP([Special], [ #ifndef _UCRT Special #endif ], [USES_MSVCRT=1]) ;; esac gl_CONDITIONAL([GL_COND_OBJ_STDIO_CONSOLESAFE], [test $USES_MSVCRT = 1]) AC_CHECK_FUNCS_ONCE([vasprintf]) Makefile.am: if GL_COND_OBJ_STDIO_CONSOLESAFE lib_SOURCES += stdio-consolesafe.c endif Include: License: LGPLv2+ Maintainer: all