diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-03-19 22:01:41 -0700 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2020-03-19 23:38:45 -0700 |
commit | 586b15cf35f85f61673dba3cfe6575510ab5a82f (patch) | |
tree | 4558ac7bd391da1c01511545369ab90eb5ed56e7 /sound/svox/patches | |
parent | f58c2f97135dcc97c07879f1c6ca516c1b33fde4 (diff) |
svox: fix compilation with newer musl
Otherwise int8_t is undeclared.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'sound/svox/patches')
-rw-r--r-- | sound/svox/patches/0003-pico2wave-Convert-text-to-.wav-using-svox-text-to-sp.patch | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/svox/patches/0003-pico2wave-Convert-text-to-.wav-using-svox-text-to-sp.patch b/sound/svox/patches/0003-pico2wave-Convert-text-to-.wav-using-svox-text-to-sp.patch index c8a2e8399..19b6df1b9 100644 --- a/sound/svox/patches/0003-pico2wave-Convert-text-to-.wav-using-svox-text-to-sp.patch +++ b/sound/svox/patches/0003-pico2wave-Convert-text-to-.wav-using-svox-text-to-sp.patch @@ -41,7 +41,7 @@ new file mode 100644 index 0000000..0c035a7 --- /dev/null +++ b/pico/bin/pico2wave.c -@@ -0,0 +1,341 @@ +@@ -0,0 +1,342 @@ +/* pico2wave.c + + * Copyright (C) 2009 Mathieu Parent <math.parent@gmail.com> @@ -65,6 +65,7 @@ index 0000000..0c035a7 + +#include <popt.h> +#include <stdio.h> ++#include <stdint.h> +#include <stdlib.h> +#include <string.h> + |