Config.in 885 B

1234567891011121314151617181920212223
  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
  4. config BR2_PACKAGE_PYTHON_LIBCONFIG
  5. bool "python-libconfig"
  6. depends on BR2_INSTALL_LIBSTDCPP
  7. depends on BR2_TOOLCHAIN_HAS_THREADS
  8. # error: invalid use of incomplete type 'struct _IO_FILE'
  9. depends on !BR2_TOOLCHAIN_USES_MUSL
  10. select BR2_PACKAGE_BOOST
  11. select BR2_PACKAGE_BOOST_PYTHON
  12. select BR2_PACKAGE_LIBCONFIG
  13. help
  14. Python bindings to the C++ library libconfig
  15. Libconfig is a simple library for manipulating structured
  16. configuration files. The file format is more compact and more
  17. readable than XML. And unlike XML, it is type-aware, so it is
  18. not necessary to do string parsing in application code.
  19. http://www.hyperrealm.com/libconfig/
  20. https://github.com/cnangel/python-libconfig