From ae3e3d132523af866f183cf049f8302393ad6364 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Sun, 25 Jan 2009 20:19:06 +0000 Subject: qtopia4: fix and improve color/pixel depths config Also fix whitespace and use an existing variable for qmake.conf, which was forgotten in r23828, though it's only commented out. Signed-off-by: Markus Heidelberg --- package/qtopia4/Config.in | 46 ++++++++++++++++++++++++++++++++++++++++------ package/qtopia4/qtopia4.mk | 40 ++++++++++++++++++++++++++++++++++++++-- 2 files changed, 78 insertions(+), 8 deletions(-) diff --git a/package/qtopia4/Config.in b/package/qtopia4/Config.in index 2cd6e17b4..4809cb12a 100644 --- a/package/qtopia4/Config.in +++ b/package/qtopia4/Config.in @@ -86,12 +86,46 @@ config BR2_PACKAGE_QTOPIA4_QT3SUPPORT library with proxy code and increase the space required on target. If unsure say n. -config BR2_PACKAGE_QTOPIA4_DEPTHS - string "color depths to support" - default "-depths 24,16,8" - help - Which color depths to support for the library. Default is "-depths - 24,16,8". Different depths are specified by a comma separated list. +menu "Pixel depths" +comment "Deselecting each option leads to Qt's default (8,16,32)" + +config BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_ALL + bool "All supported depths" + +if !BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_ALL + +config BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_1 + bool "1 bpp, black/white" + +config BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_4 + bool "4 bpp, grayscale" + +config BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_8 + bool "8 bpp, paletted" + default y + +config BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_12 + bool "12 bpp, rgb 4-4-4" + +config BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_15 + bool "15 bpp, rgb 5-5-5" + +config BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_16 + bool "16 bpp, rgb 5-6-5" + default y + +config BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_18 + bool "18 bpp, rgb 6-6-6" + +config BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_24 + bool "24 bpp, rgb 8-8-8" + +config BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_32 + bool "32 bpp, argb 8-8-8-8 and rgb 8-8-8" + default y + +endif +endmenu config BR2_PACKAGE_QTOPIA4_GIF bool "Enable GIF support" diff --git a/package/qtopia4/qtopia4.mk b/package/qtopia4/qtopia4.mk index fd7cb8b1d..569966ed4 100644 --- a/package/qtopia4/qtopia4.mk +++ b/package/qtopia4/qtopia4.mk @@ -66,6 +66,42 @@ QTOPIA4_CONFIGURE+= -no-qt3support endif +### Pixel depths +ifeq ($(BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_ALL),y) +QTOPIA4_PIXEL_DEPTHS = all +else +ifeq ($(BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_1),y) +QTOPIA4_PIXEL_DEPTHS += 1 +endif +ifeq ($(BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_4),y) +QTOPIA4_PIXEL_DEPTHS += 4 +endif +ifeq ($(BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_8),y) +QTOPIA4_PIXEL_DEPTHS += 8 +endif +ifeq ($(BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_12),y) +QTOPIA4_PIXEL_DEPTHS += 12 +endif +ifeq ($(BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_15),y) +QTOPIA4_PIXEL_DEPTHS += 15 +endif +ifeq ($(BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_16),y) +QTOPIA4_PIXEL_DEPTHS += 16 +endif +ifeq ($(BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_18),y) +QTOPIA4_PIXEL_DEPTHS += 18 +endif +ifeq ($(BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_24),y) +QTOPIA4_PIXEL_DEPTHS += 24 +endif +ifeq ($(BR2_PACKAGE_QTOPIA4_PIXEL_DEPTH_32),y) +QTOPIA4_PIXEL_DEPTHS += 32 +endif +endif +ifneq ($(QTOPIA4_PIXEL_DEPTHS),) +QTOPIA4_CONFIGURE += -depths $(subst $(space),$(comma),$(strip $(QTOPIA4_PIXEL_DEPTHS))) +endif + ### Display drivers ifeq ($(BR2_PACKAGE_QTOPIA4_GFX_LINUXFB),y) QTOPIA4_CONFIGURE += -qt-gfx-linuxfb @@ -310,8 +346,8 @@ ifneq ($(BR2_INET_IPV6),y) $(SED) 's/^CFG_IPV6IFNAME=auto/CFG_IPV6IFNAME=no/' $(QTOPIA4_TARGET_DIR)/configure endif $(SED) 's/^CFG_XINERAMA=auto/CFG_XINERAMA=no/' $(QTOPIA4_TARGET_DIR)/configure - #$(SED) 's,-O2,$(TARGET_CFLAGS),' $(QTOPIA4_TARGET_DIR)/mkspecs/qws/linux-$(BR2_PACKAGE_QTOPIA4_EMB_PLATFORM)-g++/qmake.conf - # Fix compiler path + #$(SED) 's,-O2,$(TARGET_CFLAGS),' $(QTOPIA4_QMAKE_CONF) + # Fix compiler path $(SED) '\,QMAKE_CC[ ]*=, c\QMAKE_CC = $(TARGET_CC)' $(QTOPIA4_QMAKE_CONF) $(SED) '\,QMAKE_CXX[ ]*=, c\QMAKE_CXX = $(TARGET_CXX)' $(QTOPIA4_QMAKE_CONF) $(SED) '\,QMAKE_LINK[ ]*=, c\QMAKE_LINK = $(TARGET_CXX)' $(QTOPIA4_QMAKE_CONF) -- cgit v1.2.3