From: Jarkko Hietaniemi Date: Wed, 9 May 2001 23:13:29 +0000 (+0000) Subject: One more workaround for the UTS compiler from Hal Morris. X-Git-Tag: accepted/trunk/20130322.191538~31989 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c495e72806088f6eabb02dba2a1fcfd54076b581;p=platform%2Fupstream%2Fperl.git One more workaround for the UTS compiler from Hal Morris. p4raw-id: //depot/perl@10064 --- diff --git a/perl.h b/perl.h index 83daa4d..4c8dc55 100644 --- a/perl.h +++ b/perl.h @@ -1028,6 +1028,13 @@ typedef struct perl_mstats perl_mstats_t; #undef UV #endif +/* Configure gets this right but the UTS compiler gets it wrong. + -- Hal Morris */ +#ifdef UTS +# undef UVTYPE +# define UVTYPE unsigned +#endif + /* The IV type is supposed to be long enough to hold any integral value or a pointer.