diff options
author | Arnar Mar SigurĂ°sson <antab@valka.is> | 2008-10-31 17:17:23 +0000 |
---|---|---|
committer | Arnar Mar SigurĂ°sson <antab@valka.is> | 2008-10-31 17:17:23 +0000 |
commit | f972f947d53ffecaf09999bf0a4931d81f13966f (patch) | |
tree | 0e6e733b96290b61eaa91596ceb86d376d75f9ee /package/qtopia4/qtopia4.mk | |
parent | 1830e8942fe3c90da4bcda14dcf926d65daa1286 (diff) | |
download | buildroot-novena-f972f947d53ffecaf09999bf0a4931d81f13966f.tar.gz buildroot-novena-f972f947d53ffecaf09999bf0a4931d81f13966f.zip |
Add options to select what gfx and mouse drivers are compiled in.
Note to tslib users: You now have to select the tslib mouse driver to build it.
Diffstat (limited to 'package/qtopia4/qtopia4.mk')
-rw-r--r-- | package/qtopia4/qtopia4.mk | 60 |
1 files changed, 58 insertions, 2 deletions
diff --git a/package/qtopia4/qtopia4.mk b/package/qtopia4/qtopia4.mk index de3bf4d2d..cadaaa661 100644 --- a/package/qtopia4/qtopia4.mk +++ b/package/qtopia4/qtopia4.mk @@ -65,12 +65,68 @@ else QTOPIA4_CONFIGURE+= -no-qt3support endif -ifeq ($(BR2_PACKAGE_TSLIB),y) -QTOPIA4_CONFIGURE+= -qt-mouse-tslib + +### Display drivers +ifeq ($(BR2_PACKAGE_QTOPIA4_GFX_LINUXFB),y) +QTOPIA4_CONFIGURE += -qt-gfx-linuxfb +else +QTOPIA4_CONFIGURE += -no-gfx-linuxfb +endif +ifeq ($(BR2_PACKAGE_QTOPIA4_GFX_TRANSFORMED),y) +QTOPIA4_CONFIGURE += -qt-gfx-transformed +else +QTOPIA4_CONFIGURE += -no-gfx-transformed +endif +ifeq ($(BR2_PACKAGE_QTOPIA4_GFX_QVFB),y) +QTOPIA4_CONFIGURE += -qt-gfx-qvfb +else +QTOPIA4_CONFIGURE += -no-gfx-qvfb +endif +ifeq ($(BR2_PACKAGE_QTOPIA4_GFX_VNC),y) +QTOPIA4_CONFIGURE += -qt-gfx-vnc +else +QTOPIA4_CONFIGURE += -no-gfx-vnc +endif +ifeq ($(BR2_PACKAGE_QTOPIA4_GFX_MULTISCREEN),y) +QTOPIA4_CONFIGURE += -qt-gfx-multiscreen +else +QTOPIA4_CONFIGURE += -no-gfx-multiscreen +endif + +### Mouse drivers +ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_PC),y) +QTOPIA4_CONFIGURE += qt-mouse-pc +else +QTOPIA4_CONFIGURE += -no-mouse-pc +endif +ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_BUS),y) +QTOPIA4_CONFIGURE += qt-mouse-bus +else +QTOPIA4_CONFIGURE += -no-mouse-bus +endif +ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_LINUXTP),y) +QTOPIA4_CONFIGURE += qt-mouse-linuxtp +else +QTOPIA4_CONFIGURE += -no-mouse-linuxtp +endif +ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_YOPY),y) +QTOPIA4_CONFIGURE += qt-mouse-yopy +else +QTOPIA4_CONFIGURE += -no-mouse-yopy +endif +ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_VR41XX),y) +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_DEP_LIBS+=tslib QTOPIA4_TSLIB_DEB="-D TSLIBMOUSEHANDLER_DEBUG" QTOPIA4_TSLIB_DEB:=$(strip $(subst ",, $(QTOPIA4_TSLIB_DEB))) #")) +else +QTOPIA4_CONFIGURE += -no-mouse-tslib endif ifeq ($(BR2_PACKAGE_QTOPIA4_DEBUG),y) |