Bug 35461
Summary: | Fail to build on sparc | ||
---|---|---|---|
Product: | WebKit | Reporter: | Aurelien Jarno <aurelien> |
Component: | JavaScriptCore | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED FIXED | ||
Severity: | Normal | CC: | barraclough |
Priority: | P2 | ||
Version: | 528+ (Nightly build) | ||
Hardware: | Other | ||
OS: | Linux |
Aurelien Jarno
webkit fails to build on sparc due to a small typo in Platform.h. The patch below fixes the problem.
--- src/3rdparty/webkit/JavaScriptCore/wtf/Platform.h.orig 2010-02-26 23:37:16.000000000 +0000
+++ src/3rdparty/webkit/JavaScriptCore/wtf/Platform.h 2010-02-26 23:37:31.000000000 +0000
@@ -232,7 +232,7 @@
/* PLATFORM(SPARC) */
#if PLATFORM(SPARC32) || PLATFORM(SPARC64)
-#define WTF_PLATFORM_SPARC
+#define WTF_PLATFORM_SPARC 1
#endif
/* PLATFORM(PPC64) */
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Alexey Proskuryakov
See also: bug 35326.
Would you be willing to submit a patch for review, as documented in
<http://webkit.org/coding/contributing.html>?
Gavin Barraclough
This was fixed in r56124