The module 'select' gives a compilation error on MSVC, because the code includes <stdbool.h>, which does not exist. Actually it is not even needed.
This fixes it. 2011-09-22 Bruno Haible <br...@clisp.org> select: Avoid compilation error on MSVC. * lib/select.c: Don't include <stdbool.h>. --- lib/select.c.orig Thu Sep 22 23:32:45 2011 +++ lib/select.c Thu Sep 22 23:28:13 2011 @@ -27,7 +27,6 @@ /* Native Win32. */ #include <sys/types.h> -#include <stdbool.h> #include <errno.h> #include <limits.h> -- In memoriam Martha Corey <http://en.wikipedia.org/wiki/Martha_Corey>