diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-05-09 23:13:29 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-05-09 23:13:29 +0000 |
commit | c495e72806088f6eabb02dba2a1fcfd54076b581 (patch) | |
tree | 5a80545a493b2fb485ce1eac2c19c5a0685d9af3 | |
parent | 3267896c2a355f0459fb95ce88d4e63144105be5 (diff) | |
download | perl-c495e72806088f6eabb02dba2a1fcfd54076b581.tar.gz |
One more workaround for the UTS compiler from Hal Morris.
p4raw-id: //depot/perl@10064
-rw-r--r-- | perl.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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 <hom00@utsglobal.com> */ +#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. |