On Sat, Dec 29, 2001 at 04:35:01PM -0500, Michael G Schwern wrote: > In addition to the failures, there were some warnings in the build in > pp.c, pp_ctl.c, pp_pack.c, POSIX.xs and sv.c when using combinations > of -DDEBUGGING and the various big number configs. See attached log > file.
These sv.c:1944: warning: double format, NV arg (arg 5) indicate that the floating point printf format scanning by Configure has failed: 1944: DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_2iuv_non '%s', IV=0x%"UVxf" NV=%"NVgf" inttype=%"UVXf"\n", SvPVX(sv), SvIVX(sv), SvNVX(sv), (UV)numtype)); and these pp.c:2711: warning: passing arg 2 of `modf' from incompatible pointer type mean that something in the 2711: (void)Perl_modf(value, &value); Perl_modf() logic in perl.h has gone wrong. I hope you can investigate. -- $jhi++; # http://www.iki.fi/jhi/ # There is this special biologist word we use for 'stable'. # It is 'dead'. -- Jack Cohen
