From b26520ba9055f7101e01206f114c387d0ab157e2 Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Tue, 23 Jun 2009 13:47:14 +0200 Subject: directfb: bump version Closes #379 update DirectFB to version 1.4.0 A new stable version of DirectFB has been released upstream, http://directfb.org/index.php?path=Main%2FNews&entry=2009-06-04-1.niels Attached patch updates the DirectFB package and introduces a BR2 configuration option for the RGB16 dithering feature that is new in DirectFB 1.4.0. Signed-off-by: Sven Neumann Signed-off-by: Peter Korsgaard --- package/directfb/directfb.mk | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'package/directfb/directfb.mk') diff --git a/package/directfb/directfb.mk b/package/directfb/directfb.mk index a85564b46..282661591 100644 --- a/package/directfb/directfb.mk +++ b/package/directfb/directfb.mk @@ -3,11 +3,9 @@ # directfb # ############################################################# -DIRECTFB_VERSION_MAJOR:=1.2 -DIRECTFB_VERSION:=1.2.8 -#DIRECTFB_VERSION:=1.3.0 is a development version -#DIRECTFB_VERSION_MAJOR:=1.3 -DIRECTFB_SITE:=http://www.directfb.org/downloads/Core +DIRECTFB_VERSION_MAJOR:=1.4 +DIRECTFB_VERSION:=1.4.0 +DIRECTFB_SITE:=http://www.directfb.org/downloads/Core/DirectFB-$(DIRECTFB_VERSION_MAJOR) DIRECTFB_SOURCE:=DirectFB-$(DIRECTFB_VERSION).tar.gz DIRECTFB_AUTORECONF = NO DIRECTFB_LIBTOOL_PATCH = NO @@ -99,6 +97,12 @@ else DIRECTFB_JPEG:=--disable-jpeg endif +ifeq ($(BR2_PACKAGE_DIRECTB_DITHER_RGB16),y) +DIRECTFB_DITHER_RGB16:=--with-dither-rgb16=advanced +else +DIRECTFB_DITHER_RGB16:=--with-dither-rgb16=none +endif + DIRECTFB_CONF_OPT = \ --localstatedir=/var \ --with-gfxdrivers=$(DIRECTFB_GFX) \ @@ -112,6 +116,7 @@ DIRECTFB_CONF_OPT = \ $(DIRECTFB_PNG) \ $(DIRECTFB_GIF) \ $(DIRECTFB_UNIQUE) \ + $(DIRECTFB_DITHER_RGB16) \ --enable-linux-input \ --enable-zlib \ --enable-freetype \ -- cgit v1.2.3