I would compile up 5.8.14 and try it, but I'm seeing the same broken nls
stuff that everybody else is. Hopefully 5.8.15 will put things right again:
rcfile_y.o: In function `yyparse':
rcfile_y.o(.text+0x3b6): undefined reference to `dcgettext__'
rcfile_y.o(.text+0x50b): undefined reference to `dcgettext__'
rcfile_y.o(.text+0x62b): undefined reference to `dcgettext__'
rcfile_y.o: In function `yyerror':
rcfile_y.o(.text+0xd8f): undefined reference to `dcgettext__'
rcfile_y.o(.text+0xddd): undefined reference to `dcgettext__'
rcfile_y.o(.text+0xf00): more undefined references to `dcgettext__' follow
Your problem is that autoconf thinks you have the gettext function in your
system. what you have to do is run configure like this:
./configure --with-included-gettext
and you'll have no problem (the same thing happened to me a few days ago
and this fixed the problem)