From 16a424ae9088027e21cef7a1f25ddda806f19ab8 Mon Sep 17 00:00:00 2001 From: James Turner Date: Mon, 26 Sep 2011 09:56:29 +0100 Subject: [PATCH] Disable event-input by default on Linux, since libHAL is causing build/deployment issues on some Linux distributions. --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e1a6dcc7c..41478041a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -52,7 +52,8 @@ endif() IF(APPLE) set(EVENT_INPUT_DEFAULT 1) elseif(CMAKE_SYSTEM_NAME MATCHES "Linux") - set(EVENT_INPUT_DEFAULT 1) + # disabled while DBus / HAL / udev issues are decided + #set(EVENT_INPUT_DEFAULT 1) endif() find_package(Git)