diff options
author | Khem Raj <raj.khem@gmail.com> | 2017-05-18 13:32:13 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-06-05 11:01:41 +0200 |
commit | e2bd3e64d97d351a5ae61970e8507f0f5b547586 (patch) | |
tree | 238f0352dfafcd0c314951bb62ef8774f610a32f /meta-oe/recipes-support/espeak/files/fix-gcc6-errors.patch | |
parent | ab1c74fcd0f468e8de56888dc0ebe0bd139eb06f (diff) | |
download | meta-openembedded-e2bd3e64d97d351a5ae61970e8507f0f5b547586.tar.gz |
espeak, espeak-data: Update to 1.48.04 release
Disable audio codecs
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/espeak/files/fix-gcc6-errors.patch')
-rw-r--r-- | meta-oe/recipes-support/espeak/files/fix-gcc6-errors.patch | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/meta-oe/recipes-support/espeak/files/fix-gcc6-errors.patch b/meta-oe/recipes-support/espeak/files/fix-gcc6-errors.patch deleted file mode 100644 index 9cf23cf031..0000000000 --- a/meta-oe/recipes-support/espeak/files/fix-gcc6-errors.patch +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | Fix gcc6 errors with narrowing | ||
2 | |||
3 | | tr_languages.cpp:462:73: error: narrowing conversion of '171' from 'int' to 'char' inside { } [-Wnarrowing] | ||
4 | | static const char ko_voiced[] = {0x02,0x05,0x06,0xab,0xaf,0xb7,0xbc,0}; // voiced consonants, l,m,n,N | ||
5 | |||
6 | Upstream-Status: Backport | ||
7 | |||
8 | Signed-off-by: Derek Straka <derek@asterius.io> | ||
9 | --- a/src/tr_languages.cpp | ||
10 | +++ b/src/tr_languages.cpp | ||
11 | @@ -459,7 +459,7 @@ | ||
12 | case L('k','o'): // Korean, TEST | ||
13 | { | ||
14 | static const char ko_ivowels[] = {0x63,0x64,0x67,0x68,0x6d,0x72,0x74,0x75,0}; // y and i vowels | ||
15 | - static const char ko_voiced[] = {0x02,0x05,0x06,0xab,0xaf,0xb7,0xbc,0}; // voiced consonants, l,m,n,N | ||
16 | + static const char ko_voiced[] = {0x02,0x05,0x06,(char)0xab,(char)0xaf,(char)0xb7,(char)0xbc,0}; // voiced consonants, l,m,n,N | ||
17 | tr = new Translator(); | ||
18 | |||
19 | tr->letter_bits_offset = OFFSET_KOREAN; | ||