package/gnuradio: add optional support for orc

When orc was compiled before, gnuradio will use it as optional
dependency:

$ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/gnuradio-config-info | grep NEEDED
[...]
 0x0000000000000001 (NEEDED)             Shared library: [liborc-0.4.so.0]
[...]

Apparently there is no option provided by the build system to
en-/disable support for orc:
41b4df055b/lib/CMakeLists.txt (L449)

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Reviewed-by: "Gwenhael Goavec-Merou" <gwenhael.goavec-merou@trabucayre.com>
Tested-by: "Gwenhael Goavec-Merou" <gwenhael.goavec-merou@trabucayre.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Bernd Kuhls 2016-02-21 18:34:50 +01:00 committed by Thomas Petazzoni
parent f4f529975b
commit 55163723ea

View File

@ -17,6 +17,10 @@ GNURADIO_DEPENDENCIES = \
host-swig \ host-swig \
boost boost
ifeq ($(BR2_PACKAGE_ORC),y)
GNURADIO_DEPENDENCIES += orc
endif
GNURADIO_CONF_OPTS = \ GNURADIO_CONF_OPTS = \
-DENABLE_DEFAULT=OFF \ -DENABLE_DEFAULT=OFF \
-DENABLE_VOLK=ON \ -DENABLE_VOLK=ON \