mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 13:46:32 +00:00
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"
|
bool "enable GIF support"
|
||||||
default y
|
default y
|
||||||
|
|
||||||
|
config BR2_PACKAGE_DIRECTFB_IMLIB2
|
||||||
|
bool "enable IMLIB2 support"
|
||||||
|
select BR2_PACKAGE_IMLIB2
|
||||||
|
|
||||||
config BR2_PACKAGE_DIRECTFB_JPEG
|
config BR2_PACKAGE_DIRECTFB_JPEG
|
||||||
bool "enable JPEG support"
|
bool "enable JPEG support"
|
||||||
default y
|
default y
|
||||||
|
@ -108,6 +108,14 @@ else
|
|||||||
DIRECTFB_CONF_OPT += --disable-jpeg
|
DIRECTFB_CONF_OPT += --disable-jpeg
|
||||||
endif
|
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)
|
ifeq ($(BR2_PACKAGE_DIRECTFB_DITHER_RGB16),y)
|
||||||
DIRECTFB_CONF_OPT += --with-dither-rgb16=advanced
|
DIRECTFB_CONF_OPT += --with-dither-rgb16=advanced
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user