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-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c495e72806088f6eabb02dba2a1fcfd54076b581;p=p5sagit%2Fp5-mst-13.2.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.