summaryrefslogtreecommitdiff
path: root/mkspecs/sco-cc/qplatformdefs.h
Unidiff
Diffstat (limited to 'mkspecs/sco-cc/qplatformdefs.h') (more/less context) (ignore whitespace changes)
-rw-r--r--mkspecs/sco-cc/qplatformdefs.h89
1 files changed, 89 insertions, 0 deletions
diff --git a/mkspecs/sco-cc/qplatformdefs.h b/mkspecs/sco-cc/qplatformdefs.h
new file mode 100644
index 0000000..4201ed6
--- a/dev/null
+++ b/mkspecs/sco-cc/qplatformdefs.h
@@ -0,0 +1,89 @@
1#ifndef QPLATFORMDEFS_H
2#define QPLATFORMDEFS_H
3
4// Get Qt defines/settings
5
6#include "qglobal.h"
7
8// Set any POSIX/XOPEN defines at the top of this file to turn on specific APIs
9
10// This is to have PATH_MAX defined in <limits.h>
11#ifndef _IBCS2
12# define _IBCS2
13#endif
14
15#include <unistd.h>
16
17
18// We are hot - unistd.h should have turned on the specific APIs we requested
19
20
21#ifdef QT_THREAD_SUPPORT
22#include <pthread.h>
23#endif
24
25#include <dirent.h>
26#include <fcntl.h>
27#include <grp.h>
28#include <pwd.h>
29#include <signal.h>
30#include <dlfcn.h>
31
32#include <sys/types.h>
33#include <sys/ioctl.h>
34#include <sys/ipc.h>
35#include <sys/time.h>
36#include <sys/shm.h>
37#include <sys/socket.h>
38#include <sys/stat.h>
39#include <sys/wait.h>
40
41// DNS header files are not fully covered by X/Open specifications.
42// In particular nothing is said about res_* :/
43// On Unixware header files <netinet/in.h> and <arpa/nameser.h> are not
44// included by <resolv.h>. Note that <arpa/nameser.h> must be included
45// before <resolv.h>.
46#include <netinet/in.h>
47#include <arpa/nameser.h>
48#include <resolv.h>
49
50
51#if !defined(QT_NO_COMPAT)
52 #define QT_STATBUF struct stat
53 #define QT_STATBUF4TSTATstruct stat
54 #define QT_STAT ::stat
55 #define QT_FSTAT ::fstat
56 #define QT_STAT_REG S_IFREG
57 #define QT_STAT_DIR S_IFDIR
58 #define QT_STAT_MASK S_IFMT
59 #define QT_STAT_LNK S_IFLNK
60 #define QT_FILENO fileno
61 #define QT_OPEN ::open
62 #define QT_CLOSE ::close
63 #define QT_LSEEK ::lseek
64 #define QT_READ ::read
65 #define QT_WRITE ::write
66 #define QT_ACCESS ::access
67 #define QT_GETCWD ::getcwd
68 #define QT_CHDIR ::chdir
69 #define QT_MKDIR ::mkdir
70 #define QT_RMDIR ::rmdir
71 #define QT_OPEN_RDONLY O_RDONLY
72 #define QT_OPEN_WRONLY O_WRONLY
73 #define QT_OPEN_RDWR O_RDWR
74 #define QT_OPEN_CREAT O_CREAT
75 #define QT_OPEN_TRUNC O_TRUNC
76 #define QT_OPEN_APPEND O_APPEND
77#endif
78
79 #define QT_SIGNAL_RETTYPEvoid
80 #define QT_SIGNAL_ARGS int
81 #define QT_SIGNAL_IGNORESIG_IGN
82
83 #define QT_SOCKLEN_T int
84
85 #define QT_SNPRINTF ::snprintf
86 #define QT_VSNPRINTF ::vsnprintf
87
88
89#endif // QPLATFORMDEFS_H