Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
23cee79d
Commit
23cee79d
authored
Feb 17, 2020
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libport: Move the composition tables back to libwine and stop updating them.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0f2e88b0
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
4 deletions
+14
-4
Makefile.in
libs/port/Makefile.in
+0
-2
Makefile.in
libs/wine/Makefile.in
+2
-0
compose.c
libs/wine/compose.c
+6
-0
decompose.c
libs/wine/decompose.c
+6
-0
make_unicode
tools/make_unicode
+0
-2
No files found.
libs/port/Makefile.in
View file @
23cee79d
...
...
@@ -2,8 +2,6 @@ STATICLIB = libwine_port.a
C_SRCS
=
\
casemap.c
\
compose.c
\
decompose.c
\
ffs.c
\
fstatvfs.c
\
getopt.c
\
...
...
libs/wine/Makefile.in
View file @
23cee79d
...
...
@@ -67,10 +67,12 @@ C_SRCS = \
c_949.c
\
c_950.c
\
collation.c
\
compose.c
\
config.c
\
cpsymbol.c
\
cptable.c
\
debug.c
\
decompose.c
\
digitmap.c
\
fold.c
\
ldt.c
\
...
...
libs/
port
/compose.c
→
libs/
wine
/compose.c
View file @
23cee79d
...
...
@@ -2,6 +2,10 @@
/* generated from http://www.unicode.org/Public/12.1.0/ucd/UCD.zip:UnicodeData.txt */
/* DO NOT EDIT!! */
#include "wine/asm.h"
#ifdef __ASM_OBSOLETE
#include "windef.h"
static
const
WCHAR
table
[
0x85e
]
=
...
...
@@ -403,3 +407,5 @@ WCHAR DECLSPEC_HIDDEN wine_compose( const WCHAR *str )
count
=
table
[
2
*
pos
+
3
];
}
}
#endif
/* __ASM_OBSOLETE */
libs/
port
/decompose.c
→
libs/
wine
/decompose.c
View file @
23cee79d
...
...
@@ -2,6 +2,10 @@
/* generated from http://www.unicode.org/Public/12.1.0/ucd/UCD.zip:UnicodeData.txt */
/* DO NOT EDIT!! */
#include "wine/asm.h"
#ifdef __ASM_OBSOLETE
#include "windef.h"
const
WCHAR
DECLSPEC_HIDDEN
nfd_table
[
6075
]
=
...
...
@@ -959,3 +963,5 @@ const WCHAR DECLSPEC_HIDDEN nfd_table[6075] =
0x05ea
,
0x05bc
,
0x05d5
,
0x05b9
,
0x05d1
,
0x05bf
,
0x05db
,
0x05bf
,
0x05e4
,
0x05bf
};
#endif
/* __ASM_OBSOLETE */
tools/make_unicode
View file @
23cee79d
...
...
@@ -2355,10 +2355,8 @@ chdir ".." if -f "./make_unicode";
load_data
();
dump_case_mappings
(
"libs/port/casemap.c"
);
dump_sortkeys
(
"dlls/kernelbase/collation.c"
);
dump_compose_table
(
"libs/port/compose.c"
);
dump_compose_table
(
"dlls/ntdll/compose.c"
);
dump_compose_table
(
"dlls/kernelbase/compose.c"
);
dump_decompose_table
(
"libs/port/decompose.c"
,
0
);
dump_decompose_table
(
"dlls/ntdll/decompose.c"
,
1
);
dump_decompose_table
(
"dlls/kernelbase/decompose.c"
,
0
);
dump_ctype_tables
(
"libs/port/wctype.c"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment