From: Jarkko Hietaniemi Date: Fri, 25 Aug 2000 18:32:51 +0000 (+0000) Subject: Allow microperl to assume , without it the math X-Git-Tag: accepted/trunk/20130322.191538~34364 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=251f6efd9e14713ca0c3df28770dc911fb446b7f;p=platform%2Fupstream%2Fperl.git Allow microperl to assume , without it the math functions like floor() are assumed to return int, which makes for core dumps in machines where integer and floating register don't mix. p4raw-id: //depot/perl@6817 --- diff --git a/uconfig.h b/uconfig.h index 6509a26..40c7495 100644 --- a/uconfig.h +++ b/uconfig.h @@ -774,7 +774,7 @@ * This symbol, if defined, indicates to the C program that it should * include . */ -/*#define I_MATH / **/ +#define I_MATH /**/ /* I_MEMORY: * This symbol, if defined, indicates to the C program that it should diff --git a/uconfig.sh b/uconfig.sh index 35bb5a3..691d7cf 100755 --- a/uconfig.sh +++ b/uconfig.sh @@ -349,7 +349,7 @@ i_limits='undef' i_locale='undef' i_machcthr='undef' i_malloc='undef' -i_math='undef' +i_math='define' i_memory='undef' i_mntent='undef' i_ndbm='undef'