Initialize Tizen 2.3
[framework/web/webkit-efl.git] / Source / WebCore / config.h
1 /*
2  * Copyright (C) 2004, 2005, 2006, 2013 Apple Inc.
3  * Copyright (C) 2009 Google Inc. All rights reserved.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public License
16  * along with this library; see the file COPYING.LIB.  If not, write to
17  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  *
20  */ 
21
22 #if defined(HAVE_CONFIG_H) && HAVE_CONFIG_H
23 #ifdef BUILDING_WITH_CMAKE
24 #include "cmakeconfig.h"
25 #else
26 #include "autotoolsconfig.h"
27 #endif
28 #endif
29
30 #include <wtf/Platform.h>
31
32 #if PLATFORM(MAC) || PLATFORM(IOS)
33 #define WTF_USE_FILE_LOCK 1
34 #endif
35
36 #if PLATFORM(WIN) && !USE(WINGDI)
37 #include <WebCore/WebCoreHeaderDetection.h>
38 #endif
39
40 #include <wtf/ExportMacros.h>
41 #include "PlatformExportMacros.h"
42
43 #include <runtime/JSExportMacros.h>
44
45 #ifdef __APPLE__
46 #define HAVE_FUNC_USLEEP 1
47 #endif /* __APPLE__ */
48
49 #if OS(WINDOWS)
50
51 #ifndef _WIN32_WINNT
52 #define _WIN32_WINNT 0x0502
53 #endif
54
55 #ifndef WINVER
56 #define WINVER 0x0502
57 #endif
58
59 // If we don't define these, they get defined in windef.h.
60 // We want to use std::min and std::max.
61 #ifndef max
62 #define max max
63 #endif
64 #ifndef min
65 #define min min
66 #endif
67
68 // CURL needs winsock, so don't prevent inclusion of it
69 #if !USE(CURL)
70 #ifndef _WINSOCKAPI_
71 #define _WINSOCKAPI_ // Prevent inclusion of winsock.h in windows.h
72 #endif
73 #endif
74
75 #endif /* OS(WINDOWS) */
76
77 #ifdef __cplusplus
78
79 // These undefs match up with defines in WebCorePrefix.h for Mac OS X.
80 // Helps us catch if anyone uses new or delete by accident in code and doesn't include "config.h".
81 #undef new
82 #undef delete
83 #include <wtf/FastMalloc.h>
84
85 #include <ciso646>
86
87 #endif
88
89 #include <wtf/DisallowCType.h>
90
91 #if COMPILER(MSVC)
92 #define SKIP_STATIC_CONSTRUCTORS_ON_MSVC 1
93 #else
94 #define SKIP_STATIC_CONSTRUCTORS_ON_GCC 1
95 #endif
96
97 #if PLATFORM(WIN)
98 #if PLATFORM(WIN_CAIRO)
99 #undef WTF_USE_CG
100 #define WTF_USE_CAIRO 1
101 #define WTF_USE_CURL 1
102 #ifndef _WINSOCKAPI_
103 #define _WINSOCKAPI_ // Prevent inclusion of winsock.h in windows.h
104 #endif
105 #elif !USE(WINGDI)
106 #define WTF_USE_CG 1
107 #undef WTF_USE_CAIRO
108 #undef WTF_USE_CURL
109 #endif
110 #endif
111
112 #if PLATFORM(MAC)
113 // New theme
114 #define WTF_USE_NEW_THEME 1
115 #endif // PLATFORM(MAC)
116
117 #if USE(CG)
118 #ifndef CGFLOAT_DEFINED
119 #ifdef __LP64__
120 typedef double CGFloat;
121 #else
122 typedef float CGFloat;
123 #endif
124 #define CGFLOAT_DEFINED 1
125 #endif
126 #endif /* USE(CG) */
127
128 #if PLATFORM(WIN) && USE(CG)
129 #define WTF_USE_SAFARI_THEME 1
130 #endif
131
132 // CoreAnimation is available to IOS, Mac and Windows if using CG
133 #if PLATFORM(MAC) || PLATFORM(IOS) || (PLATFORM(WIN) && USE(CG))
134 #define WTF_USE_CA 1
135 #endif
136
137 // FIXME: Move this to JavaScriptCore/wtf/Platform.h, which is where we define WTF_USE_AVFOUNDATION on the Mac.
138 // https://bugs.webkit.org/show_bug.cgi?id=67334
139 #if PLATFORM(WIN) && !USE(WINGDI)
140 #define WTF_USE_AVFOUNDATION 1
141
142 #if HAVE(AVCF_LEGIBLE_OUTPUT)
143 #define HAVE_AVFOUNDATION_MEDIA_SELECTION_GROUP 1
144 #define HAVE_AVFOUNDATION_LEGIBLE_OUTPUT_SUPPORT 1
145 #endif
146
147 #endif
148