summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
authorRobin Burchell <robin.burchell@collabora.co.uk>2012-07-05 14:38:01 +0200
committerQt by Nokia <qt-info@nokia.com>2012-07-06 00:37:39 +0200
commit58e997b2d26a9d58533c7cae06217bdc0ab9aaef (patch)
treeed38648eaa6a0019d66c15e71fb4688384ff4c85 /config.tests
parent88c41f843953fb20a5716ee3ffd23e44a2a957b5 (diff)
android: Fix evdev configure test.
Android doesn't define a number of items in its input.h for MT, so don't test for them here. They will still work, they just need manual defines. Change-Id: I471f55b7c7f8950d2048e525119b2b36c8e9743b Reviewed-by: Girish Ramakrishnan <girish.1.ramakrishnan@nokia.com>
Diffstat (limited to 'config.tests')
-rw-r--r--config.tests/unix/evdev/evdev.cpp11
1 files changed, 4 insertions, 7 deletions
diff --git a/config.tests/unix/evdev/evdev.cpp b/config.tests/unix/evdev/evdev.cpp
index 3dddd60038..fdc65545a0 100644
--- a/config.tests/unix/evdev/evdev.cpp
+++ b/config.tests/unix/evdev/evdev.cpp
@@ -42,13 +42,10 @@
#include <linux/input.h>
enum {
- e1 = ABS_MT_POSITION_X,
- e2 = ABS_MT_TRACKING_ID,
- e3 = ABS_PRESSURE,
- e4 = ABS_X,
- e5 = REL_X,
- e6 = SYN_REPORT,
- e7 = SYN_MT_REPORT
+ e1 = ABS_PRESSURE,
+ e2 = ABS_X,
+ e3 = REL_X,
+ e4 = SYN_REPORT,
};
int main()