Skip to content

Commit

Permalink
Merge r181793 - [GTK] Search for the Wayland dependency when enabling…
Browse files Browse the repository at this point in the history
… 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.
  • Loading branch information
zdobersek authored and carlosgcampos committed Mar 20, 2015
1 parent b26e9d6 commit c351e78
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
12 changes: 12 additions & 0 deletions ChangeLog
@@ -1,3 +1,15 @@
2015-03-20 Zan Dobersek <zdobersek@igalia.com>

[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-17 Carlos Garcia Campos <cgarcia@igalia.com>

Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.92 release.
Expand Down
4 changes: 4 additions & 0 deletions Source/cmake/OptionsGTK.cmake
Expand Up @@ -76,6 +76,10 @@ if (ENABLE_X11_TARGET)
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_OPTION_DEFINE(ENABLE_MINIBROWSER "Whether to enable MiniBrowser compilation." OFF)
Expand Down

0 comments on commit c351e78

Please sign in to comment.