5893d2d1f1
This bump will fix the following build failure raised since bump pf
gnuradio to version 3.10.4.0 in commit
e37c110bea
:
In file included from /home/buildroot/autobuild/instance-2/output-1/build/gqrx-2.14.4/src/applications/gqrx/receiver.cpp:32:
/home/buildroot/autobuild/instance-2/output-1/build/gqrx-2.14.4/src/applications/gqrx/receiver.h:34:10: fatal error: gnuradio/blocks/wavfile_sink.h: No such file or directory
34 | #include <gnuradio/blocks/wavfile_sink.h>
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
https://github.com/gqrx-sdr/gqrx/blob/v2.15.9/resources/news.txt
Fixes:
- http://autobuild.buildroot.org/results/42b5ab2e555063273ea55fd1c09a9be6d8b620e2
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
22 lines
659 B
Makefile
22 lines
659 B
Makefile
################################################################################
|
|
#
|
|
# gqrx
|
|
#
|
|
################################################################################
|
|
|
|
GQRX_VERSION = 2.15.9
|
|
GQRX_SITE = $(call github,csete,gqrx,v$(GQRX_VERSION))
|
|
GQRX_LICENSE = GPL-3.0+, Apache-2.0
|
|
GQRX_LICENSE_FILES = COPYING LICENSE-CTK
|
|
GQRX_DEPENDENCIES = boost gnuradio gr-osmosdr libsndfile qt5base qt5svg
|
|
|
|
GQRX_CONF_OPTS = -DLINUX_AUDIO_BACKEND=Gr-audio
|
|
|
|
# gqrx can use __atomic builtins, so we need to link with
|
|
# libatomic when available
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
|
GQRX_CONF_OPTS += -DCMAKE_EXE_LINKER_FLAGS=-latomic
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|