f9e4ccac11
[Thomas: - add patch to fix autoreconf issue, and use LIQUID_DSP_AUTORECONF = YES instead of an horrible hack calling aclocal/autoconf manually. - use the github macro instead of hand-coding <pkg>_SITE and <pkg>_SITE_METHOD. This allows to remove <pkg>_SITE_METHOD entirely. - use a full hash as the <pkg>_VERSION - remove trailing whitespace everywhere. - use one single assignment of LIQUID_DSP_CONF_OPTS - fix the comment about the eglibc/musl dependency (it was only mentioning eglibc, and the condition was inverted) - add the musl/glibc dependency on the package option itself - make the package depend on dynamic library support, since the makefile unconditionally builds a shared library. - add hash file.] Signed-off-by: Guillaume William Bres <guillaume.bressaix@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
25 lines
736 B
Plaintext
25 lines
736 B
Plaintext
comment "liquid-dsp requires a (e)glibc/musl toolchain w/ dynamic library"
|
|
depends on !(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL) || BR2_STATIC_LIBS
|
|
|
|
config BR2_PACKAGE_LIQUID_DSP
|
|
bool "liquid-dsp"
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL
|
|
depends on !BR2_STATIC_LIBS
|
|
help
|
|
Liquid-DSP is a free and open-source signal processing
|
|
library for software-defined radios written in C. Its
|
|
purpose is to provide a set of extensible DSP modules that
|
|
do no rely on external dependencies or cumbersome
|
|
frameworks.
|
|
|
|
http://liquidsdr.org/
|
|
|
|
if BR2_PACKAGE_LIQUID_DSP
|
|
|
|
config BR2_PACKAGE_LIQUID_DSP_FAST
|
|
bool "optimize for speed over accuracy"
|
|
help
|
|
Optimize for speed over accuracy.
|
|
|
|
endif
|