Re: signed.m4 never again (was: Re: signed.m4 again)

2006-10-27 Thread Bruno Haible
Ralf Wildenhues wrote: > Yes, thank you. OK to apply, Bruno? > > * m4/signed.m4 (bh_C_SIGNED): Avoid uninitialized variable > warning. signed.m4 can go entirely, since gnulib assumes ANSI C for several years already. It is removed from GNU gettext. I'm removing it also from the 'vasn

Re: signed.m4 again

2006-10-17 Thread Ralf Wildenhues
Hello Paul, Apologies for the delay. * Paul Eggert wrote on Thu, Oct 12, 2006 at 10:28:27PM CEST: > Ralf Wildenhues <[EMAIL PROTECTED]> writes: > > > - [AC_TRY_COMPILE(, [signed char x; return !x;], > > + [AC_TRY_COMPILE(, [signed char x; return !sizeof x;], > > Wouldn't this be a bit bette

Re: signed.m4 again

2006-10-12 Thread Paul Eggert
Ralf Wildenhues <[EMAIL PROTECTED]> writes: > - [AC_TRY_COMPILE(, [signed char x; return !x;], > + [AC_TRY_COMPILE(, [signed char x; return !sizeof x;], Wouldn't this be a bit better, in the sense of catching more compilers that are a bit dodgy? [AC_TRY_COMPILE(, [signed char x = -127, y