aboutsummaryrefslogtreecommitdiff
path: root/graphics/povray36/files/patch-src::frame.h
blob: 296d46b51cab38dcb1320307a4503aa5078ddb31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--- src/frame.h.orig	Tue Jan  7 10:08:30 2003
+++ src/frame.h	Sun Dec 28 23:37:04 2003
@@ -44,12 +44,20 @@
 class pov_istream_class;
 class pov_ostream_class;
 
+#if defined(__LP64__) || defined(__alpha__)
+typedef unsigned int u_int32 ;
+#else
 typedef unsigned long u_int32 ;
+#endif
 typedef unsigned short u_int16 ;
 typedef unsigned char u_int8 ;
 typedef unsigned char byte ;
 
+#if defined(__LP64__) || defined(__alpha__)
+typedef signed int int32 ;
+#else
 typedef signed long int32 ;
+#endif
 typedef signed short int16 ;
 typedef signed char int8 ;