updated on Wed Jan 25 16:08:47 UTC 2012
[aur-mirror.git] / unity-2d / disable-multitouch.patch
blobe527a2ef525faec9ca17c2083cb7f82929d4f126
1 diff -rNu unity-2d-4.12.0.orig/launcher/app/CMakeLists.txt unity-2d-4.12.0/launcher/app/CMakeLists.txt
2 --- unity-2d-4.12.0.orig/launcher/app/CMakeLists.txt 2011-10-25 21:39:29.365771562 +0200
3 +++ unity-2d-4.12.0/launcher/app/CMakeLists.txt 2011-10-25 21:40:30.965709225 +0200
4 @@ -1,5 +1,4 @@
5 # Dependencies
6 -pkg_check_modules(GEIS REQUIRED libutouch-geis)
7 pkg_check_modules(QTGCONF REQUIRED libqtgconf)
8 pkg_check_modules(DCONFQT REQUIRED dconf-qt)
10 @@ -8,14 +7,12 @@
11 visibilitycontroller.cpp
12 launcherview.cpp
13 launcherdbus.cpp
14 - gesturehandler.cpp
17 set(launcher_MOC_HDRS
18 visibilitycontroller.h
19 launcherview.h
20 launcherdbus.h
21 - gesturehandler.h
24 qt4_wrap_cpp(launcher_MOC_SRCS ${launcher_MOC_HDRS})
25 @@ -35,7 +32,6 @@
26 ${CMAKE_CURRENT_BINARY_DIR}
27 ${GTK_INCLUDE_DIRS}
28 ${X11_INCLUDE_DIRS}
29 - ${GEIS_INCLUDE_DIRS}
30 ${QTGCONF_INCLUDE_DIRS}
31 ${DCONFQT_INCLUDE_DIRS}
32 ${libunity-2d-private_SOURCE_DIR}/src
33 @@ -48,7 +44,6 @@
34 ${QT_QTDECLARATIVE_LIBRARIES}
35 ${GTK_LDFLAGS}
36 ${X11_LDFLAGS}
37 - ${GEIS_LDFLAGS}
38 ${QTGCONF_LDFLAGS}
39 ${DCONFQT_LDFLAGS}
40 unity-2d-private
41 diff -rNu unity-2d-4.12.0.orig/launcher/app/launcher.cpp unity-2d-4.12.0/launcher/app/launcher.cpp
42 --- unity-2d-4.12.0.orig/launcher/app/launcher.cpp 2011-10-25 21:39:29.365771562 +0200
43 +++ unity-2d-4.12.0/launcher/app/launcher.cpp 2011-10-25 21:39:56.654300950 +0200
44 @@ -40,7 +40,6 @@
45 #include "visibilitycontroller.h"
46 #include "unity2ddebug.h"
47 #include "unity2dpanel.h"
48 -#include "gesturehandler.h"
50 // libc
51 #include <stdlib.h>
52 @@ -140,10 +139,6 @@
53 For a discussion, see https://bugs.launchpad.net/upicek/+bug/684160. */
54 unsetenv("DESKTOP_AUTOSTART_ID");
56 - /* Gesture handler instance in charge of listening to gesture events and
57 - trigger appropriate actions in response. */
58 - GestureHandler gestureHandler(&panel);
60 return application.exec();