Fixes for Qt from Markus Heidelberg

This commit is contained in:
Arnar Mar Sigurðsson 2008-11-02 02:16:53 +00:00
parent 057eca1834
commit 0138389b0b
5 changed files with 16 additions and 22 deletions

View File

@ -6,18 +6,14 @@ config BR2_PACKAGE_QTOPIA4_GFX_LINUXFB
config BR2_PACKAGE_QTOPIA4_GFX_TRANSFORMED config BR2_PACKAGE_QTOPIA4_GFX_TRANSFORMED
bool "Transformed" bool "Transformed"
default n
config BR2_PACKAGE_QTOPIA4_GFX_QVFB config BR2_PACKAGE_QTOPIA4_GFX_QVFB
bool "Qt Virtual Framebuffer" bool "Qt Virtual Framebuffer"
default n
config BR2_PACKAGE_QTOPIA4_GFX_VNC config BR2_PACKAGE_QTOPIA4_GFX_VNC
bool "VNC" bool "VNC"
default n
config BR2_PACKAGE_QTOPIA4_GFX_MULTISCREEN config BR2_PACKAGE_QTOPIA4_GFX_MULTISCREEN
bool "multiscreen" bool "multiscreen"
default y
endmenu endmenu

View File

@ -2,30 +2,23 @@ menu "Mouse drivers"
config BR2_PACKAGE_QTOPIA4_MOUSE_PC config BR2_PACKAGE_QTOPIA4_MOUSE_PC
bool "pc" bool "pc"
default n
config BR2_PACKAGE_QTOPIA4_MOUSE_BUS config BR2_PACKAGE_QTOPIA4_MOUSE_BUS
bool "bus" bool "bus"
default n
config BR2_PACKAGE_QTOPIA4_MOUSE_LINUXTP config BR2_PACKAGE_QTOPIA4_MOUSE_LINUXTP
bool "linuxtp" bool "linuxtp"
default n
config BR2_PACKAGE_QTOPIA4_MOUSE_YOPY config BR2_PACKAGE_QTOPIA4_MOUSE_YOPY
bool "yopy" bool "yopy"
default n
config BR2_PACKAGE_QTOPIA4_MOUSE_VR41XX config BR2_PACKAGE_QTOPIA4_MOUSE_VR41XX
bool "vxr41xx" bool "vr41xx"
default n
config BR2_PACKAGE_QTOPIA4_MOUSE_TSLIB config BR2_PACKAGE_QTOPIA4_MOUSE_TSLIB
bool "tslib" bool "tslib"
default n
config BR2_PACKAGE_QTOPIA4_MOUSE_QVFB config BR2_PACKAGE_QTOPIA4_MOUSE_QVFB
bool "qvfb" bool "qvfb"
default n
endmenu endmenu

View File

@ -95,32 +95,32 @@ endif
### Mouse drivers ### Mouse drivers
ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_PC),y) ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_PC),y)
QTOPIA4_CONFIGURE += qt-mouse-pc QTOPIA4_CONFIGURE += -qt-mouse-pc
else else
QTOPIA4_CONFIGURE += -no-mouse-pc QTOPIA4_CONFIGURE += -no-mouse-pc
endif endif
ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_BUS),y) ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_BUS),y)
QTOPIA4_CONFIGURE += qt-mouse-bus QTOPIA4_CONFIGURE += -qt-mouse-bus
else else
QTOPIA4_CONFIGURE += -no-mouse-bus QTOPIA4_CONFIGURE += -no-mouse-bus
endif endif
ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_LINUXTP),y) ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_LINUXTP),y)
QTOPIA4_CONFIGURE += qt-mouse-linuxtp QTOPIA4_CONFIGURE += -qt-mouse-linuxtp
else else
QTOPIA4_CONFIGURE += -no-mouse-linuxtp QTOPIA4_CONFIGURE += -no-mouse-linuxtp
endif endif
ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_YOPY),y) ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_YOPY),y)
QTOPIA4_CONFIGURE += qt-mouse-yopy QTOPIA4_CONFIGURE += -qt-mouse-yopy
else else
QTOPIA4_CONFIGURE += -no-mouse-yopy QTOPIA4_CONFIGURE += -no-mouse-yopy
endif endif
ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_VR41XX),y) ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_VR41XX),y)
QTOPIA4_CONFIGURE += qt-mouse-vr41xx QTOPIA4_CONFIGURE += -qt-mouse-vr41xx
else else
QTOPIA4_CONFIGURE += -no-mouse-vr41xx QTOPIA4_CONFIGURE += -no-mouse-vr41xx
endif endif
ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_TSLIB),y) ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_TSLIB),y)
QTOPIA4_CONFIGURE += qt-mouse-tslib QTOPIA4_CONFIGURE += -qt-mouse-tslib
QTOPIA4_DEP_LIBS+=tslib QTOPIA4_DEP_LIBS+=tslib
QTOPIA4_TSLIB_DEB="-D TSLIBMOUSEHANDLER_DEBUG" QTOPIA4_TSLIB_DEB="-D TSLIBMOUSEHANDLER_DEBUG"
QTOPIA4_TSLIB_DEB:=$(strip $(subst ",, $(QTOPIA4_TSLIB_DEB))) QTOPIA4_TSLIB_DEB:=$(strip $(subst ",, $(QTOPIA4_TSLIB_DEB)))
@ -128,6 +128,11 @@ QTOPIA4_TSLIB_DEB:=$(strip $(subst ",, $(QTOPIA4_TSLIB_DEB)))
else else
QTOPIA4_CONFIGURE += -no-mouse-tslib QTOPIA4_CONFIGURE += -no-mouse-tslib
endif 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) ifeq ($(BR2_PACKAGE_QTOPIA4_DEBUG),y)
QTOPIA4_CONFIGURE+= "-debug $(QTOPIA4_TSLIB_DEB)" QTOPIA4_CONFIGURE+= "-debug $(QTOPIA4_TSLIB_DEB)"