Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
The configure script is correctly getting the CFLAGS needed to compile a plugin
for gstreamer and storing them in GST_BASE_CFLAGS but the Makefiles are never
making use of those.
We actually have to use AM_CPPFLAGS as AM_CFLAGS is used everywhere but on the
real compiling rule...
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---
src/Makefile.am | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/Makefile.am b/src/Makefile.am
index 8cb51d1..6af5d91 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -5,6 +5,8 @@
##############################################################################
plugin_LTLIBRARIES = libgstx170.la
+AM_CPPFLAGS = @GST_BASE_CFLAGS@
+
##############################################################################
# for the next set of variables, rename the prefix if you renamed the .la, #
# e.g. libgstplugin_la_SOURCES => libmysomething_la_SOURCES #
--
1.8.1.2

View File

@@ -0,0 +1,16 @@
config BR2_PACKAGE_GST_PLUGIN_X170
bool "gst-plugin-x170"
depends on BR2_arm926t
# glibc toolchain includes WCHAR and threading for libglib2
depends on BR2_TOOLCHAIN_USES_GLIBC # on2-8170-libs
depends on BR2_LINUX_KERNEL # on2-8170-libs
select BR2_PACKAGE_ON2_8170_LIBS
help
GStreamer plug-in to use the Hantro X170 video decoder present on
ATMEL AT91SAM9M10 SoC.
http://www.at91.com/linux4sam/bin/view/Linux4SAM/SAM9M10Gstreamer
comment "gst-plugin-x170 needs an (e)glibc toolchain and a Linux kernel to be built"
depends on BR2_arm926t
depends on !BR2_LINUX_KERNEL || !BR2_TOOLCHAIN_USES_GLIBC

View File

@@ -0,0 +1,18 @@
################################################################################
#
# gst-plugin-x170
#
################################################################################
GST_PLUGIN_X170_VERSION = 1.0
GST_PLUGIN_X170_SITE = ftp://ftp.linux4sam.org/pub/demo/linux4sam_1.9/codec
GST_PLUGIN_X170_LICENSE = BSD-1c
#A license file is included but it is just a placeholder
# There is no generated configure script in the tarball.
GST_PLUGIN_X170_AUTORECONF = YES
GST_PLUGIN_X170_AUTORECONF_OPTS = -Im4/
GST_PLUGIN_X170_DEPENDENCIES = gstreamer libglib2 on2-8170-libs
$(eval $(autotools-package))