The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / gstreamer / gstreamer / gstreamer.mk
1 ################################################################################
2 #
3 # gstreamer
4 #
5 ################################################################################
6
7 GSTREAMER_VERSION = 0.10.36
8 GSTREAMER_SOURCE = gstreamer-$(GSTREAMER_VERSION).tar.xz
9 GSTREAMER_SITE = http://gstreamer.freedesktop.org/src/gstreamer
10 GSTREAMER_INSTALL_STAGING = YES
11
12 # Checking if unaligned memory access works correctly cannot be done when cross
13 # compiling. For the following architectures there is no information available
14 # in the configure script.
15 ifeq ($(BR2_arc)$(BR2_xtensa)$(BR2_microblaze),y)
16 GSTREAMER_CONF_ENV = as_cv_unaligned_access=no
17 endif
18 ifeq ($(BR2_aarch64),y)
19 GSTREAMER_CONF_ENV = as_cv_unaligned_access=yes
20 endif
21
22 GSTREAMER_CONF_OPTS = \
23         --disable-examples \
24         --disable-tests \
25         --disable-failing-tests \
26         --disable-loadsave \
27         $(if $(BR2_PACKAGE_GSTREAMER_GST_DEBUG),,--disable-gst-debug) \
28         $(if $(BR2_PACKAGE_GSTREAMER_PLUGIN_REGISTRY),,--disable-registry)
29
30 GSTREAMER_DEPENDENCIES = libglib2 host-pkgconf host-bison host-flex
31
32 $(eval $(autotools-package))