diff options
author | Arnar Mar SigurĂ°sson <antab@valka.is> | 2008-11-02 02:16:53 +0000 |
---|---|---|
committer | Arnar Mar SigurĂ°sson <antab@valka.is> | 2008-11-02 02:16:53 +0000 |
commit | 0138389b0b211312215fdd70c652d62cf6765edf (patch) | |
tree | be882724f31e418bcb076b1fd4af1f1b6813e002 /package/qtopia4/qtopia4.mk | |
parent | 057eca18342c90bb4a5cd550d7968d8019b8000b (diff) | |
download | buildroot-novena-0138389b0b211312215fdd70c652d62cf6765edf.tar.gz buildroot-novena-0138389b0b211312215fdd70c652d62cf6765edf.zip |
Fixes for Qt from Markus Heidelberg
Diffstat (limited to 'package/qtopia4/qtopia4.mk')
-rw-r--r-- | package/qtopia4/qtopia4.mk | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/package/qtopia4/qtopia4.mk b/package/qtopia4/qtopia4.mk index cadaaa661..8b0415f25 100644 --- a/package/qtopia4/qtopia4.mk +++ b/package/qtopia4/qtopia4.mk @@ -95,32 +95,32 @@ endif ### Mouse drivers ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_PC),y) -QTOPIA4_CONFIGURE += qt-mouse-pc +QTOPIA4_CONFIGURE += -qt-mouse-pc else QTOPIA4_CONFIGURE += -no-mouse-pc endif ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_BUS),y) -QTOPIA4_CONFIGURE += qt-mouse-bus +QTOPIA4_CONFIGURE += -qt-mouse-bus else QTOPIA4_CONFIGURE += -no-mouse-bus endif ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_LINUXTP),y) -QTOPIA4_CONFIGURE += qt-mouse-linuxtp +QTOPIA4_CONFIGURE += -qt-mouse-linuxtp else QTOPIA4_CONFIGURE += -no-mouse-linuxtp endif ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_YOPY),y) -QTOPIA4_CONFIGURE += qt-mouse-yopy +QTOPIA4_CONFIGURE += -qt-mouse-yopy else QTOPIA4_CONFIGURE += -no-mouse-yopy endif ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_VR41XX),y) -QTOPIA4_CONFIGURE += qt-mouse-vr41xx +QTOPIA4_CONFIGURE += -qt-mouse-vr41xx else QTOPIA4_CONFIGURE += -no-mouse-vr41xx endif ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_TSLIB),y) -QTOPIA4_CONFIGURE += qt-mouse-tslib +QTOPIA4_CONFIGURE += -qt-mouse-tslib QTOPIA4_DEP_LIBS+=tslib QTOPIA4_TSLIB_DEB="-D TSLIBMOUSEHANDLER_DEBUG" QTOPIA4_TSLIB_DEB:=$(strip $(subst ",, $(QTOPIA4_TSLIB_DEB))) @@ -128,6 +128,11 @@ QTOPIA4_TSLIB_DEB:=$(strip $(subst ",, $(QTOPIA4_TSLIB_DEB))) else QTOPIA4_CONFIGURE += -no-mouse-tslib endif +ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_QVFB),y) +QTOPIA4_CONFIGURE += -qt-mouse-qvfb +else +QTOPIA4_CONFIGURE += -no-mouse-qvfb +endif ifeq ($(BR2_PACKAGE_QTOPIA4_DEBUG),y) QTOPIA4_CONFIGURE+= "-debug $(QTOPIA4_TSLIB_DEB)" |