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