From 1be27c28bfe0401dc5bb418a1b478db7cb0645f1 Mon Sep 17 00:00:00 2001 From: Simon Fels Date: Mon, 19 Jun 2017 21:39:34 +0200 Subject: [PATCH] Disable mir support as it is broken with latest landings in Ubuntu 16.04 --- CMakeLists.txt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c6432a1c..c20ebf75 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -69,10 +69,12 @@ pkg_check_modules(DBUS_CPP dbus-cpp REQUIRED) pkg_check_modules(DBUS dbus-1 REQUIRED) pkg_check_modules(LXC lxc REQUIRED) pkg_check_modules(PROPERTIES_CPP properties-cpp REQUIRED) -pkg_check_modules(MIRCLIENT mirclient) -if (MIRCLIENT_FOUND) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DMIR_SUPPORT") -endif() +# FIXME mir support is currently broken due to mir's API +# being broken with recent landings in Ubuntu 16.04 +# pkg_check_modules(MIRCLIENT mirclient) +# if (MIRCLIENT_FOUND) +# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DMIR_SUPPORT") +# endif() ##################################################################### # Enable code coverage calculation with gcov/gcovr/lcov -- GitLab