1config BR2_PACKAGE_REPROC
2	bool "reproc"
3	depends on BR2_USE_MMU # fork()
4	depends on BR2_USE_WCHAR # uses wchar_t
5	depends on BR2_TOOLCHAIN_HAS_THREADS # pthread
6	help
7	  reproc is a cross-platform C/C++ library that simplifies
8	  starting, stopping and communicating with external programs.
9
10	  https://github.com/DaanDeMeyer/reproc
11
12comment "reproc needs a toolchain w/ threads, wchar"
13	depends on BR2_USE_MMU
14	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
15