From mboxrd@z Thu Jan 1 00:00:00 1970 From: jean at iddad.fr Date: Wed, 29 Sep 2010 15:35:07 +0200 Subject: [Buildroot] [PATCH] Option to disable mouse cursor in QT Message-ID: <33739.1285767307@iddad.fr> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net Adds a configuration option to disable Mouse Cursor in QT. This is especially useful with touchscreens where we don't need a mouse cursor. Signed-off-by: Jean-Gregoire Foulon --- diff -ru buildroot-2010.08/package/qt/Config.in buildroot-2010.08-patched/package/qt/Config.in --- buildroot-2010.08/package/qt/Config.in 2010-08-31 23:07:06.000000000 +0100 +++ buildroot-2010.08-patched/package/qt/Config.in 2010-09-28 08:56:31.000000000 +0100 @@ -373,4 +373,12 @@ Build the Qt Script Tools module. if unsure, say n. +config BR2_PACKAGE_QT_CURSOR + bool "Mouse Cursor" + default y + help + Enables the mouse cursor. + If using a touchscreen, say n to prevent the cursor from being displayed. + + endif # BR2_PACKAGE_QT diff -ru buildroot-2010.08/package/qt/qt.mk buildroot-2010.08-patched/package/qt/qt.mk --- buildroot-2010.08/package/qt/qt.mk 2010-08-31 23:07:06.000000000 +0100 +++ buildroot-2010.08-patched/package/qt/qt.mk 2010-09-28 08:56:54.000000000 +0100 @@ -371,6 +371,12 @@ QT_CONFIGURE += -no-pch endif +ifeq ($(BR2_PACKAGE_QT_CURSOR),y) +QT_CONFIGURE+= -feature-CURSOR +else +QT_CONFIGURE+= -no-feature-CURSOR +endif + BR2_PACKAGE_QT_EMB_PLATFORM:=$(call qstrip,$(BR2_PACKAGE_QT_EMB_PLATFORM)) # x86x86fix