Added new settings button to set a fake current location ('work' in the first instance).
[ptas] / zouba / qt4-maemo5 / mkspecs / solaris-g++-64 / qplatformdefs.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the qmake spec of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file.  Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23 **
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights.  These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QPLATFORMDEFS_H
43 #define QPLATFORMDEFS_H
44
45 // Get Qt defines/settings
46
47 #include "qglobal.h"
48
49 // Set any POSIX/XOPEN defines at the top of this file to turn on specific APIs
50 #ifndef _POSIX_PTHREAD_SEMANTICS
51 #define _POSIX_PTHREAD_SEMANTICS
52 #endif
53
54 #include <unistd.h>
55
56
57 // We are hot - unistd.h should have turned on the specific APIs we requested
58
59
60 #include <pthread.h>
61 #include <dirent.h>
62 #include <fcntl.h>
63 #include <grp.h>
64 #include <pwd.h>
65 #include <signal.h>
66 #include <dlfcn.h>
67
68 #include <sys/types.h>
69 #include <sys/ioctl.h>
70 #include <sys/filio.h>
71 #include <sys/ipc.h>
72 #include <sys/time.h>
73 #include <sys/shm.h>
74 #include <sys/socket.h>
75 #include <sys/stat.h>
76 #include <sys/wait.h>
77 #include <netinet/in.h>
78 #ifndef QT_NO_IPV6IFNAME
79 #include <net/if.h>
80 #endif
81
82 // On 64-bit platforms sockets use socklen_t
83 #define QT_SOCKLEN_T            socklen_t
84
85 // Only Solaris 7 and better support 64-bit
86 #define QT_SNPRINTF             ::snprintf
87 #define QT_VSNPRINTF            ::vsnprintf
88
89 // Solaris redefines connect -> __xnet_connect with _XOPEN_SOURCE_EXTENDED
90 static inline int qt_socket_connect(int s, struct sockaddr *addr, QT_SOCKLEN_T addrlen)
91 { return ::connect(s, addr, addrlen); }
92 #if defined (connect)
93 # undef connect
94 #endif
95
96 // Solaris redefines bind -> __xnet_bind with _XOPEN_SOURCE_EXTENDED
97 static inline int qt_socket_bind(int s, struct sockaddr *addr, QT_SOCKLEN_T addrlen)
98 { return ::bind(s, addr, addrlen); }
99 #if defined(bind)
100 # undef bind
101 #endif
102
103 #ifdef QT_LARGEFILE_SUPPORT
104 #define QT_STATBUF              struct stat64
105 #define QT_STATBUF4TSTAT        struct stat64
106 #define QT_STAT                 ::stat64
107 #define QT_FSTAT                ::fstat64
108 #define QT_LSTAT                ::lstat64
109 #define QT_OPEN                 ::open64
110 #define QT_TRUNCATE             ::truncate64
111 #define QT_FTRUNCATE            ::ftruncate64
112 #define QT_LSEEK                ::lseek64
113 #else
114 #define QT_STATBUF              struct stat
115 #define QT_STATBUF4TSTAT        struct stat
116 #define QT_STAT                 ::stat
117 #define QT_FSTAT                ::fstat
118 #define QT_LSTAT                ::lstat
119 #define QT_OPEN                 ::open
120 #define QT_TRUNCATE             ::truncate
121 #define QT_FTRUNCATE            ::ftruncate
122 #define QT_LSEEK                ::lseek
123 #endif
124
125 #ifdef QT_LARGEFILE_SUPPORT
126 #define QT_FOPEN                ::fopen64
127 #define QT_FSEEK                ::fseeko64
128 #define QT_FTELL                ::ftello64
129 #define QT_FGETPOS              ::fgetpos64
130 #define QT_FSETPOS              ::fsetpos64
131 #define QT_MMAP                 ::mmap64
132 #define QT_FPOS_T               fpos64_t
133 #define QT_OFF_T                off64_t
134 #else
135 #define QT_FOPEN                ::fopen
136 #define QT_FSEEK                ::fseek
137 #define QT_FTELL                ::ftell
138 #define QT_FGETPOS              ::fgetpos
139 #define QT_FSETPOS              ::fsetpos
140 #define QT_MMAP                 ::mmap
141 #define QT_FPOS_T               fpos_t
142 #define QT_OFF_T                long
143 #endif
144
145 #define QT_STAT_REG             S_IFREG
146 #define QT_STAT_DIR             S_IFDIR
147 #define QT_STAT_MASK            S_IFMT
148 #define QT_STAT_LNK             S_IFLNK
149 #define QT_SOCKET_CONNECT       qt_socket_connect
150 #define QT_SOCKET_BIND          ::bind
151 #define QT_FILENO               fileno
152 #define QT_CLOSE                ::close
153 #define QT_READ                 ::read
154 #define QT_WRITE                ::write
155 #define QT_ACCESS               ::access
156 #define QT_GETCWD               ::getcwd
157 #define QT_CHDIR                ::chdir
158 #define QT_MKDIR                ::mkdir
159 #define QT_RMDIR                ::rmdir
160 #define QT_OPEN_LARGEFILE       O_LARGEFILE
161 #define QT_OPEN_RDONLY          O_RDONLY
162 #define QT_OPEN_WRONLY          O_WRONLY
163 #define QT_OPEN_RDWR            O_RDWR
164 #define QT_OPEN_CREAT           O_CREAT
165 #define QT_OPEN_TRUNC           O_TRUNC
166 #define QT_OPEN_APPEND          O_APPEND
167
168 #define QT_SIGNAL_RETTYPE       void
169 #define QT_SIGNAL_ARGS          int
170 #define QT_SIGNAL_IGNORE        SIG_IGN
171
172 #endif // QPLATFORMDEFS_H