summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-05-09 23:13:29 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-05-09 23:13:29 +0000
commitc495e72806088f6eabb02dba2a1fcfd54076b581 (patch)
tree5a80545a493b2fb485ce1eac2c19c5a0685d9af3
parent3267896c2a355f0459fb95ce88d4e63144105be5 (diff)
downloadperl-c495e72806088f6eabb02dba2a1fcfd54076b581.tar.gz
One more workaround for the UTS compiler from Hal Morris.
p4raw-id: //depot/perl@10064
-rw-r--r--perl.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/perl.h b/perl.h
index 83daa4d224..4c8dc5536d 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 <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.