Refresh patches.
Debian Janitor
4 months ago
0 | diff -ur teckit-2.5.10/source/Compiler.cpp teckit-src/source/Compiler.cpp | |
1 | --- teckit-2.5.10/source/Compiler.cpp Tue May 05 23:09:53 2020 | |
2 | +++ teckit-src/source/Compiler.cpp Wed May 06 09:00:34 2020 | |
3 | @@ -189,7 +189,7 @@ | |
0 | Index: teckit.git/source/Compiler.cpp | |
1 | =================================================================== | |
2 | --- teckit.git.orig/source/Compiler.cpp | |
3 | +++ teckit.git/source/Compiler.cpp | |
4 | @@ -189,7 +189,7 @@ TECkit_DisposeCompiled(Byte* table) | |
4 | 5 | free(table); |
5 | 6 | } |
6 | 7 | |
9 | 10 | WINAPI |
10 | 11 | TECkit_GetUnicodeName(UInt32 usv) |
11 | 12 | { |
12 | diff -ur teckit-2.5.10/source/Compiler.h teckit-src/source/Compiler.h | |
13 | --- teckit-2.5.10/source/Compiler.h Tue May 05 23:09:53 2020 | |
14 | +++ teckit-src/source/Compiler.h Wed May 06 08:59:40 2020 | |
15 | @@ -229,7 +229,7 @@ | |
13 | Index: teckit.git/source/Compiler.h | |
14 | =================================================================== | |
15 | --- teckit.git.orig/source/Compiler.h | |
16 | +++ teckit.git/source/Compiler.h | |
17 | @@ -229,7 +229,7 @@ protected: | |
16 | 18 | vector<UInt32> byteClassLines; |
17 | 19 | vector<UInt32> uniClassLines; |
18 | 20 | |
21 | 23 | UInt32 uniDefault; |
22 | 24 | UInt8 byteDefault; |
23 | 25 | bool supplementaryChars; |
24 | diff -ur teckit-2.5.10/source/Engine.cpp teckit-src/source/Engine.cpp | |
25 | --- teckit-2.5.10/source/Engine.cpp Tue May 05 23:09:53 2020 | |
26 | +++ teckit-src/source/Engine.cpp Wed May 06 09:06:24 2020 | |
27 | @@ -51,12 +51,6 @@ | |
26 | Index: teckit.git/source/Engine.cpp | |
27 | =================================================================== | |
28 | --- teckit.git.orig/source/Engine.cpp | |
29 | +++ teckit.git/source/Engine.cpp | |
30 | @@ -51,12 +51,6 @@ Description: | |
28 | 31 | # define NOSERVICE |
29 | 32 | # define NOMCX |
30 | 33 | # include <windows.h> |
37 | 40 | #endif |
38 | 41 | |
39 | 42 | #include "Engine.h" |
40 | diff -ur teckit-2.5.10/source/Public-headers/TECkit_Compiler.h teckit-src/source/Public-headers/TECkit_Compiler.h | |
41 | --- teckit-2.5.10/source/Public-headers/TECkit_Compiler.h Tue May 05 23:09:53 2020 | |
42 | +++ teckit-src/source/Public-headers/TECkit_Compiler.h Wed May 06 09:07:40 2020 | |
43 | @@ -29,6 +29,9 @@ | |
43 | Index: teckit.git/source/Public-headers/TECkit_Compiler.h | |
44 | =================================================================== | |
45 | --- teckit.git.orig/source/Public-headers/TECkit_Compiler.h | |
46 | +++ teckit.git/source/Public-headers/TECkit_Compiler.h | |
47 | @@ -29,6 +29,9 @@ extern "C" { | |
44 | 48 | #ifdef _WIN32 |
45 | 49 | /* MS compiler has predefined _WIN32, so assume Windows target */ |
46 | 50 | #include <windows.h> // apparently just using windef.h fails on VC++6 |
50 | 54 | #else |
51 | 55 | /* not the MS compiler, so try Metrowerks' platform macros */ |
52 | 56 | #ifndef __APPLE__ |
53 | @@ -55,7 +58,7 @@ | |
57 | @@ -55,7 +58,7 @@ extern "C" { | |
54 | 58 | #define kCompilerOpts_Compress 0x00000010 /* generate compressed mapping table */ |
55 | 59 | #define kCompilerOpts_XML 0x00000020 /* instead of a compiled binary table, generate an XML representation of the mapping */ |
56 | 60 | |
59 | 63 | |
60 | 64 | TECkit_Status |
61 | 65 | WINAPI EXPORTED |
62 | @@ -74,7 +77,7 @@ | |
66 | @@ -74,7 +77,7 @@ WINAPI EXPORTED | |
63 | 67 | TECkit_GetCompilerVersion(); |
64 | 68 | |
65 | 69 | /* new APIs for looking up Unicode names (as NUL-terminated C strings) */ |
68 | 72 | WINAPI EXPORTED |
69 | 73 | TECkit_GetUnicodeName(UInt32 usv); |
70 | 74 | /* returns the Unicode name of usv, if available, else NULL */ |
71 | diff -ur teckit-2.5.10/source/Public-headers/TECkit_Engine.h teckit-src/source/Public-headers/TECkit_Engine.h | |
72 | --- teckit-2.5.10/source/Public-headers/TECkit_Engine.h Tue May 05 23:09:53 2020 | |
73 | +++ teckit-src/source/Public-headers/TECkit_Engine.h Wed May 06 09:08:34 2020 | |
74 | @@ -79,6 +79,9 @@ | |
75 | Index: teckit.git/source/Public-headers/TECkit_Engine.h | |
76 | =================================================================== | |
77 | --- teckit.git.orig/source/Public-headers/TECkit_Engine.h | |
78 | +++ teckit.git/source/Public-headers/TECkit_Engine.h | |
79 | @@ -79,6 +79,9 @@ extern "C" { | |
75 | 80 | #ifdef _WIN32 |
76 | 81 | /* MS compiler has predefined _WIN32, so assume Windows target */ |
77 | 82 | #include <windows.h> |
81 | 86 | #else |
82 | 87 | /* not the MS compiler, so try Metrowerks' platform macros */ |
83 | 88 | #ifndef __APPLE__ |
84 | diff -ur teckit-2.5.10/source/Sample-tools/TECkit_Compile.cpp teckit-src/source/Sample-tools/TECkit_Compile.cpp | |
85 | --- teckit-2.5.10/source/Sample-tools/TECkit_Compile.cpp Tue May 05 23:09:53 2020 | |
86 | +++ teckit-src/source/Sample-tools/TECkit_Compile.cpp Wed May 06 09:05:22 2020 | |
89 | Index: teckit.git/source/Sample-tools/TECkit_Compile.cpp | |
90 | =================================================================== | |
91 | --- teckit.git.orig/source/Sample-tools/TECkit_Compile.cpp | |
92 | +++ teckit.git/source/Sample-tools/TECkit_Compile.cpp | |
87 | 93 | @@ -24,13 +24,13 @@ |
88 | 94 | #endif |
89 | 95 |