Title: [248100] trunk/Source/ThirdParty/libwebrtc
Revision
248100
Author
commit-qu...@webkit.org
Date
2019-08-01 06:36:44 -0700 (Thu, 01 Aug 2019)

Log Message

Fix libwebrtc build with Linux 5.2 headers
https://bugs.webkit.org/show_bug.cgi?id=200342

Patch by Loïc Yhuel <loic.yh...@softathome.com> on 2019-08-01
Reviewed by Eric Carlson.

We need to include linux/sockios.h for SIOCGSTAMP.
Take upstream fix from https://bugs.chromium.org/p/webrtc/issues/detail?id=10677.

* Source/webrtc/rtc_base/physicalsocketserver.cc:

Modified Paths

Diff

Modified: trunk/Source/ThirdParty/libwebrtc/ChangeLog (248099 => 248100)


--- trunk/Source/ThirdParty/libwebrtc/ChangeLog	2019-08-01 11:46:07 UTC (rev 248099)
+++ trunk/Source/ThirdParty/libwebrtc/ChangeLog	2019-08-01 13:36:44 UTC (rev 248100)
@@ -1,3 +1,15 @@
+2019-08-01  Loïc Yhuel  <loic.yh...@softathome.com>
+
+        Fix libwebrtc build with Linux 5.2 headers
+        https://bugs.webkit.org/show_bug.cgi?id=200342
+
+        Reviewed by Eric Carlson.
+
+        We need to include linux/sockios.h for SIOCGSTAMP.
+        Take upstream fix from https://bugs.chromium.org/p/webrtc/issues/detail?id=10677.
+
+        * Source/webrtc/rtc_base/physicalsocketserver.cc:
+
 2019-07-31  Youenn Fablet  <you...@apple.com>
 
         ObjC RTCCVPixelBuffer should be prefixed to not conflict with other apps

Modified: trunk/Source/ThirdParty/libwebrtc/Source/webrtc/rtc_base/physicalsocketserver.cc (248099 => 248100)


--- trunk/Source/ThirdParty/libwebrtc/Source/webrtc/rtc_base/physicalsocketserver.cc	2019-08-01 11:46:07 UTC (rev 248099)
+++ trunk/Source/ThirdParty/libwebrtc/Source/webrtc/rtc_base/physicalsocketserver.cc	2019-08-01 13:36:44 UTC (rev 248100)
@@ -51,6 +51,10 @@
 #include "rtc_base/nullsocketserver.h"
 #include "rtc_base/timeutils.h"
 
+#if defined(WEBRTC_LINUX)
+#include <linux/sockios.h>
+#endif
+
 #if defined(WEBRTC_WIN)
 #define LAST_SYSTEM_ERROR (::GetLastError())
 #elif defined(__native_client__) && __native_client__
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to