2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2008-12-08 18:48:31 +01:00
|
|
|
#
|
|
|
|
# gstreamer
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-06-06 01:53:25 +02:00
|
|
|
|
2012-03-14 18:24:58 +01:00
|
|
|
GSTREAMER_VERSION = 0.10.36
|
2008-12-08 18:48:31 +01:00
|
|
|
GSTREAMER_SOURCE = gstreamer-$(GSTREAMER_VERSION).tar.bz2
|
|
|
|
GSTREAMER_SITE = http://gstreamer.freedesktop.org/src/gstreamer
|
|
|
|
GSTREAMER_INSTALL_STAGING = YES
|
|
|
|
|
|
|
|
# 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
|
2013-01-06 07:14:02 +01:00
|
|
|
ifeq ($(BR2_aarch64),y)
|
|
|
|
GSTREAMER_CONF_ENV = as_cv_unaligned_access=yes
|
|
|
|
endif
|
2008-12-08 18:48:31 +01:00
|
|
|
|
|
|
|
GSTREAMER_CONF_OPT = \
|
|
|
|
--disable-examples \
|
|
|
|
--disable-tests \
|
2011-01-23 23:41:30 +01:00
|
|
|
--disable-failing-tests \
|
2011-09-27 11:52:50 +02:00
|
|
|
--disable-loadsave \
|
2012-11-26 02:26:04 +01:00
|
|
|
$(if $(BR2_PACKAGE_GSTREAMER_GST_DEBUG),,--disable-gst-debug) \
|
|
|
|
$(if $(BR2_PACKAGE_GSTREAMER_PLUGIN_REGISTRY),,--disable-registry)
|
2008-12-08 18:48:31 +01:00
|
|
|
|
2013-03-24 14:42:59 +01:00
|
|
|
GSTREAMER_DEPENDENCIES = libglib2 host-pkgconf host-bison host-flex
|
2009-06-16 22:33:56 +02:00
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|