Title: [260821] trunk
- Revision
- 260821
- Author
- [email protected]
- Date
- 2020-04-28 07:14:48 -0700 (Tue, 28 Apr 2020)
Log Message
[GStreamer][MediaStream] Doesn't build with GStreamer 1.10
https://bugs.webkit.org/show_bug.cgi?id=210271
Reviewed by Xabier Rodriguez-Calvar.
* Source/cmake/GStreamerChecks.cmake: Require at least GStreamer
1.12 when building with WebRTC/MediaStream enabled.
Modified Paths
Diff
Modified: trunk/ChangeLog (260820 => 260821)
--- trunk/ChangeLog 2020-04-28 13:09:22 UTC (rev 260820)
+++ trunk/ChangeLog 2020-04-28 14:14:48 UTC (rev 260821)
@@ -1,3 +1,13 @@
+2020-04-28 Philippe Normand <[email protected]>
+
+ [GStreamer][MediaStream] Doesn't build with GStreamer 1.10
+ https://bugs.webkit.org/show_bug.cgi?id=210271
+
+ Reviewed by Xabier Rodriguez-Calvar.
+
+ * Source/cmake/GStreamerChecks.cmake: Require at least GStreamer
+ 1.12 when building with WebRTC/MediaStream enabled.
+
2020-04-27 Philippe Normand <[email protected]>
[GTK] ENABLE(OPENGL) remmants...
Modified: trunk/Source/cmake/GStreamerChecks.cmake (260820 => 260821)
--- trunk/Source/cmake/GStreamerChecks.cmake 2020-04-28 13:09:22 UTC (rev 260820)
+++ trunk/Source/cmake/GStreamerChecks.cmake 2020-04-28 14:14:48 UTC (rev 260821)
@@ -42,6 +42,9 @@
endif ()
if (ENABLE_MEDIA_STREAM OR ENABLE_WEB_RTC)
+ if (PC_GSTREAMER_VERSION VERSION_LESS "1.12")
+ message(FATAL_ERROR "GStreamer 1.12 is needed for ENABLE_WEB_RTC.")
+ endif ()
SET_AND_EXPOSE_TO_BUILD(USE_LIBWEBRTC TRUE)
SET_AND_EXPOSE_TO_BUILD(WEBRTC_WEBKIT_BUILD TRUE)
else ()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes