* Added Spectrum analyzer demo application. * Added exit softkey to Wiggly example. * Added close button to Anomaly demo. * Fixed Anomaly demo controlstrip icon placement for very small screens. * Ensure history configuration is cleared when a state machine is restarted. For more read: http://qt.nokia.com/developer/changes/changes-4.6.3
35 lines
1.3 KiB
Text
35 lines
1.3 KiB
Text
$NetBSD: patch-ay,v 1.7 2010/07/04 06:00:14 adam Exp $
|
|
|
|
--- src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h.orig 2010-06-02 02:03:12.000000000 +0000
|
|
+++ src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h
|
|
@@ -86,6 +86,13 @@
|
|
#define WTF_PLATFORM_OPENBSD 1
|
|
#endif
|
|
|
|
+/* PLATFORM(DRAGONFLY) */
|
|
+/* Operating system level dependencies for OpenBSD systems that */
|
|
+/* should be used regardless of operating environment */
|
|
+#ifdef __DragonFly__
|
|
+#define WTF_PLATFORM_DRAGONFLY 1
|
|
+#endif
|
|
+
|
|
/* PLATFORM(SOLARIS) */
|
|
/* Operating system level dependencies for Solaris that should be used */
|
|
/* regardless of operating environment */
|
|
@@ -141,6 +148,7 @@
|
|
/* should be used regardless of operating environment */
|
|
#if PLATFORM(DARWIN) \
|
|
|| PLATFORM(FREEBSD) \
|
|
+ || PLATFORM(DRAGONFLY) \
|
|
|| PLATFORM(SYMBIAN) \
|
|
|| PLATFORM(NETBSD) \
|
|
|| PLATFORM(SOLARIS) \
|
|
@@ -723,7 +731,7 @@
|
|
#endif
|
|
|
|
#if !defined(WTF_USE_JSVALUE64) && !defined(WTF_USE_JSVALUE32) && !defined(WTF_USE_JSVALUE32_64)
|
|
-#if PLATFORM(X86_64) && (PLATFORM(DARWIN) || PLATFORM(LINUX) || PLATFORM(SOLARIS) || PLATFORM(HPUX))
|
|
+#if (PLATFORM(X86_64) && (PLATFORM(UNIX) || PLATFORM(WIN_OS))) || PLATFORM(IA64) || PLATFORM(ALPHA)
|
|
#define WTF_USE_JSVALUE64 1
|
|
#elif (PLATFORM(IA64) && !PLATFORM(IA64_32)) || PLATFORM(SPARC64) || PLATFORM(ALPHA)
|
|
#define WTF_USE_JSVALUE64 1
|