]> git.pld-linux.org Git - packages/espeak.git/blob - speak-sys_includes.patch
- splitting between patches and -version-info corrected
[packages/espeak.git] / speak-sys_includes.patch
1 diff -Nur o.speak-1.14-source/src/speak.cpp n.speak-1.14-source/src/speak.cpp
2 --- o.speak-1.14-source/src/speak.cpp   2006-09-22 19:17:56.000000000 +0200
3 +++ n.speak-1.14-source/src/speak.cpp   2006-09-23 21:32:27.000000000 +0200
4 @@ -27,7 +27,7 @@
5  #include <time.h>
6  #include <signal.h>
7  #include <locale.h>
8 -#include "sys/stat.h"
9 +#include <sys/stat.h>
10  
11  #include "speech.h"
12  #include "voice.h"
13 diff -Nur o.speak-1.14-source/src/speak_lib.cpp n.speak-1.14-source/src/speak_lib.cpp
14 --- o.speak-1.14-source/src/speak_lib.cpp       2006-09-16 03:59:29.000000000 +0200
15 +++ n.speak-1.14-source/src/speak_lib.cpp       2006-09-23 21:33:35.000000000 +0200
16 @@ -19,14 +19,14 @@
17   ***************************************************************************/
18  
19  
20 -#include "stdio.h"
21 -#include "ctype.h"
22 -#include "string.h"
23 -#include "stdlib.h"
24 -#include "wchar.h"
25 -#include "locale.h"
26 +#include <stdio.h>
27 +#include <ctype.h>
28 +#include <string.h>
29 +#include <stdlib.h>
30 +#include <wchar.h>
31 +#include <locale.h>
32  
33 -#include "sys/stat.h"
34 +#include <sys/stat.h>
35  #ifndef __WIN32__
36  #include <unistd.h>
37  #endif
38 diff -Nur o.speak-1.14-source/src/voices.cpp n.speak-1.14-source/src/voices.cpp
39 --- o.speak-1.14-source/src/voices.cpp  2006-09-21 20:00:42.000000000 +0200
40 +++ n.speak-1.14-source/src/voices.cpp  2006-09-23 21:34:46.000000000 +0200
41 @@ -18,15 +18,15 @@
42   *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
43   ***************************************************************************/
44  
45 -#include "stdio.h"
46 -#include "ctype.h"
47 -#include "wctype.h"
48 -#include "string.h"
49 -#include "stdlib.h"
50 -#include "speech.h"
51 +#include <stdio.h>
52 +#include <ctype.h>
53 +#include <wctype.h>
54 +#include <string.h>
55 +#include <stdlib.h>
56 +#include <speech.h>
57  
58  #ifndef PLATFORM_RISCOS
59 -#include "dirent.h"
60 +#include <dirent.h>
61  #endif
62  
63  #include "voice.h"
64 diff -Nur o.speak-1.14-source/src/wavegen.cpp n.speak-1.14-source/src/wavegen.cpp
65 --- o.speak-1.14-source/src/wavegen.cpp 2006-09-21 20:00:42.000000000 +0200
66 +++ n.speak-1.14-source/src/wavegen.cpp 2006-09-23 21:35:11.000000000 +0200
67 @@ -33,7 +33,7 @@
68  #include "synthesize.h"
69  
70  #ifdef USE_PORTAUDIO
71 -#include "portaudio.h"
72 +#include <portaudio.h>
73  #undef USE_PORTAUDIO
74  // determine portaudio version by looking for a #define which is not in V18
75  #ifdef paNeverDropInput
This page took 0.043009 seconds and 3 git commands to generate.