Commit 0138389b authored by Arnar Mar Sigurðsson's avatar Arnar Mar Sigurðsson
Browse files

Fixes for Qt from Markus Heidelberg

parent 057eca18
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -6,18 +6,14 @@ config BR2_PACKAGE_QTOPIA4_GFX_LINUXFB

config BR2_PACKAGE_QTOPIA4_GFX_TRANSFORMED
	bool "Transformed"
	default n

config BR2_PACKAGE_QTOPIA4_GFX_QVFB
	bool "Qt Virtual Framebuffer"
	default n

config BR2_PACKAGE_QTOPIA4_GFX_VNC
	bool "VNC"
	default n

config BR2_PACKAGE_QTOPIA4_GFX_MULTISCREEN
	bool "multiscreen"
	default y

endmenu
+1 −8
Original line number Diff line number Diff line
@@ -2,30 +2,23 @@ menu "Mouse drivers"

config BR2_PACKAGE_QTOPIA4_MOUSE_PC
	bool "pc"
	default n

config BR2_PACKAGE_QTOPIA4_MOUSE_BUS
	bool "bus"
	default n

config BR2_PACKAGE_QTOPIA4_MOUSE_LINUXTP
	bool "linuxtp"
	default n

config BR2_PACKAGE_QTOPIA4_MOUSE_YOPY
	bool "yopy"
	default n

config BR2_PACKAGE_QTOPIA4_MOUSE_VR41XX
	bool "vxr41xx"
	default n
	bool "vr41xx"

config BR2_PACKAGE_QTOPIA4_MOUSE_TSLIB
	bool "tslib"
	default n

config BR2_PACKAGE_QTOPIA4_MOUSE_QVFB
	bool "qvfb"
	default n

endmenu
+11 −6
Original line number Diff line number Diff line
@@ -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)"
+1 −1

File changed.

Contains only whitespace changes.

+3 −3

File changed.

Contains only whitespace changes.