[Buildroot] [PATCH v6] kodi: allow enablement of libamcodec as codec if selected

Thomas Petazzoni thomas.petazzoni at free-electrons.com
Sat Nov 5 16:12:03 UTC 2016


Hello,

On Sat,  5 Nov 2016 17:40:42 +0200, Dagg Stompler wrote:

> diff --git a/package/kodi/kodi.mk b/package/kodi/kodi.mk
> index e0361da..4682d3f 100644
> --- a/package/kodi/kodi.mk
> +++ b/package/kodi/kodi.mk
> @@ -113,6 +113,12 @@ KODI_DEPENDENCIES += imx-vpuwrap
>  KODI_CONF_OPTS += --enable-codec=imxvpu
>  endif
>  
> +ifeq ($(BR2_PACKAGE_LIBAMCODEC),y)
> +KODI_DEPENDENCIES += libamcodec
> +KODI_CONF_OPTS += --enable-codec=amcodec
> +KODI_CONF_ENV += INCLUDES="-I$(STAGING_DIR)/usr/include/amcodec"
> +endif

This is not good for two reasons:

 1. Because the Kodi Makefile for amcodec currently does
    -I$(prefix)/include, which will be detected by our paranoid wrapper
    as a bogus path because -I/usr/include is incorrect when
    cross-compiling.

 2. Because there are now two conditions that pass a INCLUDES= value in
    KODI_CONF_ENV, overwriting each other. Even if in practice they are
    mutually exclusive (you won't build amcodec support and RPi support
    in the same build), it is still dangerous.

Both of those problems were fixed by my proposal in your reply to your
PATCHv5, but for some reason you decided to not follow this proposal.

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com


More information about the buildroot mailing list