Title: [258187] releases/WebKitGTK/webkit-2.28/Source/bmalloc
Revision
258187
Author
[email protected]
Date
2020-03-10 01:28:41 -0700 (Tue, 10 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.28/Source/bmalloc/ChangeLog (258186 => 258187)


--- releases/WebKitGTK/webkit-2.28/Source/bmalloc/ChangeLog	2020-03-10 07:11:30 UTC (rev 258186)
+++ releases/WebKitGTK/webkit-2.28/Source/bmalloc/ChangeLog	2020-03-10 08:28:41 UTC (rev 258187)
@@ -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.
+
 2020-02-08  Basuke Suzuki  <[email protected]>
 
         [bmalloc] VMHeap can be merge into Heap

Modified: releases/WebKitGTK/webkit-2.28/Source/bmalloc/bmalloc/BPlatform.h (258186 => 258187)


--- releases/WebKitGTK/webkit-2.28/Source/bmalloc/bmalloc/BPlatform.h	2020-03-10 07:11:30 UTC (rev 258186)
+++ releases/WebKitGTK/webkit-2.28/Source/bmalloc/bmalloc/BPlatform.h	2020-03-10 08:28:41 UTC (rev 258187)
@@ -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

Reply via email to