Update buidlroot to version 2016.08.1
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
From 7af6cbe74d48a9853b60b029d4ce38a963386138 Mon Sep 17 00:00:00 2001
|
||||
From: Romain Naour <romain.naour@gmail.com>
|
||||
Date: Sun, 3 Jul 2016 20:19:48 +0200
|
||||
Subject: [PATCH] webrtc: C++11 is only required for WebRTC support
|
||||
|
||||
Make C++11 support optional and explicitely check for gnu++11.
|
||||
|
||||
Stop the build only if no C++11 support has been found and WebRTC
|
||||
support has been resquested.
|
||||
|
||||
Signed-off-by: Romain Naour <romain.naour@gmail.com>
|
||||
---
|
||||
configure.ac | 5 ++++-
|
||||
1 file changed, 4 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 4edc8e0..fea93a9 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -84,7 +84,7 @@ AM_PROG_CC_C_O
|
||||
# Only required if you want the WebRTC canceller -- no runtime dep on
|
||||
# libstdc++ otherwise
|
||||
AC_PROG_CXX
|
||||
-AX_CXX_COMPILE_STDCXX_11
|
||||
+AX_CXX_COMPILE_STDCXX_11([ext],[optional])
|
||||
AC_PROG_GCC_TRADITIONAL
|
||||
AC_USE_SYSTEM_EXTENSIONS
|
||||
|
||||
@@ -1414,6 +1414,9 @@ fi
|
||||
AC_ARG_ENABLE([webrtc-aec],
|
||||
AS_HELP_STRING([--enable-webrtc-aec], [Enable the optional WebRTC-based echo canceller]))
|
||||
|
||||
+AS_IF([test "x$enable_webrtc_aec" = "xyes" && test "$HAVE_CXX11" = "0"],
|
||||
+ [AC_MSG_ERROR([*** webrtc-audio-processing needs C++11 support])])
|
||||
+
|
||||
AS_IF([test "x$enable_webrtc_aec" != "xno"],
|
||||
[PKG_CHECK_MODULES(WEBRTC, [ webrtc-audio-processing >= 0.2 ], [HAVE_WEBRTC=1], [HAVE_WEBRTC=0])],
|
||||
[HAVE_WEBRTC=0])
|
||||
--
|
||||
2.5.5
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
# From http://freedesktop.org/software/pulseaudio/releases/pulseaudio-8.0.tar.xz.{md5,sha1}
|
||||
md5 8678442ba0bb4b4c33ac6f62542962df pulseaudio-8.0.tar.xz
|
||||
sha1 1399a2f6288ad743184b6c2192129fef033343ac pulseaudio-8.0.tar.xz
|
||||
# From http://freedesktop.org/software/pulseaudio/releases/pulseaudio-9.0.tar.xz.{md5,sha1}
|
||||
md5 da7162541b3a9bc20576dbd0d7d1489a pulseaudio-9.0.tar.xz
|
||||
sha1 d9a9d7cb667ed95ee1de4b6544d5c7444c5a0064 pulseaudio-9.0.tar.xz
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PULSEAUDIO_VERSION = 8.0
|
||||
PULSEAUDIO_VERSION = 9.0
|
||||
PULSEAUDIO_SOURCE = pulseaudio-$(PULSEAUDIO_VERSION).tar.xz
|
||||
PULSEAUDIO_SITE = http://freedesktop.org/software/pulseaudio/releases
|
||||
PULSEAUDIO_INSTALL_STAGING = YES
|
||||
@@ -18,9 +18,12 @@ PULSEAUDIO_CONF_OPTS = \
|
||||
# Make sure we don't detect libatomic_ops. Indeed, since pulseaudio
|
||||
# requires json-c, which needs 4 bytes __sync builtins, there should
|
||||
# be no need for pulseaudio to rely on libatomic_ops.
|
||||
PULSE_AUDIO_CONF_ENV += \
|
||||
PULSEAUDIO_CONF_ENV += \
|
||||
ac_cv_header_atomic_ops_h=no
|
||||
|
||||
# 0002-webrtc-C-11-is-only-required-for-WebRTC-support.patch
|
||||
PULSEAUDIO_AUTORECONF = YES
|
||||
|
||||
PULSEAUDIO_DEPENDENCIES = \
|
||||
host-pkgconf libtool json-c libsndfile speex host-intltool \
|
||||
$(if $(BR2_PACKAGE_LIBSAMPLERATE),libsamplerate) \
|
||||
@@ -31,7 +34,6 @@ PULSEAUDIO_DEPENDENCIES = \
|
||||
$(if $(BR2_PACKAGE_BLUEZ_UTILS),bluez_utils) \
|
||||
$(if $(BR2_PACKAGE_OPENSSL),openssl) \
|
||||
$(if $(BR2_PACKAGE_FFTW),fftw) \
|
||||
$(if $(BR2_PACKAGE_WEBRTC_AUDIO_PROCESSING),webrtc-audio-processing) \
|
||||
$(if $(BR2_PACKAGE_SYSTEMD),systemd)
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GDBM),y)
|
||||
@@ -79,25 +81,17 @@ PULSEAUDIO_CONF_OPTS += --without-soxr
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
|
||||
PULSEAUDIO_CONF_OPTS += --enable-libudev
|
||||
PULSEAUDIO_CONF_OPTS += --enable-udev
|
||||
PULSEAUDIO_DEPENDENCIES += udev
|
||||
else
|
||||
PULSEAUDIO_CONF_OPTS += --disable-libudev
|
||||
PULSEAUDIO_CONF_OPTS += --disable-udev
|
||||
endif
|
||||
|
||||
ifneq ($(BR2_INSTALL_LIBSTDCPP),y)
|
||||
# The optional webrtc echo canceller is written in C++, causing auto* to want
|
||||
# to link module-echo-cancel.so with CXX even if webrtc ISN'T used.
|
||||
# If we don't have C++ support enabled in BR, CXX will point to /bin/false,
|
||||
# which makes configure think we aren't able to create C++ .so files
|
||||
# (arguable true), breaking the build when it tries to install the .so
|
||||
# workaround it by patching up the libtool invocations to use C mode instead
|
||||
define PULSEAUDIO_FORCE_CC
|
||||
$(SED) 's/--tag=CXX/--tag=CC/g' -e 's/(CXXLD)/(CCLD)/g' \
|
||||
$(@D)/src/Makefile.in
|
||||
endef
|
||||
|
||||
PULSEAUDIO_POST_PATCH_HOOKS += PULSEAUDIO_FORCE_CC
|
||||
ifeq ($(BR2_PACKAGE_WEBRTC_AUDIO_PROCESSING),y)
|
||||
PULSEAUDIO_CONF_OPTS += --enable-webrtc-aec
|
||||
PULSEAUDIO_DEPENDENCIES += webrtc-audio-processing
|
||||
else
|
||||
PULSEAUDIO_CONF_OPTS += --disable-webrtc-aec
|
||||
endif
|
||||
|
||||
# neon intrinsics not available with float-abi=soft
|
||||
|
||||
Reference in New Issue
Block a user