<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">diff --git Source/WebKit/NetworkProcess/NetworkLoadParameters.h Source/WebKit/NetworkProcess/NetworkLoadParameters.h
index de74d33a..fb021faa 100644
--- Source/WebKit/NetworkProcess/NetworkLoadParameters.h
+++ Source/WebKit/NetworkProcess/NetworkLoadParameters.h
@@ -35,6 +35,9 @@
 #include &lt;WebCore/SecurityOrigin.h&gt;
 #include &lt;wtf/ProcessID.h&gt;
 
+/* audit_token_t */
+#include &lt;mach/message.h&gt;
+
 namespace WebKit {
 
 enum class PreconnectOnly { No, Yes };
diff --git Source/WebKit/Platform/IPC/ArgumentCoders.h Source/WebKit/Platform/IPC/ArgumentCoders.h
index f1ea1ecb..12ceec79 100644
--- Source/WebKit/Platform/IPC/ArgumentCoders.h
+++ Source/WebKit/Platform/IPC/ArgumentCoders.h
@@ -34,6 +34,9 @@
 #include &lt;wtf/Unexpected.h&gt;
 #include &lt;wtf/WallTime.h&gt;
 
+/* audit_token_t */
+#include &lt;mach/message.h&gt;
+
 namespace IPC {
 
 // An argument coder works on POD types
diff --git Source/WebKit/Shared/SandboxExtension.h Source/WebKit/Shared/SandboxExtension.h
index 5839d3fc..6f110183 100644
--- Source/WebKit/Shared/SandboxExtension.h
+++ Source/WebKit/Shared/SandboxExtension.h
@@ -33,6 +33,9 @@
 #include &lt;wtf/Vector.h&gt;
 #include &lt;wtf/text/WTFString.h&gt;
 
+/* audit_token_t */
+#include &lt;mach/message.h&gt;
+
 namespace IPC {
 class Encoder;
 class Decoder;
diff --git Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp
index 57e8a557..45df4cf6 100644
--- ./Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp.orig	2019-11-22 04:57:54.000000000 -0800
+++ ./Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp	2019-11-27 05:52:39.000000000 -0800
@@ -354,9 +354,10 @@
         " &lt;/tbody&gt;&lt;/tr&gt;",
         webGLEnabled(request) ? "Yes" : "No");
 
+#if USE(GLX)
     auto glContext = GLContext::createOffscreenContext();
     glContext-&gt;makeContextCurrent();
-
+#endif
     g_string_append_printf(html,
         " &lt;tbody&gt;&lt;tr&gt;"
         "  &lt;td&gt;&lt;div class=\"titlename\"&gt;API&lt;/div&gt;&lt;/td&gt;"
@@ -370,7 +371,7 @@
         "  &lt;td&gt;%s&lt;/td&gt;"
         " &lt;/tbody&gt;&lt;/tr&gt;",
         nativeInterface());
-
+#if USE(GLX)
     g_string_append_printf(html,
         " &lt;tbody&gt;&lt;tr&gt;"
         "  &lt;td&gt;&lt;div class=\"titlename\"&gt;GL_RENDERER&lt;/div&gt;&lt;/td&gt;"
@@ -398,7 +399,6 @@
         "  &lt;td&gt;%s&lt;/td&gt;"
         " &lt;/tbody&gt;&lt;/tr&gt;",
         reinterpret_cast&lt;const char*&gt;(glGetString(GL_SHADING_LANGUAGE_VERSION)));
-
 #if USE(OPENGL_ES)
     g_string_append_printf(html,
         " &lt;tbody&gt;&lt;tr&gt;"
@@ -423,6 +423,7 @@
         extensions-&gt;str);
     g_string_free(extensions, TRUE);
 #endif
+#endif
 
     bool isGLX = false;
 #if USE(GLX)
</pre></body></html>