726616a8ef
--disable-registry has no dependency on libxml2 and should not be linked to BR2_PACKAGE_GSTREAMER_LIBXML2. If we want to disable registry then we should add another option. Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
34 lines
947 B
Makefile
34 lines
947 B
Makefile
#############################################################
|
|
#
|
|
# gstreamer
|
|
#
|
|
#############################################################
|
|
GSTREAMER_VERSION = 0.10.25
|
|
GSTREAMER_SOURCE = gstreamer-$(GSTREAMER_VERSION).tar.bz2
|
|
GSTREAMER_SITE = http://gstreamer.freedesktop.org/src/gstreamer
|
|
GSTREAMER_INSTALL_STAGING = YES
|
|
GSTREAMER_LIBTOOL_PATCH = NO
|
|
|
|
# Checking if unaligned memory access works correctly cannot be done when cross
|
|
# compiling. For the following architectures there is no information available
|
|
# in the configure script.
|
|
ifeq ($(BR2_avr32),y)
|
|
GSTREAMER_CONF_ENV = as_cv_unaligned_access=no
|
|
endif
|
|
|
|
GSTREAMER_CONF_OPT = \
|
|
--disable-examples \
|
|
--disable-tests \
|
|
--disable-failing-tests
|
|
|
|
GSTREAMER_DEPENDENCIES = libglib2 host-pkg-config
|
|
|
|
ifeq ($(BR2_PACKAGE_GSTREAMER_LIBXML2),y)
|
|
GSTREAMER_DEPENDENCIES += libxml2
|
|
else
|
|
GSTREAMER_CONF_OPT += \
|
|
--disable-loadsave
|
|
endif
|
|
|
|
$(eval $(call AUTOTARGETS,package/multimedia,gstreamer))
|