[Release] Webkit-EFL Ver. 2.0_beta_118996_0.6.24
[framework/web/webkit-efl.git] / Tools / DumpRenderTree / config.h
1 /*
2  * Copyright (C) 2008 Nuanti Ltd.
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.
8  *
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.
13  *
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.
18  *
19  */
20
21 #define Config_H
22
23 #if defined(HAVE_CONFIG_H) && HAVE_CONFIG_H
24 #if defined(BUILDING_WITH_CMAKE)
25 #include "cmakeconfig.h"
26 #else
27 #include "autotoolsconfig.h"
28 #endif
29 #endif
30
31 #include <wtf/Platform.h>
32 #include <wtf/ExportMacros.h>
33 #if USE(JSC)
34 #include <runtime/JSExportMacros.h>
35 #endif
36
37 // On MSW, wx headers need to be included before windows.h is.
38 // The only way we can always ensure this is if we include wx here.
39 #if PLATFORM(WX)
40 #include <wx/defs.h>
41 #endif
42
43
44 #ifdef __cplusplus
45 #undef new
46 #undef delete
47 #include <wtf/FastMalloc.h>
48 #endif
49
50 #if PLATFORM(MAC)
51 #define WTF_USE_CF 1
52
53 #if !defined(MAC_OS_X_VERSION_10_6) || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6
54 #define BUILDING_ON_LEOPARD 1
55 #elif !defined(MAC_OS_X_VERSION_10_7) || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_7
56 #define BUILDING_ON_SNOW_LEOPARD 1
57 #endif
58 #endif // PLATFORM(MAC)
59
60 #if OS(WINDOWS)
61 // If we don't define these, they get defined in windef.h. 
62 // We want to use std::min and std::max
63 #undef max
64 #define max max
65 #undef min
66 #define min min
67 #endif
68
69 #if PLATFORM(WIN)
70 #define WTF_USE_CF 1 
71 #if PLATFORM(WIN_CAIRO)
72 #define WTF_USE_CAIRO 1
73 #define WTF_USE_CURL 1
74 #else
75 #define WTF_USE_CG 1
76 #define WTF_USE_CFNETWORK 1
77 #endif
78
79 #undef _WIN32_WINNT
80 #define _WIN32_WINNT 0x0500
81
82 #undef WINVER
83 #define WINVER 0x0500
84
85 #undef _WINSOCKAPI_
86 #define _WINSOCKAPI_ // Prevent inclusion of winsock.h in windows.h
87 #endif  // PLATFORM(WIN)