directfb: fixing typo in variables

Signed-off-by: Carsten Schoenert <c.schoenert@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Carsten Schoenert 2013-03-10 08:32:45 +00:00 committed by Peter Korsgaard
parent 6d1a1431d0
commit 9bff3c6525
2 changed files with 4 additions and 4 deletions

View File

@ -109,13 +109,13 @@ config BR2_PACKAGE_DIRECTFB_PNG
default y default y
select BR2_PACKAGE_LIBPNG select BR2_PACKAGE_LIBPNG
config BR2_PACKAGE_DIRECTB_DITHER_RGB16 config BR2_PACKAGE_DIRECTFB_DITHER_RGB16
bool "enable advanced dithering of RGB16 surfaces" bool "enable advanced dithering of RGB16 surfaces"
help help
Enable dithering when loading images to RGB16 surfaces. Enable dithering when loading images to RGB16 surfaces.
This increases the data section by 64 KBytes. This increases the data section by 64 KBytes.
config BR2_PACKAGE_DIRECTB_TESTS config BR2_PACKAGE_DIRECTFB_TESTS
bool "build directfb tests" bool "build directfb tests"
endif # BR2_PACKAGE_DIRECTFB endif # BR2_PACKAGE_DIRECTFB

View File

@ -108,13 +108,13 @@ else
DIRECTFB_CONF_OPT += --disable-jpeg DIRECTFB_CONF_OPT += --disable-jpeg
endif endif
ifeq ($(BR2_PACKAGE_DIRECTB_DITHER_RGB16),y) ifeq ($(BR2_PACKAGE_DIRECTFB_DITHER_RGB16),y)
DIRECTFB_CONF_OPT += --with-dither-rgb16=advanced DIRECTFB_CONF_OPT += --with-dither-rgb16=advanced
else else
DIRECTFB_CONF_OPT += --with-dither-rgb16=none DIRECTFB_CONF_OPT += --with-dither-rgb16=none
endif endif
ifeq ($(BR2_PACKAGE_DIRECTB_TESTS),y) ifeq ($(BR2_PACKAGE_DIRECTFB_TESTS),y)
DIRECTFB_CONF_OPT += --with-tests DIRECTFB_CONF_OPT += --with-tests
endif endif