directfb: add optional imlib2 support
[Peter: drop default y] Signed-off-by: Markos Chandras <markos.chandras@imgtec.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
bf3e314efb
commit
8837887727
@ -100,6 +100,10 @@ config BR2_PACKAGE_DIRECTFB_GIF
|
||||
bool "enable GIF support"
|
||||
default y
|
||||
|
||||
config BR2_PACKAGE_DIRECTFB_IMLIB2
|
||||
bool "enable IMLIB2 support"
|
||||
select BR2_PACKAGE_IMLIB2
|
||||
|
||||
config BR2_PACKAGE_DIRECTFB_JPEG
|
||||
bool "enable JPEG support"
|
||||
default y
|
||||
|
@ -108,6 +108,14 @@ else
|
||||
DIRECTFB_CONF_OPT += --disable-jpeg
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DIRECTFB_IMLIB2),y)
|
||||
DIRECTFB_CONF_OPT += --enable-imlib2
|
||||
DIRECTFB_DEPENDENCIES += imlib2
|
||||
DIRECTFB_CONF_ENV += ac_cv_path_IMLIB2_CONFIG=$(STAGING_DIR)/usr/bin/imlib2-config
|
||||
else
|
||||
DIRECTFB_CONF_OPT += --disable-imlib2
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DIRECTFB_DITHER_RGB16),y)
|
||||
DIRECTFB_CONF_OPT += --with-dither-rgb16=advanced
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user