]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - config.h
JavaScriptCore-7601.1.46.3.tar.gz
[apple/javascriptcore.git] / config.h
index 66817612f6071240dd5d432e4aa98146f8ec807f..bea1bf0487f82e9b65f30c7fecb6814d25f0e104 100644 (file)
--- a/config.h
+++ b/config.h
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
+ * Copyright (C) 2006, 2007, 2008, 2013 Apple Inc. All rights reserved.
  * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
  *
  * This library is free software; you can redistribute it and/or
  *
  */
 
-#if defined(HAVE_CONFIG_H) && HAVE_CONFIG_H
-#include "autotoolsconfig.h"
+#if defined(HAVE_CONFIG_H) && HAVE_CONFIG_H && defined(BUILDING_WITH_CMAKE)
+#include "cmakeconfig.h"
 #endif
 
 #include <wtf/Platform.h>
-
-#if PLATFORM(WIN_OS) && !defined(BUILDING_WX__) && !COMPILER(GCC)
-#if defined(BUILDING_JavaScriptCore) || defined(BUILDING_WTF)
-#define JS_EXPORTDATA __declspec(dllexport)
-#else
-#define JS_EXPORTDATA __declspec(dllimport)
-#endif
-#else
-#define JS_EXPORTDATA
+#include <wtf/ExportMacros.h>
+#if !defined(BUILDING_WTF)
+#include "JSExportMacros.h"
 #endif
 
-#if PLATFORM(WIN_OS)
+#if OS(WINDOWS)
 
-// If we don't define these, they get defined in windef.h. 
-// We want to use std::min and std::max
-#define max max
-#define min min
-
-#if !COMPILER(MSVC7) && !PLATFORM(WINCE)
-// We need to define this before the first #include of stdlib.h or it won't contain rand_s.
-#ifndef _CRT_RAND_S
-#define _CRT_RAND_S
-#endif
+#ifndef _WIN32_WINNT
+#define _WIN32_WINNT 0x601
 #endif
 
+#ifndef WINVER
+#define WINVER 0x0601
 #endif
 
-#if PLATFORM(FREEBSD) || PLATFORM(OPENBSD)
-#define HAVE_PTHREAD_NP_H 1
+#if !COMPILER(MSVC7_OR_LOWER)
+// We need to define this before the first #include of stdlib.h or it won't contain rand_s.
+#ifndef _CRT_RAND_S
+#define _CRT_RAND_S
 #endif
+#endif // !COMPILER(MSVC7_OR_LOWER
 
-/* FIXME: if all platforms have these, do they really need #defines? */
-#define HAVE_STDINT_H 1
-#define HAVE_STRING_H 1
-
-#define WTF_CHANGES 1
+#endif // OS(WINDOWS)
 
 #ifdef __cplusplus
 #undef new
 #include <wtf/FastMalloc.h>
 #endif
 
-// this breaks compilation of <QFontDatabase>, at least, so turn it off for now
-// Also generates errors on wx on Windows, because these functions
-// are used from wx headers. 
-#if !PLATFORM(QT) && !PLATFORM(WX)
 #include <wtf/DisallowCType.h>
+
+#if COMPILER(MSVC)
+#define SKIP_STATIC_CONSTRUCTORS_ON_MSVC 1
+#else
+#define SKIP_STATIC_CONSTRUCTORS_ON_GCC 1
 #endif