Re: [PATCH] make check failure on Tru64 Unix

2013-03-10 Thread Gary V. Vaughan
Hi Paul, On 11 Mar 2013, at 12:31, Paul Eggert wrote: > On 03/10/2013 10:18 PM, Gary V. Vaughan wrote: >> Any objections if I push the fix? > > No, thanks, that fix looks good to me. Pushed. Thank you. Cheers, -- Gary V. Vaughan (gary AT gnu DOT org)

Re: [PATCH] make check failure on Tru64 Unix

2013-03-10 Thread Paul Eggert
On 03/10/2013 10:18 PM, Gary V. Vaughan wrote: > Any objections if I push the fix? No, thanks, that fix looks good to me.

[PATCH] make check failure on Tru64 Unix

2013-03-10 Thread Gary V. Vaughan
M4 master with latest gnulib is not picking up gnulib strtod for some reason, even though it is compiled and added to libm4.a on this platform: tru64% make check ... Checking ./180.format @ ../doc/m4.texi:6069: Origin of test ./180.format: stdou

Re: creates incorrect iconv() prototype

2013-03-10 Thread Paul Eggert
On 03/10/2013 11:14 AM, Andy Wingo wrote: > why is it trying to provide the prototype provided > by the platform, instead of the prototype from POSIX? Sorry, I don't know. But I expect that you can pass a 'char ICONV_CONST **' value to iconv, as a workaround.

Re: creates incorrect iconv() prototype

2013-03-10 Thread Andy Wingo
Hi Paul, Thanks for looking at this. On Sun 10 Mar 2013 07:42, Paul Eggert writes: > The iconv build procedure prefers to use 'char **', > but it uses 'const char **' if it detects that it's > on a platform where the 'const' is needed. Evidently > that part of the detection isn't working. Can