author | eilers <eilers> | 2004-07-29 10:50:29 (UTC) |
---|---|---|
committer | eilers <eilers> | 2004-07-29 10:50:29 (UTC) |
commit | 9981eb853deaeac6ef5f87b94b60984450cb630a (patch) (unidiff) | |
tree | 8888c220156b831a70d88ff6b64d8f76386ef9d1 | |
parent | 08d7594f45f24112f76192ddbcd8ed3f0a651186 (diff) | |
download | opie-9981eb853deaeac6ef5f87b94b60984450cb630a.zip opie-9981eb853deaeac6ef5f87b94b60984450cb630a.tar.gz opie-9981eb853deaeac6ef5f87b94b60984450cb630a.tar.bz2 |
Reimplement fix to compile and work on MacOS-X.
-rw-r--r-- | qmake/include/qglobal.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/qmake/include/qglobal.h b/qmake/include/qglobal.h index b7e919d..ce209fe 100644 --- a/qmake/include/qglobal.h +++ b/qmake/include/qglobal.h | |||
@@ -150,32 +150,40 @@ | |||
150 | # define Q_OS_UNIXWARE | 150 | # define Q_OS_UNIXWARE |
151 | # define Q_OS_UNIXWARE7 | 151 | # define Q_OS_UNIXWARE7 |
152 | #elif defined(__svr4__) && defined(i386) /* Open UNIX 8 + GCC */ | 152 | #elif defined(__svr4__) && defined(i386) /* Open UNIX 8 + GCC */ |
153 | # define Q_OS_UNIXWARE | 153 | # define Q_OS_UNIXWARE |
154 | # define Q_OS_UNIXWARE7 | 154 | # define Q_OS_UNIXWARE7 |
155 | #elif defined(__MAKEDEPEND__) | 155 | #elif defined(__MAKEDEPEND__) |
156 | #else | 156 | #else |
157 | # error "Qt has not been ported to this OS - talk to qt-bugs@trolltech.com" | 157 | # error "Qt has not been ported to this OS - talk to qt-bugs@trolltech.com" |
158 | #endif | 158 | #endif |
159 | 159 | ||
160 | #if defined(Q_OS_WIN32) || defined(Q_OS_WIN64) | 160 | #if defined(Q_OS_WIN32) || defined(Q_OS_WIN64) |
161 | # define Q_OS_WIN | 161 | # define Q_OS_WIN |
162 | #endif | 162 | #endif |
163 | 163 | ||
164 | #if defined(Q_OS_MAC9) || defined(Q_OS_MACX) | 164 | #if defined(Q_OS_MAC9) || defined(Q_OS_MACX) |
165 | # define Q_OS_MAC | 165 | # define Q_OS_MAC |
166 | /* We have to prevent qmake to generate makefiles or projectfiles for the Apple build system. | ||
167 | * This would work if we would use QT3. But we compile with QT2 which don't use qmake and does nothing | ||
168 | * about the MAC platform !! (se) | ||
169 | */ | ||
170 | #warning "evil hack here !! (se)" | ||
171 | #define Q_OS_LINUX | ||
172 | #undef Q_OS_MACX | ||
173 | #undef Q_OS_MAC | ||
166 | #endif | 174 | #endif |
167 | 175 | ||
168 | #if defined(Q_OS_MAC9) || defined(Q_OS_MSDOS) || defined(Q_OS_OS2) || defined(Q_OS_WIN) | 176 | #if defined(Q_OS_MAC9) || defined(Q_OS_MSDOS) || defined(Q_OS_OS2) || defined(Q_OS_WIN) |
169 | # undef Q_OS_UNIX | 177 | # undef Q_OS_UNIX |
170 | #elif !defined(Q_OS_UNIX) | 178 | #elif !defined(Q_OS_UNIX) |
171 | # define Q_OS_UNIX | 179 | # define Q_OS_UNIX |
172 | #endif | 180 | #endif |
173 | 181 | ||
174 | 182 | ||
175 | /* | 183 | /* |
176 | The compiler, must be one of: (Q_CC_x) | 184 | The compiler, must be one of: (Q_CC_x) |
177 | 185 | ||
178 | SYM- Symantec C++ for both PC and Macintosh | 186 | SYM- Symantec C++ for both PC and Macintosh |
179 | MPW- MPW C++ | 187 | MPW- MPW C++ |
180 | MWERKS- Metrowerks CodeWarrior | 188 | MWERKS- Metrowerks CodeWarrior |
181 | MSVC- Microsoft Visual C/C++, Intel C++ for Windows | 189 | MSVC- Microsoft Visual C/C++, Intel C++ for Windows |