update buildroot to 2017.02.11
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
From 81a929ac141aae66b6450e8ce93cb357ed404cda Mon Sep 17 00:00:00 2001
|
||||
From: Timo Gurr <timo.gurr@gmail.com>
|
||||
Date: Mon, 1 Jun 2015 16:10:16 +0200
|
||||
Subject: [PATCH] configure: Fix configure failure when building without
|
||||
gstreamer support
|
||||
|
||||
Error introduced in 20ea22e0a11a9bdfe4d8125b68083249b694338a, resulting in a
|
||||
configure/build error when building without gstreamer:
|
||||
|
||||
configure: error: conditional "HAVE_GST_CHECK" was never defined.
|
||||
Usually this means the macro was only invoked conditionally.
|
||||
|
||||
https://bugs.freedesktop.org/show_bug.cgi?id=90801
|
||||
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
---
|
||||
Patch status: upstream
|
||||
|
||||
configure.ac | 4 +---
|
||||
1 file changed, 1 insertion(+), 3 deletions(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 6031cec..64a571f 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -231,9 +231,6 @@ AS_IF([test "$with_gstreamer" != no], [
|
||||
[
|
||||
have_gst_check=no
|
||||
])
|
||||
-
|
||||
- AM_CONDITIONAL(HAVE_GST_CHECK, test "$have_gst_check" = yes)
|
||||
-
|
||||
])
|
||||
|
||||
AS_IF([test "$with_gstreamer010" != no], [
|
||||
@@ -260,6 +257,7 @@ AC_SUBST(gstplugindir)
|
||||
AC_SUBST(gstplugin010dir)
|
||||
|
||||
AM_CONDITIONAL(WITH_GSTREAMER, test "$with_gstreamer" = yes)
|
||||
+AM_CONDITIONAL(HAVE_GST_CHECK, test "$have_gst_check" = yes)
|
||||
AM_CONDITIONAL(WITH_GSTREAMER010, test "$with_gstreamer010" = yes)
|
||||
|
||||
GUPNP_IGD_REQUIRED=0.2.4
|
||||
--
|
||||
2.10.2
|
||||
|
||||
20
bsp/buildroot-2017.02.11/package/libnice/Config.in
Normal file
20
bsp/buildroot-2017.02.11/package/libnice/Config.in
Normal file
@@ -0,0 +1,20 @@
|
||||
config BR2_PACKAGE_LIBNICE
|
||||
bool "libnice"
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||
depends on BR2_USE_MMU # fork()
|
||||
help
|
||||
Libnice is an implementation of the IETF's Interactive
|
||||
Connectivity Establishment (ICE) standard (RFC 5245) and the
|
||||
Session Traversal Utilities for NAT (STUN) standard (RFC
|
||||
5389).
|
||||
|
||||
It provides a GLib-based library, libnice and a Glib-free
|
||||
library, libstun as well as GStreamer elements.
|
||||
|
||||
http://nice.freedesktop.org/wiki/
|
||||
|
||||
comment "libnice needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
2
bsp/buildroot-2017.02.11/package/libnice/libnice.hash
Normal file
2
bsp/buildroot-2017.02.11/package/libnice/libnice.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally computed after checking pgp signature
|
||||
sha256 61112d9f3be933a827c8365f20551563953af6718057928f51f487bfe88419e1 libnice-0.1.13.tar.gz
|
||||
19
bsp/buildroot-2017.02.11/package/libnice/libnice.mk
Normal file
19
bsp/buildroot-2017.02.11/package/libnice/libnice.mk
Normal file
@@ -0,0 +1,19 @@
|
||||
################################################################################
|
||||
#
|
||||
# libnice
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBNICE_VERSION = 0.1.13
|
||||
LIBNICE_SITE = http://nice.freedesktop.org/releases
|
||||
LIBNICE_LICENSE = MPLv1.1 or LGPLv2.1
|
||||
LIBNICE_LICENSE_FILES = COPYING COPYING.MPL COPYING.LGPL
|
||||
LIBNICE_DEPENDENCIES = libglib2 host-pkgconf
|
||||
LIBNICE_INSTALL_STAGING = YES
|
||||
# For 0001-configure-Fix-configure-failure-when-building-without-.patch
|
||||
LIBNICE_AUTORECONF = YES
|
||||
LIBNICE_CONF_OPTS = \
|
||||
--without-gstreamer \
|
||||
--without-gstreamer-0.10 \
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user