2008-12-08 18:48:31 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# gstreamer
|
|
|
|
#
|
|
|
|
#############################################################
|
2009-10-07 14:15:22 +02:00
|
|
|
GSTREAMER_VERSION = 0.10.25
|
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
|
2009-04-29 15:08:22 +02:00
|
|
|
GSTREAMER_LIBTOOL_PATCH = NO
|
2008-12-08 18:48:31 +01:00
|
|
|
|
|
|
|
# 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
|
|
|
|
ifeq ($(BR2_nios2),y)
|
|
|
|
GSTREAMER_CONF_ENV = as_cv_unaligned_access=no
|
|
|
|
endif
|
|
|
|
|
|
|
|
GSTREAMER_CONF_OPT = \
|
|
|
|
--disable-examples \
|
|
|
|
--disable-tests \
|
2009-01-18 01:05:57 +01:00
|
|
|
--disable-failing-tests
|
2008-12-08 18:48:31 +01:00
|
|
|
|
2009-06-16 22:33:56 +02:00
|
|
|
GSTREAMER_DEPENDENCIES = libglib2 host-pkgconfig
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_GSTREAMER_LIBXML2),y)
|
|
|
|
GSTREAMER_DEPENDENCIES += libxml2
|
|
|
|
else
|
|
|
|
GSTREAMER_CONF_OPT += \
|
|
|
|
--disable-registry \
|
|
|
|
--disable-loadsave
|
|
|
|
endif
|
2008-12-08 18:48:31 +01:00
|
|
|
|
|
|
|
$(eval $(call AUTOTARGETS,package/multimedia,gstreamer))
|