One more workaround for the UTS compiler from Hal Morris.
authorJarkko Hietaniemi <jhi@iki.fi>
Wed, 9 May 2001 23:13:29 +0000 (23:13 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Wed, 9 May 2001 23:13:29 +0000 (23:13 +0000)
p4raw-id: //depot/perl@10064

perl.h

diff --git a/perl.h b/perl.h
index 83daa4d..4c8dc55 100644 (file)
--- 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.