Hello,
There's a typo in modules/ffsll, a missing 'l' in the
gl_STRING_MODULE_INDICATOR line.
It causes test-ffsll to fail building on platforms that lack this
function since the gnulib replacement is not activated (GNULIB_FFSLL=0).
Solaris 9 with Sun C 5.9:
cc -DHAVE_CONFIG_H -I. -DGNULIB_STRICT_CHECKING=1 -I. -I. -I.. -I./..
-I../gllib -I./../gllib -D_REENTRANT -g -c -o test-ffsll.o test-ffsll.c
"test-ffsll.c", line 23: undefined symbol: ffsll
<...>
cc: acomp failed for test-ffsll.c
gmake[4]: *** [test-ffsll.o] Error 2
Fixing the typo fixed the build error (and the test passes).
-tgc