summaryrefslogtreecommitdiff
path: root/mkspecs/win32-borland/qplatformdefs.h
Unidiff
Diffstat (limited to 'mkspecs/win32-borland/qplatformdefs.h') (more/less context) (show whitespace changes)
-rw-r--r--mkspecs/win32-borland/qplatformdefs.h54
1 files changed, 34 insertions, 20 deletions
diff --git a/mkspecs/win32-borland/qplatformdefs.h b/mkspecs/win32-borland/qplatformdefs.h
index 5babada..121f863 100644
--- a/mkspecs/win32-borland/qplatformdefs.h
+++ b/mkspecs/win32-borland/qplatformdefs.h
@@ -29,9 +29,13 @@
29 29
30#if __BORLANDC__ >= 0x550 30#if __BORLANDC__ >= 0x550
31#ifdef QT_LARGE_FILE_SUPPORT 31// Borland Builder 6
32
33#ifdef QT_LARGEFILE_SUPPORT
32 #define QT_STATBUF struct stati64 // non-ANSI defs 34 #define QT_STATBUF struct stati64 // non-ANSI defs
33 #define QT_STATBUF4TSTAT struct _stati64 // non-ANSI defs 35 # define QT_STATBUF4TSTAT struct stati64 // non-ANSI defs
34 #define QT_STAT ::stati64 36 # define QT_STAT ::_stati64
35 #define QT_FSTAT ::fstati64 37 #define QT_FSTAT ::fstati64
38 # define QT_LSEEK ::_lseeki64
39 # define QT_TSTAT ::_tstati64
36#else 40#else
37 #define QT_STATBUF struct stat // non-ANSI defs 41 #define QT_STATBUF struct stat // non-ANSI defs
@@ -39,21 +43,20 @@
39 #define QT_STAT ::stat 43 #define QT_STAT ::stat
40 #define QT_FSTAT ::fstat 44 #define QT_FSTAT ::fstat
45 # define QT_LSEEK ::_lseek
46 # define QT_TSTAT ::_tstat
41#endif 47#endif
48
42 # define QT_STAT_REG _S_IFREG 49 # define QT_STAT_REG _S_IFREG
43 # define QT_STAT_DIR _S_IFDIR 50 # define QT_STAT_DIR _S_IFDIR
44 # define QT_STAT_MASK _S_IFMT 51 # define QT_STAT_MASK _S_IFMT
52
45# if defined(_S_IFLNK) 53# if defined(_S_IFLNK)
46 # define QT_STAT_LNK _S_IFLNK 54 # define QT_STAT_LNK _S_IFLNK
47# endif 55# endif
56
48 # define QT_FILENO _fileno 57 # define QT_FILENO _fileno
49 # define QT_OPEN ::open 58 # define QT_OPEN ::open
50 # define QT_CLOSE ::_close 59 # define QT_CLOSE ::_close
51#ifdef QT_LARGE_FILE_SUPPORT 60
52 #define QT_LSEEK ::_lseeki64
53 #define QT_TSTAT ::_tstati64
54#else
55 #define QT_LSEEK ::_lseek
56 #define QT_TSTAT ::_tstat
57#endif
58 # define QT_READ ::_read 61 # define QT_READ ::_read
59 # define QT_WRITE ::_write 62 # define QT_WRITE ::_write
@@ -69,14 +72,20 @@
69 # define QT_OPEN_TRUNC _O_TRUNC 72 # define QT_OPEN_TRUNC _O_TRUNC
70 # define QT_OPEN_APPEND _O_APPEND 73 # define QT_OPEN_APPEND _O_APPEND
74
71# if defined(O_TEXT) 75# if defined(O_TEXT)
72 # define QT_OPEN_TEXT _O_TEXT 76 # define QT_OPEN_TEXT _O_TEXT
73 # define QT_OPEN_BINARY_O_BINARY 77 # define QT_OPEN_BINARY_O_BINARY
74# endif 78# endif
75 #else // all other systems 79
76#ifdef QT_LARGE_FILE_SUPPORT 80#else
81// Borland Builder 5
82
83#ifdef QT_LARGEFILE_SUPPORT
77 #define QT_STATBUF struct stati64 // non-ANSI defs 84 #define QT_STATBUF struct stati64 // non-ANSI defs
78 #define QT_STATBUF4TSTAT struct stati64 // non-ANSI defs 85 #define QT_STATBUF4TSTAT struct stati64 // non-ANSI defs
79 #define QT_STAT ::stati64 86 #define QT_STAT ::stati64
80 #define QT_FSTAT ::fstati64 87 #define QT_FSTAT ::fstati64
88 # define QT_LSEEK ::lseeki64
89 # define QT_TSTAT ::tstati64
81#else 90#else
82 #define QT_STATBUF struct stat // non-ANSI defs 91 #define QT_STATBUF struct stat // non-ANSI defs
@@ -84,24 +93,24 @@
84 #define QT_STAT ::stat 93 #define QT_STAT ::stat
85 #define QT_FSTAT ::fstat 94 #define QT_FSTAT ::fstat
95 # define QT_LSEEK ::lseek
96 # define QT_TSTAT ::tstat
86#endif 97#endif
98
87 # define QT_STAT_REG S_IFREG 99 # define QT_STAT_REG S_IFREG
88 # define QT_STAT_DIR S_IFDIR 100 # define QT_STAT_DIR S_IFDIR
89 # define QT_STAT_MASK S_IFMT 101 # define QT_STAT_MASK S_IFMT
102
90# if defined(S_IFLNK) 103# if defined(S_IFLNK)
91 # define QT_STAT_LNK S_IFLNK 104 # define QT_STAT_LNK S_IFLNK
92# endif 105# endif
106
93 # define QT_FILENO fileno 107 # define QT_FILENO fileno
94 # define QT_OPEN ::open 108 # define QT_OPEN ::open
95 # define QT_CLOSE ::close 109 # define QT_CLOSE ::close
96#ifdef QT_LARGE_FILE_SUPPORT 110
97 #define QT_LSEEK ::lseeki64
98 #define QT_TSTAT ::tstati64
99#else
100 #define QT_LSEEK ::lseek
101 #define QT_TSTAT ::tstat
102#endif
103 # define QT_READ ::read 111 # define QT_READ ::read
104 # define QT_WRITE ::write 112 # define QT_WRITE ::write
105 # define QT_ACCESS ::access 113 # define QT_ACCESS ::access
114
106# if defined(Q_OS_OS2EMX) 115# if defined(Q_OS_OS2EMX)
107// This is documented in the un*x to OS/2-EMX Porting FAQ: 116// This is documented in the un*x to OS/2-EMX Porting FAQ:
@@ -113,4 +122,5 @@
113 # define QT_CHDIR ::chdir 122 # define QT_CHDIR ::chdir
114# endif 123# endif
124
115 # define QT_MKDIR ::mkdir 125 # define QT_MKDIR ::mkdir
116 # define QT_RMDIR ::rmdir 126 # define QT_RMDIR ::rmdir
@@ -121,9 +131,13 @@
121 # define QT_OPEN_TRUNC O_TRUNC 131 # define QT_OPEN_TRUNC O_TRUNC
122 # define QT_OPEN_APPEND O_APPEND 132 # define QT_OPEN_APPEND O_APPEND
133
123# if defined(O_TEXT) 134# if defined(O_TEXT)
124 # define QT_OPEN_TEXT O_TEXT 135 # define QT_OPEN_TEXT O_TEXT
125 # define QT_OPEN_BINARYO_BINARY 136 # define QT_OPEN_BINARYO_BINARY
126# endif 137# endif
127#endif 138
139#endif // __BORLANDC__ >= 0x550
140
141// Borland Builder 5 and 6
128 142
129 #define QT_SIGNAL_ARGS int 143 #define QT_SIGNAL_ARGS int