feeab03fa6
The current NIOS 2 toolchains are not capable of building Boost, so let's disable it and its reverse dependencies. Even though it's not strictly an architecture dependency, we use the <pkg>_ARCH_SUPPORTS paradigm for this dependency, since it simplifies a lot handling all boost reverse dependencies, and is anyway quite similar to an architecture dependency since we don't display a comment about this dependency. Fixes: http://autobuild.buildroot.net/results/e119b1ef55c546e0d0598b85c46ceefa5c43d5a6/ [Peter: also update mpd comment] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
23 lines
830 B
Plaintext
23 lines
830 B
Plaintext
comment "python-libconfig needs a toolchain w/ C++, threads"
|
|
depends on BR2_PACKAGE_BOOST_ARCH_SUPPORTS
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
config BR2_PACKAGE_PYTHON_LIBCONFIG
|
|
bool "python-libconfig"
|
|
select BR2_PACKAGE_BOOST
|
|
select BR2_PACKAGE_BOOST_PYTHON
|
|
select BR2_PACKAGE_LIBCONFIG
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_PACKAGE_BOOST_ARCH_SUPPORTS
|
|
help
|
|
Python bindings to the C++ library libconfig
|
|
|
|
Libconfig is a simple library for manipulating structured
|
|
configuration files. The file format is more compact and more
|
|
readable than XML. And unlike XML, it is type-aware, so it is
|
|
not necessary to do string parsing in application code.
|
|
http://www.hyperrealm.com/libconfig/
|
|
|
|
https://github.com/cnangel/python-libconfig
|