diff options
author | Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com> | 2017-02-13 17:13:19 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-02-13 22:40:09 +0100 |
commit | af0cc55f322f40a93655f9688993d8397acd6da2 (patch) | |
tree | dea05b1850d7f1553472900fe4f9db06bfdbd4d3 | |
parent | e528ed77401f2a62b0284c289deab8a3c1d5d76f (diff) | |
download | buildroot-af0cc55f322f40a93655f9688993d8397acd6da2.tar.gz buildroot-af0cc55f322f40a93655f9688993d8397acd6da2.zip |
gqrx: remove audio backend dependencies
Now that the gnuradio gr-audio option selects an audio backend by
default, it is no longer needed to depends on BR2_PACKAGE_ALSA_LIB or
BR2_PACKAGE_PORTAUDIO in the qgrx package.
Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/gqrx/Config.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/package/gqrx/Config.in b/package/gqrx/Config.in index 5f7a561aa8..1dc40c6d24 100644 --- a/package/gqrx/Config.in +++ b/package/gqrx/Config.in @@ -2,13 +2,12 @@ comment "gqrx needs a toolchain w/ C++, threads, wchar" depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ !BR2_USE_WCHAR -comment "gqrx needs qt5, gnuradio, fftw's single precision, alsa-lib or portaudio" +comment "gqrx needs qt5, gnuradio, fftw's single precision" depends on !BR2_PACKAGE_GNURADIO || !BR2_PACKAGE_FFTW_PRECISION_SINGLE || \ - !(BR2_PACKAGE_ALSA_LIB || BR2_PACKAGE_PORTAUDIO) || !BR2_PACKAGE_QT5 + !BR2_PACKAGE_QT5 config BR2_PACKAGE_GQRX bool "gqrx" - depends on BR2_PACKAGE_ALSA_LIB || BR2_PACKAGE_PORTAUDIO # gr-audio depends on BR2_PACKAGE_FFTW_PRECISION_SINGLE # gnuradio depends on BR2_PACKAGE_GNURADIO depends on BR2_PACKAGE_QT5 |