2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / WebCore / config.h
blob6575c08dba1a4882bd1fb3438525cd48b1b030d7
1 /*
2 * Copyright (C) 2004, 2005, 2006 Apple Inc.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
21 #if defined(HAVE_CONFIG_H) && HAVE_CONFIG_H
22 #include "autotoolsconfig.h"
23 #endif
25 #include <wtf/Platform.h>
27 #define MOBILE 0
29 #ifdef __APPLE__
30 #define HAVE_FUNC_USLEEP 1
31 #endif /* __APPLE__ */
33 #if PLATFORM(WIN_OS)
35 #ifndef _WIN32_WINNT
36 #define _WIN32_WINNT 0x0500
37 #endif
39 #ifndef WINVER
40 #define WINVER 0x0500
41 #endif
43 // If we don't define these, they get defined in windef.h.
44 // We want to use std::min and std::max.
45 #ifndef max
46 #define max max
47 #endif
48 #ifndef min
49 #define min min
50 #endif
52 // CURL needs winsock, so don't prevent inclusion of it
53 #if !USE(CURL)
54 #ifndef _WINSOCKAPI_
55 #define _WINSOCKAPI_ // Prevent inclusion of winsock.h in windows.h
56 #endif
57 #endif
59 #endif /* PLATFORM(WIN_OS) */
61 // On MSW, wx headers need to be included before windows.h is.
62 // The only way we can always ensure this is if we include wx here.
63 #if PLATFORM(WX)
64 // The defines in KeyboardCodes.h conflict with Windows as well, and the only way I've found
65 // to address the problem is include KeyboarddCodes.h before windows.h, so do it here.
66 #include "KeyboardCodes.h"
67 #include <wx/defs.h>
68 #endif
70 #if !PLATFORM(SYMBIAN)
71 #define IMPORT_C
72 #define EXPORT_C
73 #endif
75 #ifdef __cplusplus
77 // These undefs match up with defines in WebCorePrefix.h for Mac OS X.
78 // Helps us catch if anyone uses new or delete by accident in code and doesn't include "config.h".
79 #undef new
80 #undef delete
81 #include <wtf/FastMalloc.h>
83 #endif
85 // this breaks compilation of <QFontDatabase>, at least, so turn it off for now
86 // Also generates errors on wx on Windows, presumably because these functions
87 // are used from wx headers.
88 #if !PLATFORM(QT) && !PLATFORM(WX)
89 #include <wtf/DisallowCType.h>
90 #endif
92 #if COMPILER(MSVC)
93 #define SKIP_STATIC_CONSTRUCTORS_ON_MSVC 1
94 #else
95 #define SKIP_STATIC_CONSTRUCTORS_ON_GCC 1
96 #endif
98 #if PLATFORM(WIN)
99 #define WTF_PLATFORM_CG 1
100 #undef WTF_PLATFORM_CAIRO
101 #define WTF_USE_CFNETWORK 1
102 #undef WTF_USE_WININET
103 #define WTF_PLATFORM_CF 1
104 #define WTF_USE_PTHREADS 0
105 #endif
107 #if PLATFORM(MAC)
108 #if !defined(BUILDING_ON_TIGER) && !defined(BUILDING_ON_LEOPARD)
109 #define WTF_USE_ATSUI 0
110 #define WTF_USE_CORE_TEXT 1
111 #else
112 #define WTF_USE_ATSUI 1
113 #define WTF_USE_CORE_TEXT 0
114 #endif
115 #define WTF_USE_NEW_THEME 1
116 #endif
118 #if PLATFORM(SYMBIAN)
119 #undef WIN32
120 #undef _WIN32
121 #undef SKIP_STATIC_CONSTRUCTORS_ON_GCC
122 #define USE_SYSTEM_MALLOC 1
123 #define U_HAVE_INT8_T 0
124 #define U_HAVE_INT16_T 0
125 #define U_HAVE_INT32_T 0
126 #define U_HAVE_INT64_T 0
127 #define U_HAVE_INTTYPES_H 0
129 #include <stdio.h>
130 #include <snprintf.h>
131 #include <limits.h>
132 #include <wtf/MathExtras.h>
133 #endif
135 #if !defined(WTF_USE_V8)
136 /* Currently Chromium is the only platform which uses V8 by default */
137 #if PLATFORM(CHROMIUM)
138 #define WTF_USE_V8 1
139 #else
140 #define WTF_USE_V8 0
141 #endif /* PLATFORM(CHROMIUM) */
142 #endif /* !defined(WTF_USE_V8) */
144 /* Using V8 implies not using JSC and vice versa */
145 #define WTF_USE_JSC !WTF_USE_V8
147 #if PLATFORM(CG)
148 #ifndef CGFLOAT_DEFINED
149 #ifdef __LP64__
150 typedef double CGFloat;
151 #else
152 typedef float CGFloat;
153 #endif
154 #define CGFLOAT_DEFINED 1
155 #endif
156 #endif /* PLATFORM(CG) */
158 #ifdef BUILDING_ON_TIGER
159 #undef ENABLE_FTPDIR
160 #define ENABLE_FTPDIR 0
161 #endif
163 #if PLATFORM(WIN) && PLATFORM(CG)
164 #define WTF_USE_SAFARI_THEME 1
165 #endif