Eric Blake wrote: > + * tests/test-memmem.c (main): Use alarm to declare failure if test > + is taking too long.
The function alarm() does not exist on mingw. Neither does SIGALRM. If you are looking for a quick temporary workaround, until you decided whether to create a 'memmam-fast' module, I would just enclose the relevant parts of tests/test-memmem.c in a #if 0. Bruno