However there are other issues about gnulib:
The outputs of the following command have been attached: (I removed GNU regex
library headers and libraries from the directories above, but CFLAGS and
LDFLAGS had to be kept for ncurses.)
```sh CPPFLAGS="-I\"$(pwd)\"/i686-w64-mingw32/include"
LDFLAGS="-L\"$(pwd)\"/i686-w64-mingw32/lib" ./configure 2>std.err | tee
std.out ```
This does not make nano build; `make` will end up in undefined references:
```text gcc -g -O2 -Wall -L"/e/GitHub/nano-win"/i686-w64-mingw32/lib -o
nano.exe browser.o chars.o color.o cut.o files.o global.o help.o history.o
move.o nano.o prompt.o rcfile.o search.o text.o utils.o winio.o
../lib/libgnu.a -pthread -lz -LC:/MinGW/MSYS2/mingw32/lib -lncursesw
text.o: In function `do_formatter': E:\GitHub\nano-win\src/text.c:3448:
undefined reference to `fork' E:\GitHub\nano-win\src/text.c:3470: undefined
reference to `wait' E:\GitHub\nano-win\src/text.c:3472: undefined reference to
`WIFEXITED' E:\GitHub\nano-win\src/text.c:3472: undefined reference to
`WEXITSTATUS' E:\GitHub\nano-win\src/text.c:3506: undefined reference to
`WIFEXITED' E:\GitHub\nano-win\src/text.c:3506: undefined reference to
`WEXITSTATUS' collect2.exe: error: ld returned 1 exit status make[2]: ***
[Makefile:1541: nano.exe] Error 1 make[2]: Leaving directory
'/e/GitHub/nano-win/src' make[1]: *** [Makefile:1543: all-recursive] Error 1
make[1]: Leaving directory '/e/GitHub/nano-win' make: *** [Makefile:1482: all]
Error 2 ```
In order to build nano successfully, `--disable-speller` has to be passed to
`configure` due to absence of `fork()` and `wait()`.