64c42c5e2c
Now that we do not override the automagic handling of include directories witbh aclocal, the missing m4 directories will be automatically created by aclocal itself. So we can drop of hooks. Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com> [yann.morin.1998@free.fr: slight rewording in the commit log] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
41 lines
1.3 KiB
Makefile
41 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# gst-fsl-plugins
|
|
#
|
|
################################################################################
|
|
|
|
GST_FSL_PLUGINS_VERSION = 4.0.3
|
|
GST_FSL_PLUGINS_SITE = $(FREESCALE_IMX_SITE)
|
|
|
|
# Most is LGPL-2.0+, but some sources are copied from upstream and are
|
|
# LGPL-2.1+, which essentially makes it LGPL-2.1+
|
|
GST_FSL_PLUGINS_LICENSE = LGPL-2.0+, LGPL-2.1+, PROPRIETARY (asf.h)
|
|
GST_FSL_PLUGINS_LICENSE_FILES = COPYING-LGPL-2.1 COPYING-LGPL-2
|
|
|
|
GST_FSL_PLUGINS_INSTALL_STAGING = YES
|
|
GST_FSL_PLUGINS_AUTORECONF = YES
|
|
|
|
GST_FSL_PLUGINS_DEPENDENCIES += host-pkgconf gstreamer gst-plugins-base \
|
|
imx-lib imx-parser imx-codec
|
|
|
|
ifeq ($(BR2_PACKAGE_FREESCALE_IMX_HAS_VPU),y)
|
|
GST_FSL_PLUGINS_DEPENDENCIES += imx-vpuwrap
|
|
endif
|
|
|
|
GST_FSL_PLUGINS_CONF_ENV = \
|
|
PLATFORM=$(BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM) \
|
|
CROSS_ROOT="$(STAGING_DIR)"
|
|
|
|
# needs access to imx-specific kernel headers
|
|
GST_FSL_PLUGINS_DEPENDENCIES += linux
|
|
GST_FSL_PLUGINS_CONF_ENV += CPPFLAGS="$(TARGET_CPPFLAGS) -idirafter $(LINUX_DIR)/include/uapi"
|
|
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBX11),y)
|
|
GST_FSL_PLUGINS_DEPENDENCIES += xlib_libX11
|
|
GST_FSL_PLUGINS_CONF_OPTS += --enable-x11
|
|
else
|
|
GST_FSL_PLUGINS_CONF_OPTS += --disable-x11
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|