Title: [181793] trunk
- Revision
- 181793
- Author
- [email protected]
- Date
- 2015-03-20 02:23:40 -0700 (Fri, 20 Mar 2015)
Log Message
[GTK] Search for the Wayland dependency when enabling Wayland target
https://bugs.webkit.org/show_bug.cgi?id=142876
Reviewed by Carlos Garcia Campos.
* Source/cmake/OptionsGTK.cmake: The Wayland dependency isn't a public
requirement of either the GTK+ or GDK pkg-config files, so we have to
search for it ourselves when WebKitGTK+ has been configured to support
the Wayland windowing target.
Modified Paths
Diff
Modified: trunk/ChangeLog (181792 => 181793)
--- trunk/ChangeLog 2015-03-20 09:00:49 UTC (rev 181792)
+++ trunk/ChangeLog 2015-03-20 09:23:40 UTC (rev 181793)
@@ -1,3 +1,15 @@
+2015-03-20 Zan Dobersek <[email protected]>
+
+ [GTK] Search for the Wayland dependency when enabling Wayland target
+ https://bugs.webkit.org/show_bug.cgi?id=142876
+
+ Reviewed by Carlos Garcia Campos.
+
+ * Source/cmake/OptionsGTK.cmake: The Wayland dependency isn't a public
+ requirement of either the GTK+ or GDK pkg-config files, so we have to
+ search for it ourselves when WebKitGTK+ has been configured to support
+ the Wayland windowing target.
+
2015-03-20 Csaba Osztrogonác <[email protected]>
Unreviewed, kick the GTK bots to regenerate makefile.
Modified: trunk/Source/cmake/OptionsGTK.cmake (181792 => 181793)
--- trunk/Source/cmake/OptionsGTK.cmake 2015-03-20 09:00:49 UTC (rev 181792)
+++ trunk/Source/cmake/OptionsGTK.cmake 2015-03-20 09:23:40 UTC (rev 181793)
@@ -76,6 +76,10 @@
endif ()
endif ()
+if (ENABLE_WAYLAND_TARGET)
+ find_package(Wayland REQUIRED)
+endif ()
+
WEBKIT_OPTION_BEGIN()
WEBKIT_OPTION_DEFINE(ENABLE_PLUGIN_PROCESS_GTK2 "Whether to build WebKitPluginProcess2 to load GTK2 based plugins." ON)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes