summaryrefslogtreecommitdiff
path: root/mkspecs/win32-borland/qplatformdefs.h
authorzecke <zecke>2004-07-18 19:32:20 (UTC)
committer zecke <zecke>2004-07-18 19:32:20 (UTC)
commit8795812a0d763742a5273f356c35313af0fed84d (patch) (unidiff)
tree34b7259e1595e53e1fa2069d7d79bbdef67293e8 /mkspecs/win32-borland/qplatformdefs.h
parent8e8fcd65b8d8657650728bae604c5a34dc31338e (diff)
downloadopie-8795812a0d763742a5273f356c35313af0fed84d.zip
opie-8795812a0d763742a5273f356c35313af0fed84d.tar.gz
opie-8795812a0d763742a5273f356c35313af0fed84d.tar.bz2
-CHECK if DIR exist added to qmake.conf's
-use arm-linux-g++ for linking now hopefully not removed anything important Added python tool to opiefy mkspecs
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
@@ -25,39 +25,42 @@
25#include <sys/stat.h> 25#include <sys/stat.h>
26#include <dos.h> 26#include <dos.h>
27#include <stdlib.h> 27#include <stdlib.h>
28#include <windows.h> 28#include <windows.h>
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
38 #define QT_STATBUF4TSTAT struct _stat // non-ANSI defs 42 #define QT_STATBUF4TSTAT struct _stat // non-ANSI defs
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
60 # define QT_ACCESS ::_access 63 # define QT_ACCESS ::_access
61 # define QT_GETCWD ::_getcwd 64 # define QT_GETCWD ::_getcwd
62 # define QT_CHDIR ::chdir 65 # define QT_CHDIR ::chdir
63 # define QT_MKDIR ::_mkdir 66 # define QT_MKDIR ::_mkdir
@@ -65,69 +68,80 @@
65 # define QT_OPEN_RDONLY _O_RDONLY 68 # define QT_OPEN_RDONLY _O_RDONLY
66 # define QT_OPEN_WRONLY _O_WRONLY 69 # define QT_OPEN_WRONLY _O_WRONLY
67 # define QT_OPEN_RDWR _O_RDWR 70 # define QT_OPEN_RDWR _O_RDWR
68 # define QT_OPEN_CREAT _O_CREAT 71 # define QT_OPEN_CREAT _O_CREAT
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
83 #define QT_STATBUF4TSTAT struct stat // non-ANSI defs 92 #define QT_STATBUF4TSTAT struct stat // non-ANSI defs
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:
108 // http://homepages.tu-darmstadt.de/~st002279/os2/porting.html 117 // http://homepages.tu-darmstadt.de/~st002279/os2/porting.html
109 # define QT_GETCWD ::_getcwd2 118 # define QT_GETCWD ::_getcwd2
110 # define QT_CHDIR ::_chdir2 119 # define QT_CHDIR ::_chdir2
111# else 120# else
112 # define QT_GETCWD ::getcwd 121 # define QT_GETCWD ::getcwd
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
117 # define QT_OPEN_RDONLY O_RDONLY 127 # define QT_OPEN_RDONLY O_RDONLY
118 # define QT_OPEN_WRONLY O_WRONLY 128 # define QT_OPEN_WRONLY O_WRONLY
119 # define QT_OPEN_RDWR O_RDWR 129 # define QT_OPEN_RDWR O_RDWR
120 # define QT_OPEN_CREAT O_CREAT 130 # define QT_OPEN_CREAT O_CREAT
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
130 144
131 #define QT_VSNPRINTF ::_vsnprintf 145 #define QT_VSNPRINTF ::_vsnprintf
132 #define QT_SNPRINTF ::_snprintf 146 #define QT_SNPRINTF ::_snprintf
133 147