Title: [258142] trunk/Source/bmalloc
Revision
258142
Author
[email protected]
Date
2020-03-09 08:25:18 -0700 (Mon, 09 Mar 2020)

Log Message

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: trunk/Source/bmalloc/ChangeLog (258141 => 258142)


--- trunk/Source/bmalloc/ChangeLog	2020-03-09 15:11:58 UTC (rev 258141)
+++ trunk/Source/bmalloc/ChangeLog	2020-03-09 15:25:18 UTC (rev 258142)
@@ -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-03-02  Alan Coon  <[email protected]>
 
         Add new Mac target numbers

Modified: trunk/Source/bmalloc/bmalloc/BPlatform.h (258141 => 258142)


--- trunk/Source/bmalloc/bmalloc/BPlatform.h	2020-03-09 15:11:58 UTC (rev 258141)
+++ trunk/Source/bmalloc/bmalloc/BPlatform.h	2020-03-09 15:25:18 UTC (rev 258142)
@@ -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