| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 #define WTF_PLATFORM_X86 1 | 205 #define WTF_PLATFORM_X86 1 |
| 206 #endif | 206 #endif |
| 207 | 207 |
| 208 /* PLATFORM(X86_64) */ | 208 /* PLATFORM(X86_64) */ |
| 209 #if defined(__x86_64__) \ | 209 #if defined(__x86_64__) \ |
| 210 || defined(__ia64__) \ | 210 || defined(__ia64__) \ |
| 211 || defined(_M_X64) | 211 || defined(_M_X64) |
| 212 #define WTF_PLATFORM_X86_64 1 | 212 #define WTF_PLATFORM_X86_64 1 |
| 213 #endif | 213 #endif |
| 214 | 214 |
| 215 /* PLATFORM(SH4) */ |
| 216 #if defined(__SH4__) |
| 217 #define WTF_PLATFORM_SH4 1 |
| 218 #endif |
| 219 |
| 215 /* PLATFORM(SPARC64) */ | 220 /* PLATFORM(SPARC64) */ |
| 216 #if defined(__sparc64__) | 221 #if defined(__sparc64__) |
| 217 #define WTF_PLATFORM_SPARC64 1 | 222 #define WTF_PLATFORM_SPARC64 1 |
| 218 #define WTF_PLATFORM_BIG_ENDIAN 1 | 223 #define WTF_PLATFORM_BIG_ENDIAN 1 |
| 219 #endif | 224 #endif |
| 220 | 225 |
| 221 /* PLATFORM(WIN_CE) && PLATFORM(QT) | 226 /* PLATFORM(WIN_CE) && PLATFORM(QT) |
| 222 We can not determine the endianess at compile time. For | 227 We can not determine the endianess at compile time. For |
| 223 Qt for Windows CE the endianess is specified in the | 228 Qt for Windows CE the endianess is specified in the |
| 224 device specific makespec | 229 device specific makespec |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 #if !ENABLE(XSLT) | 503 #if !ENABLE(XSLT) |
| 499 #define WTF_USE_QXMLSTREAM 1 | 504 #define WTF_USE_QXMLSTREAM 1 |
| 500 #endif | 505 #endif |
| 501 #endif | 506 #endif |
| 502 | 507 |
| 503 #if !PLATFORM(QT) | 508 #if !PLATFORM(QT) |
| 504 #define WTF_USE_FONT_FAST_PATH 1 | 509 #define WTF_USE_FONT_FAST_PATH 1 |
| 505 #endif | 510 #endif |
| 506 | 511 |
| 507 #endif /* WTF_Platform_h */ | 512 #endif /* WTF_Platform_h */ |
| OLD | NEW |