The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / espeak / Config.in
1 comment "espeak needs a toolchain w/ C++, wchar, threads, dynamic library"
2         depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || BR2_STATIC_LIBS
3         depends on BR2_USE_MMU
4
5 config BR2_PACKAGE_ESPEAK
6         bool "espeak"
7         depends on BR2_INSTALL_LIBSTDCPP
8         depends on BR2_USE_WCHAR
9         depends on BR2_TOOLCHAIN_HAS_THREADS
10         depends on BR2_USE_MMU # fork()
11         # does not properly support building only a static version
12         depends on !BR2_STATIC_LIBS
13         help
14           espeak is a speech synthesizer software for English and
15           other languages.
16
17           http://espeak.sourceforge.net/
18
19 if BR2_PACKAGE_ESPEAK
20
21 choice
22         prompt "choose audio backend"
23         default BR2_PACKAGE_ESPEAK_AUDIO_BACKEND_NONE
24
25 config BR2_PACKAGE_ESPEAK_AUDIO_BACKEND_NONE
26         bool "No sound backend, only produce wav files"
27
28 config BR2_PACKAGE_ESPEAK_AUDIO_BACKEND_ALSA
29         bool "alsa via portaudio"
30         select BR2_PACKAGE_PORTAUDIO
31         select BR2_PACKAGE_PORTAUDIO_CXX
32
33 config BR2_PACKAGE_ESPEAK_AUDIO_BACKEND_PULSEAUDIO
34         bool "pulseaudio"
35         depends on BR2_ARCH_HAS_ATOMICS # pulseaudio
36         select BR2_PACKAGE_PULSEAUDIO
37
38 endchoice
39
40 endif # BR2_PACKAGE_ESPEAK