1config BR2_PACKAGE_SPEECHD
2	bool "speechd"
3	depends on BR2_USE_WCHAR # libglib2
4	depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
5	depends on BR2_USE_MMU # libglib2
6	depends on !BR2_STATIC_LIBS
7	select BR2_PACKAGE_DOTCONF
8	select BR2_PACKAGE_LIBGLIB2
9	select BR2_PACKAGE_LIBSNDFILE
10	help
11	  Speech Dispatcher project provides a high-level device
12	  independent layer for access to speech synthesis through
13	  a simple, stable and well documented interface.
14
15	  https://freebsoft.org/speechd
16
17comment "speechd needs a toolchain w/ wchar, threads, dynamic library"
18	depends on BR2_USE_MMU
19	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
20		BR2_STATIC_LIBS
21