Title: [175115] trunk/Source/WTF
- Revision
- 175115
- Author
- [email protected]
- Date
- 2014-10-23 02:55:03 -0700 (Thu, 23 Oct 2014)
Log Message
[GTK] Fix build on Hurd
https://bugs.webkit.org/show_bug.cgi?id=138003
Reviewed by Carlos Garcia Campos.
* wtf/InlineASM.h:
* wtf/Platform.h:
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (175114 => 175115)
--- trunk/Source/WTF/ChangeLog 2014-10-23 09:35:46 UTC (rev 175114)
+++ trunk/Source/WTF/ChangeLog 2014-10-23 09:55:03 UTC (rev 175115)
@@ -1,3 +1,13 @@
+2014-10-23 Alberto Garcia <[email protected]>
+
+ [GTK] Fix build on Hurd
+ https://bugs.webkit.org/show_bug.cgi?id=138003
+
+ Reviewed by Carlos Garcia Campos.
+
+ * wtf/InlineASM.h:
+ * wtf/Platform.h:
+
2014-10-22 Byungseon Shin <[email protected]>
String(new Date(Mar 30 2014 01:00:00)) is wrong in CET
Modified: trunk/Source/WTF/wtf/InlineASM.h (175114 => 175115)
--- trunk/Source/WTF/wtf/InlineASM.h 2014-10-23 09:35:46 UTC (rev 175114)
+++ trunk/Source/WTF/wtf/InlineASM.h 2014-10-23 09:55:03 UTC (rev 175115)
@@ -82,6 +82,7 @@
#elif OS(LINUX) \
|| OS(FREEBSD) \
|| OS(OPENBSD) \
+ || OS(HURD) \
|| OS(NETBSD)
// GNU as-compatible syntax.
#define LOCAL_LABEL_STRING(name) ".L" #name
Modified: trunk/Source/WTF/wtf/Platform.h (175114 => 175115)
--- trunk/Source/WTF/wtf/Platform.h 2014-10-23 09:35:46 UTC (rev 175114)
+++ trunk/Source/WTF/wtf/Platform.h 2014-10-23 09:55:03 UTC (rev 175115)
@@ -710,7 +710,7 @@
#if !defined(ENABLE_DFG_JIT) && ENABLE(JIT)
/* Enable the DFG JIT on X86 and X86_64. */
-#if (CPU(X86) || CPU(X86_64)) && (OS(DARWIN) || OS(LINUX) || OS(FREEBSD) || OS(WINDOWS))
+#if (CPU(X86) || CPU(X86_64)) && (OS(DARWIN) || OS(LINUX) || OS(FREEBSD) || OS(WINDOWS) || OS(HURD))
#define ENABLE_DFG_JIT 1
#endif
/* Enable the DFG JIT on ARMv7. Only tested on iOS and Qt/GTK+ Linux. */
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes