1*4882a593Smuzhiyuncomment "python-libconfig needs a glibc or uClibc toolchain w/ C++, threads" 2*4882a593Smuzhiyun depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ 3*4882a593Smuzhiyun BR2_TOOLCHAIN_USES_MUSL 4*4882a593Smuzhiyun 5*4882a593Smuzhiyunconfig BR2_PACKAGE_PYTHON_LIBCONFIG 6*4882a593Smuzhiyun bool "python-libconfig" 7*4882a593Smuzhiyun depends on BR2_INSTALL_LIBSTDCPP 8*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_THREADS 9*4882a593Smuzhiyun # error: invalid use of incomplete type 'struct _IO_FILE' 10*4882a593Smuzhiyun depends on !BR2_TOOLCHAIN_USES_MUSL 11*4882a593Smuzhiyun select BR2_PACKAGE_BOOST 12*4882a593Smuzhiyun select BR2_PACKAGE_BOOST_PYTHON 13*4882a593Smuzhiyun select BR2_PACKAGE_LIBCONFIG 14*4882a593Smuzhiyun help 15*4882a593Smuzhiyun Python bindings to the C++ library libconfig 16*4882a593Smuzhiyun 17*4882a593Smuzhiyun Libconfig is a simple library for manipulating structured 18*4882a593Smuzhiyun configuration files. The file format is more compact and more 19*4882a593Smuzhiyun readable than XML. And unlike XML, it is type-aware, so it is 20*4882a593Smuzhiyun not necessary to do string parsing in application code. 21*4882a593Smuzhiyun http://www.hyperrealm.com/libconfig/ 22*4882a593Smuzhiyun 23*4882a593Smuzhiyun https://github.com/cnangel/python-libconfig 24