ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/platform.h
(Generate patch)

Comparing ray/src/common/platform.h (file contents):
Revision 3.2 by schorsch, Fri Jun 6 16:38:47 2003 UTC vs.
Revision 3.8 by schorsch, Mon Jul 14 22:23:59 2003 UTC

# Line 4 | Line 4
4   */
5   #ifndef _RAD_PLATFORM_H_
6   #define _RAD_PLATFORM_H_
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
7  
11 #include "copyright.h"
12
8   #ifdef _WIN32
9  
10 < #include <stdio.h>  /* fileno() */
11 < #include <fcntl.h>  /* _O_BINARY, _O_TEXT */
17 < #include <io.h>     /* _setmode() */
18 < #include <stdlib.h> /* _fmode */
10 >  #include <io.h>     /* _setmode() and stuff from unistd.h */
11 >  typedef long off_t;
12  
13 < #define SET_DEFAULT_BINARY() _fmode = _O_BINARY
14 < #define SET_FILE_BINARY(fp) _setmode(fileno(fp),_O_BINARY)
15 < #define SET_FD_BINARY(fd) _setmode(fd,_O_BINARY)
13 >  #include <stdio.h>
14 >  #define popen _popen
15 >  #define pclose _pclose
16  
17 +  #include <windows.h>
18 +  #define sleep(s) Sleep(s*1000)
19  
20 +  #define NON_POSIX
21  
22 +  #include <sys/types.h>
23 +  #include <sys/stat.h>
24 +  #define RHAS_STAT
25 +  #define S_IFREG _S_IFREG
26 +  #define W_IFDIR _S_IFDIR
27  
28 +  #include <fcntl.h>  /* _O_BINARY, _O_TEXT */
29 +  #include <stdlib.h> /* _fmode */
30 +  #define SET_DEFAULT_BINARY() _fmode = _O_BINARY
31 +  #define SET_FILE_BINARY(fp) _setmode(fileno(fp),_O_BINARY)
32 +  #define SET_FD_BINARY(fd) _setmode(fd,_O_BINARY)
33  
28
29
34   #else /* _WIN32 */
35  
36 < /* NOPs on unix */
37 < #define SET_DEFAULT_BINARY()
38 < #define SET_FILE_BINARY(fp)
39 < #define SET_FD_BINARY(fd)
36 >  #ifdef AMIGA
37 >    #define NON_POSIX
38 >  #else
39 >    /* assumedly posix systems */
40 >    #define RHAS_GETPWNAM
41 >    #define RHAS_STAT
42 >    #define RHAS_FORK_EXEC
43 >  #endif
44  
45 +  /* everybody except Windows */
46  
47 +  /* NOPs */
48 +  #define SET_DEFAULT_BINARY()
49 +  #define SET_FILE_BINARY(fp)
50 +  #define SET_FD_BINARY(fd)
51  
39
40
41
42
52   #endif /* _WIN32 */
53  
54 + #ifdef __cplusplus
55 + extern "C" {
56 + #endif
57 +
58 + /* nothing to protect yet */
59  
60   #ifdef __cplusplus
61   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines