2 * Copyright (C) 2008 Nuanti Ltd.
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.
23 #if defined(HAVE_CONFIG_H) && HAVE_CONFIG_H
24 #include "autotoolsconfig.h"
27 #include <wtf/Platform.h>
32 #include <wtf/FastMalloc.h>
35 #if OS(WINDOWS) && !COMPILER(GCC)
36 #define JS_EXPORTDATA __declspec(dllimport)
37 #define WEBKIT_EXPORTDATA __declspec(dllimport)
40 #define WEBKIT_EXPORTDATA
46 #if !defined(MAC_OS_X_VERSION_10_5) || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5
47 #define BUILDING_ON_TIGER 1
48 #elif !defined(MAC_OS_X_VERSION_10_6) || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6
49 #define BUILDING_ON_LEOPARD 1
50 #elif !defined(MAC_OS_X_VERSION_10_7) || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_7
51 #define BUILDING_ON_SNOW_LEOPARD 1
53 #endif // PLATFORM(MAC)
57 #if defined(WIN_CAIRO)
58 #define WTF_PLATFORM_CAIRO 1
59 #define WTF_USE_CURL 1
61 #define WTF_PLATFORM_CG 1
62 #define WTF_USE_CFNETWORK 1
66 #define _WIN32_WINNT 0x0500
71 // If we don't define these, they get defined in windef.h.
72 // We want to use std::min and std::max
79 #define _WINSOCKAPI_ // Prevent inclusion of winsock.h in windows.h
80 #endif // PLATFORM(WIN)