All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/4] package/webrtc-audio-processing: needs gcc >= 4.8
@ 2016-07-03 22:32 Romain Naour
  2016-07-03 22:32 ` [Buildroot] [PATCH 2/4] package/pulseaudio: allow to build without C++11 support Romain Naour
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Romain Naour @ 2016-07-03 22:32 UTC (permalink / raw)
  To: buildroot

Webrtc-audio-processing require a C++11 compiler

Fixes:
http://autobuild.buildroot.net/results/729/729cd0039ac172cfe31a4325bad902e9a14e146f

Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
 package/webrtc-audio-processing/Config.in | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/webrtc-audio-processing/Config.in b/package/webrtc-audio-processing/Config.in
index f228bc7..7c69903 100644
--- a/package/webrtc-audio-processing/Config.in
+++ b/package/webrtc-audio-processing/Config.in
@@ -2,6 +2,7 @@ config BR2_PACKAGE_WEBRTC_AUDIO_PROCESSING
 	bool "webrtc-audio-processing"
 	depends on BR2_arm || BR2_i386 || BR2_x86_64
 	depends on BR2_INSTALL_LIBSTDCPP
+	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
 	depends on BR2_TOOLCHAIN_HAS_THREADS
 	help
 	  AudioProcessing library based on Google's implementation of
@@ -9,6 +10,7 @@ config BR2_PACKAGE_WEBRTC_AUDIO_PROCESSING
 
 	  http://freedesktop.org/software/pulseaudio/webrtc-audio-processing/
 
-comment "webrtc-audio-processing needs a toolchain w/ C++, threads"
+comment "webrtc-audio-processing needs a toolchain w/ C++, threads, gcc >= 4.8"
 	depends on BR2_arm || BR2_i386 || BR2_x86_64
-	depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_HAS_THREADS)
+	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \
+		|| !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
-- 
2.5.5

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 2/4] package/pulseaudio: allow to build without C++11 support
  2016-07-03 22:32 [Buildroot] [PATCH 1/4] package/webrtc-audio-processing: needs gcc >= 4.8 Romain Naour
@ 2016-07-03 22:32 ` Romain Naour
  2016-07-03 22:50   ` Yann E. MORIN
  2016-07-03 22:32 ` [Buildroot] [PATCH 3/4] package/pulseaudio: add WebRTC optional dependency Romain Naour
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 9+ messages in thread
From: Romain Naour @ 2016-07-03 22:32 UTC (permalink / raw)
  To: buildroot

C++11 support is only required for WebRTC optional support but
pulseaudio can still be built with toolchains based on gcc 4.7 or older
witch doesn't have it.

Add a patch to make C++11 support optional and explicitely check for
gnu++11. Also stop the build only if no C++11 support has been found
and WebRTC support has been resquested.

Fixes:
http://autobuild.buildroot.net/results/d89/d897a94a8b6a52eba03d04c24536f554a7643000

Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
 ...-C-11-is-only-required-for-WebRTC-support.patch | 45 ++++++++++++++++++++++
 package/pulseaudio/pulseaudio.mk                   |  3 ++
 2 files changed, 48 insertions(+)
 create mode 100644 package/pulseaudio/0002-webrtc-C-11-is-only-required-for-WebRTC-support.patch

diff --git a/package/pulseaudio/0002-webrtc-C-11-is-only-required-for-WebRTC-support.patch b/package/pulseaudio/0002-webrtc-C-11-is-only-required-for-WebRTC-support.patch
new file mode 100644
index 0000000..143d73b
--- /dev/null
+++ b/package/pulseaudio/0002-webrtc-C-11-is-only-required-for-WebRTC-support.patch
@@ -0,0 +1,45 @@
+From f9691b5f0aed2ffbaac82513b8baa7e3e357c2c1 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 | 8 +++++---
+ 1 file changed, 5 insertions(+), 3 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 4edc8e0..65a386a 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -81,10 +81,9 @@ AC_PROG_LN_S
+ 
+ AC_PROG_CC
+ AM_PROG_CC_C_O
+-# Only required if you want the WebRTC canceller -- no runtime dep on
+-# libstdc++ otherwise
++# C++11 is only required if you want the WebRTC canceller -- no runtime dep on
+ 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 +1413,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
+
diff --git a/package/pulseaudio/pulseaudio.mk b/package/pulseaudio/pulseaudio.mk
index f50ea67..bc95d91 100644
--- a/package/pulseaudio/pulseaudio.mk
+++ b/package/pulseaudio/pulseaudio.mk
@@ -21,6 +21,9 @@ PULSEAUDIO_CONF_OPTS = \
 PULSE_AUDIO_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) \
-- 
2.5.5

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 3/4] package/pulseaudio: add WebRTC optional dependency
  2016-07-03 22:32 [Buildroot] [PATCH 1/4] package/webrtc-audio-processing: needs gcc >= 4.8 Romain Naour
  2016-07-03 22:32 ` [Buildroot] [PATCH 2/4] package/pulseaudio: allow to build without C++11 support Romain Naour
@ 2016-07-03 22:32 ` Romain Naour
  2016-07-03 22:54   ` Yann E. MORIN
  2016-07-03 22:32 ` [Buildroot] [PATCH 4/4] package/puseaudio: fix typo Romain Naour
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 9+ messages in thread
From: Romain Naour @ 2016-07-03 22:32 UTC (permalink / raw)
  To: buildroot

WebRTC is an optional pulseaudio dependency which require C++11
support in the toolchain. Also the autotool script provide
--enable/--disable option for this support, so use them in
pulseaudio.mk.

Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
 package/pulseaudio/pulseaudio.mk | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/package/pulseaudio/pulseaudio.mk b/package/pulseaudio/pulseaudio.mk
index bc95d91..9ef11bc 100644
--- a/package/pulseaudio/pulseaudio.mk
+++ b/package/pulseaudio/pulseaudio.mk
@@ -34,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)
@@ -88,6 +87,13 @@ else
 PULSEAUDIO_CONF_OPTS += --disable-udev
 endif
 
+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
+
 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.
-- 
2.5.5

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 4/4] package/puseaudio: fix typo
  2016-07-03 22:32 [Buildroot] [PATCH 1/4] package/webrtc-audio-processing: needs gcc >= 4.8 Romain Naour
  2016-07-03 22:32 ` [Buildroot] [PATCH 2/4] package/pulseaudio: allow to build without C++11 support Romain Naour
  2016-07-03 22:32 ` [Buildroot] [PATCH 3/4] package/pulseaudio: add WebRTC optional dependency Romain Naour
@ 2016-07-03 22:32 ` Romain Naour
  2016-07-03 22:39   ` Yann E. MORIN
  2016-07-03 22:43 ` [Buildroot] [PATCH 1/4] package/webrtc-audio-processing: needs gcc >= 4.8 Yann E. MORIN
  2016-07-03 23:17 ` Peter Korsgaard
  4 siblings, 1 reply; 9+ messages in thread
From: Romain Naour @ 2016-07-03 22:32 UTC (permalink / raw)
  To: buildroot

commit 7290dc1e87b23fe21c75c50b2238004273a0ec5c added
PULSE_AUDIO_CONF_ENV instead of PULSEAUDIO_CONF_ENV.

Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
 package/pulseaudio/pulseaudio.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/pulseaudio/pulseaudio.mk b/package/pulseaudio/pulseaudio.mk
index 9ef11bc..e0d9ab4 100644
--- a/package/pulseaudio/pulseaudio.mk
+++ b/package/pulseaudio/pulseaudio.mk
@@ -18,7 +18,7 @@ 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
-- 
2.5.5

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 4/4] package/puseaudio: fix typo
  2016-07-03 22:32 ` [Buildroot] [PATCH 4/4] package/puseaudio: fix typo Romain Naour
@ 2016-07-03 22:39   ` Yann E. MORIN
  0 siblings, 0 replies; 9+ messages in thread
From: Yann E. MORIN @ 2016-07-03 22:39 UTC (permalink / raw)
  To: buildroot

Romain, All,

On 2016-07-04 00:32 +0200, Romain Naour spake thusly:
> commit 7290dc1e87b23fe21c75c50b2238004273a0ec5c added
> PULSE_AUDIO_CONF_ENV instead of PULSEAUDIO_CONF_ENV.
> 
> Signed-off-by: Romain Naour <romain.naour@gmail.com>

Meh...

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/pulseaudio/pulseaudio.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/pulseaudio/pulseaudio.mk b/package/pulseaudio/pulseaudio.mk
> index 9ef11bc..e0d9ab4 100644
> --- a/package/pulseaudio/pulseaudio.mk
> +++ b/package/pulseaudio/pulseaudio.mk
> @@ -18,7 +18,7 @@ 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
> -- 
> 2.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 1/4] package/webrtc-audio-processing: needs gcc >= 4.8
  2016-07-03 22:32 [Buildroot] [PATCH 1/4] package/webrtc-audio-processing: needs gcc >= 4.8 Romain Naour
                   ` (2 preceding siblings ...)
  2016-07-03 22:32 ` [Buildroot] [PATCH 4/4] package/puseaudio: fix typo Romain Naour
@ 2016-07-03 22:43 ` Yann E. MORIN
  2016-07-03 23:17 ` Peter Korsgaard
  4 siblings, 0 replies; 9+ messages in thread
From: Yann E. MORIN @ 2016-07-03 22:43 UTC (permalink / raw)
  To: buildroot

Romain, All,

On 2016-07-04 00:32 +0200, Romain Naour spake thusly:
> Webrtc-audio-processing require a C++11 compiler
> 
> Fixes:
> http://autobuild.buildroot.net/results/729/729cd0039ac172cfe31a4325bad902e9a14e146f
> 
> Signed-off-by: Romain Naour <romain.naour@gmail.com>

Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/webrtc-audio-processing/Config.in | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/package/webrtc-audio-processing/Config.in b/package/webrtc-audio-processing/Config.in
> index f228bc7..7c69903 100644
> --- a/package/webrtc-audio-processing/Config.in
> +++ b/package/webrtc-audio-processing/Config.in
> @@ -2,6 +2,7 @@ config BR2_PACKAGE_WEBRTC_AUDIO_PROCESSING
>  	bool "webrtc-audio-processing"
>  	depends on BR2_arm || BR2_i386 || BR2_x86_64
>  	depends on BR2_INSTALL_LIBSTDCPP
> +	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
>  	depends on BR2_TOOLCHAIN_HAS_THREADS
>  	help
>  	  AudioProcessing library based on Google's implementation of
> @@ -9,6 +10,7 @@ config BR2_PACKAGE_WEBRTC_AUDIO_PROCESSING
>  
>  	  http://freedesktop.org/software/pulseaudio/webrtc-audio-processing/
>  
> -comment "webrtc-audio-processing needs a toolchain w/ C++, threads"
> +comment "webrtc-audio-processing needs a toolchain w/ C++, threads, gcc >= 4.8"
>  	depends on BR2_arm || BR2_i386 || BR2_x86_64
> -	depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_HAS_THREADS)
> +	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \
> +		|| !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
> -- 
> 2.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 2/4] package/pulseaudio: allow to build without C++11 support
  2016-07-03 22:32 ` [Buildroot] [PATCH 2/4] package/pulseaudio: allow to build without C++11 support Romain Naour
@ 2016-07-03 22:50   ` Yann E. MORIN
  0 siblings, 0 replies; 9+ messages in thread
From: Yann E. MORIN @ 2016-07-03 22:50 UTC (permalink / raw)
  To: buildroot

Romain, All,

On 2016-07-04 00:32 +0200, Romain Naour spake thusly:
> C++11 support is only required for WebRTC optional support but
> pulseaudio can still be built with toolchains based on gcc 4.7 or older
> witch doesn't have it.
> 
> Add a patch to make C++11 support optional and explicitely check for
> gnu++11. Also stop the build only if no C++11 support has been found
> and WebRTC support has been resquested.
> 
> Fixes:
> http://autobuild.buildroot.net/results/d89/d897a94a8b6a52eba03d04c24536f554a7643000
> 
> Signed-off-by: Romain Naour <romain.naour@gmail.com>
> ---
>  ...-C-11-is-only-required-for-WebRTC-support.patch | 45 ++++++++++++++++++++++
>  package/pulseaudio/pulseaudio.mk                   |  3 ++
>  2 files changed, 48 insertions(+)
>  create mode 100644 package/pulseaudio/0002-webrtc-C-11-is-only-required-for-WebRTC-support.patch
> 
> diff --git a/package/pulseaudio/0002-webrtc-C-11-is-only-required-for-WebRTC-support.patch b/package/pulseaudio/0002-webrtc-C-11-is-only-required-for-WebRTC-support.patch
> new file mode 100644
> index 0000000..143d73b
> --- /dev/null
> +++ b/package/pulseaudio/0002-webrtc-C-11-is-only-required-for-WebRTC-support.patch
> @@ -0,0 +1,45 @@
> +From f9691b5f0aed2ffbaac82513b8baa7e3e357c2c1 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 | 8 +++++---
> + 1 file changed, 5 insertions(+), 3 deletions(-)
> +
> +diff --git a/configure.ac b/configure.ac
> +index 4edc8e0..65a386a 100644
> +--- a/configure.ac
> ++++ b/configure.ac
> +@@ -81,10 +81,9 @@ AC_PROG_LN_S
> + 
> + AC_PROG_CC
> + AM_PROG_CC_C_O
> +-# Only required if you want the WebRTC canceller -- no runtime dep on
> +-# libstdc++ otherwise

You've been a little bit over-zealous: that last line you remove is
still needed. ;-)

> ++# C++11 is only required if you want the WebRTC canceller -- no runtime dep on
> + AC_PROG_CXX
> +-AX_CXX_COMPILE_STDCXX_11
> ++AX_CXX_COMPILE_STDCXX_11(ext,optional)

Syntax for paramters to m4 macros are to be double-quoted:

    AX_CXX_COMPILE_STDCXX_11([ext],[optional])

Otherwise, looks good.

Regards,
Yann E. MORIN.

> + AC_PROG_GCC_TRADITIONAL
> + AC_USE_SYSTEM_EXTENSIONS
> + 
> +@@ -1414,6 +1413,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
> +
> diff --git a/package/pulseaudio/pulseaudio.mk b/package/pulseaudio/pulseaudio.mk
> index f50ea67..bc95d91 100644
> --- a/package/pulseaudio/pulseaudio.mk
> +++ b/package/pulseaudio/pulseaudio.mk
> @@ -21,6 +21,9 @@ PULSEAUDIO_CONF_OPTS = \
>  PULSE_AUDIO_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) \
> -- 
> 2.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 3/4] package/pulseaudio: add WebRTC optional dependency
  2016-07-03 22:32 ` [Buildroot] [PATCH 3/4] package/pulseaudio: add WebRTC optional dependency Romain Naour
@ 2016-07-03 22:54   ` Yann E. MORIN
  0 siblings, 0 replies; 9+ messages in thread
From: Yann E. MORIN @ 2016-07-03 22:54 UTC (permalink / raw)
  To: buildroot

Romain, All,

On 2016-07-04 00:32 +0200, Romain Naour spake thusly:
> WebRTC is an optional pulseaudio dependency which require C++11
> support in the toolchain.

This change has nothing to do with the c++11 support, has it?

> Also the autotool script provide
> --enable/--disable option for this support, so use them in
> pulseaudio.mk.

I would rephrase that commit log such as;

    package/pulseaudio: explicitly enable/disable WebRTC support

    Currently, pulseaudio optionally depends on webrtc if it is enabled.

    However, it is never explcitly enabled or disabled, although
    pulseaudio's ./configure has --enable/disable-webrtc-aec.

    Forcibly enable/disable webrtc support usign those options.

    Signed-off-by: You
    Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

(You can keep my reviewd-by tag when you respin)

Regards,
Yann E. MORIN.

> Signed-off-by: Romain Naour <romain.naour@gmail.com>
> ---
>  package/pulseaudio/pulseaudio.mk | 8 +++++++-
>  1 file changed, 7 insertions(+), 1 deletion(-)
> 
> diff --git a/package/pulseaudio/pulseaudio.mk b/package/pulseaudio/pulseaudio.mk
> index bc95d91..9ef11bc 100644
> --- a/package/pulseaudio/pulseaudio.mk
> +++ b/package/pulseaudio/pulseaudio.mk
> @@ -34,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)
> @@ -88,6 +87,13 @@ else
>  PULSEAUDIO_CONF_OPTS += --disable-udev
>  endif
>  
> +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
> +
>  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.
> -- 
> 2.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 1/4] package/webrtc-audio-processing: needs gcc >= 4.8
  2016-07-03 22:32 [Buildroot] [PATCH 1/4] package/webrtc-audio-processing: needs gcc >= 4.8 Romain Naour
                   ` (3 preceding siblings ...)
  2016-07-03 22:43 ` [Buildroot] [PATCH 1/4] package/webrtc-audio-processing: needs gcc >= 4.8 Yann E. MORIN
@ 2016-07-03 23:17 ` Peter Korsgaard
  4 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2016-07-03 23:17 UTC (permalink / raw)
  To: buildroot

>>>>> "Romain" == Romain Naour <romain.naour@gmail.com> writes:

 > Webrtc-audio-processing require a C++11 compiler
 > Fixes:
 > http://autobuild.buildroot.net/results/729/729cd0039ac172cfe31a4325bad902e9a14e146f

 > Signed-off-by: Romain Naour <romain.naour@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2016-07-03 23:17 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-03 22:32 [Buildroot] [PATCH 1/4] package/webrtc-audio-processing: needs gcc >= 4.8 Romain Naour
2016-07-03 22:32 ` [Buildroot] [PATCH 2/4] package/pulseaudio: allow to build without C++11 support Romain Naour
2016-07-03 22:50   ` Yann E. MORIN
2016-07-03 22:32 ` [Buildroot] [PATCH 3/4] package/pulseaudio: add WebRTC optional dependency Romain Naour
2016-07-03 22:54   ` Yann E. MORIN
2016-07-03 22:32 ` [Buildroot] [PATCH 4/4] package/puseaudio: fix typo Romain Naour
2016-07-03 22:39   ` Yann E. MORIN
2016-07-03 22:43 ` [Buildroot] [PATCH 1/4] package/webrtc-audio-processing: needs gcc >= 4.8 Yann E. MORIN
2016-07-03 23:17 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.