summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmre Ucan <eucan@de.adit-jv.com>2015-09-23 10:57:11 +0200
committerNobuhiko Tanibata <nobuhiko_tanibata@xddp.denso.co.jp>2015-09-24 11:26:34 +0900
commit357de0d1b604d0d2d940b1cc6e4ff44dcb212cf4 (patch)
treef5e6621693cbcc92aa03f42957d79b82b3307d50
parent0cf3f443163ebdadd880f9fce3fa1894f34836d8 (diff)
downloadwayland-ivi-extension-357de0d1b604d0d2d940b1cc6e4ff44dcb212cf4.tar.gz
protocol: update required wayland/weston version to 1.9
1. weston_seat interface is changed at version 1.9 and it is not compatible with 1.8 2. Surface clipping works in version 1.9 of weston. 3. Some bugfixes are landed in version 1.9. Signed-off-by: Emre Ucan <eucan@de.adit-jv.com> Signed-off-by: Nobuhiko Tanibata <ntanibata@jp.adit-jv.com>
-rw-r--r--protocol/CMakeLists.txt4
-rw-r--r--weston-ivi-shell/CMakeLists.txt4
2 files changed, 4 insertions, 4 deletions
diff --git a/protocol/CMakeLists.txt b/protocol/CMakeLists.txt
index 76918c1..6842131 100644
--- a/protocol/CMakeLists.txt
+++ b/protocol/CMakeLists.txt
@@ -22,8 +22,8 @@ cmake_minimum_required (VERSION 2.6)
project(ivi-extension-protocol)
find_package(PkgConfig REQUIRED)
-pkg_check_modules(WAYLAND_CLIENT wayland-client>=1.8.0 REQUIRED)
-pkg_check_modules(WAYLAND_SERVER wayland-server>=1.8.0 REQUIRED)
+pkg_check_modules(WAYLAND_CLIENT wayland-client>=1.9.0 REQUIRED)
+pkg_check_modules(WAYLAND_SERVER wayland-server>=1.9.0 REQUIRED)
find_program(WAYLAND_SCANNER_EXECUTABLE NAMES wayland-scanner)
diff --git a/weston-ivi-shell/CMakeLists.txt b/weston-ivi-shell/CMakeLists.txt
index a0e0022..c2664df 100644
--- a/weston-ivi-shell/CMakeLists.txt
+++ b/weston-ivi-shell/CMakeLists.txt
@@ -23,8 +23,8 @@ cmake_minimum_required (VERSION 2.6)
project(ivi-controller)
find_package(PkgConfig REQUIRED)
-pkg_check_modules(WAYLAND_SERVER wayland-server>=1.8.0 REQUIRED)
-pkg_check_modules(WESTON weston>=1.8.0 REQUIRED)
+pkg_check_modules(WAYLAND_SERVER wayland-server>=1.9.0 REQUIRED)
+pkg_check_modules(WESTON weston>=1.9.0 REQUIRED)
pkg_check_modules(PIXMAN pixman-1 REQUIRED)
GET_TARGET_PROPERTY(IVI_EXTENSION_INCLUDE_DIRS ivi-extension-protocol INCLUDE_DIRECTORIES)