Title: [258470] releases/WebKitGTK/webkit-2.26/Source/bmalloc
- Revision
- 258470
- Author
- [email protected]
- Date
- 2020-03-14 12:52:57 -0700 (Sat, 14 Mar 2020)
Log Message
Merge r258142 - Build failure on ppc64le if __unix is undefined
https://bugs.webkit.org/show_bug.cgi?id=207906
Patch by Mike Gorse <[email protected]> on 2020-03-09
Reviewed by Yusuke Suzuki.
* bmalloc/BPlatform.h: Check for __unix__ along with __unix.
Modified Paths
Diff
Modified: releases/WebKitGTK/webkit-2.26/Source/bmalloc/ChangeLog (258469 => 258470)
--- releases/WebKitGTK/webkit-2.26/Source/bmalloc/ChangeLog 2020-03-14 19:19:16 UTC (rev 258469)
+++ releases/WebKitGTK/webkit-2.26/Source/bmalloc/ChangeLog 2020-03-14 19:52:57 UTC (rev 258470)
@@ -1,3 +1,12 @@
+2020-03-09 Mike Gorse <[email protected]>
+
+ Build failure on ppc64le if __unix is undefined
+ https://bugs.webkit.org/show_bug.cgi?id=207906
+
+ Reviewed by Yusuke Suzuki.
+
+ * bmalloc/BPlatform.h: Check for __unix__ along with __unix.
+
2019-08-26 Yusuke Suzuki <[email protected]>
[bmalloc] Disable IsoHeap completely if DebugHeap is enabled
Modified: releases/WebKitGTK/webkit-2.26/Source/bmalloc/bmalloc/BPlatform.h (258469 => 258470)
--- releases/WebKitGTK/webkit-2.26/Source/bmalloc/bmalloc/BPlatform.h 2020-03-14 19:19:16 UTC (rev 258469)
+++ releases/WebKitGTK/webkit-2.26/Source/bmalloc/bmalloc/BPlatform.h 2020-03-14 19:52:57 UTC (rev 258470)
@@ -40,7 +40,7 @@
#define BOS_DARWIN 1
#endif
-#ifdef __unix
+#if defined(__unix) || defined(__unix__)
#define BOS_UNIX 1
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes