Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitde53ce8

Browse files
committed
Support for conversion between UNICODE and other encodings
currently ISO8859-[1-5] and EUC_JP are supported.support for other encodings will be coming soon.
1 parent6619ad1 commitde53ce8

File tree

14 files changed

+27865
-438
lines changed

14 files changed

+27865
-438
lines changed

‎src/backend/utils/mb/EUC_JP_to_UTF.map

Lines changed: 12948 additions & 0 deletions
Large diffs are not rendered by default.

‎src/backend/utils/mb/Makefile

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for utils/mb
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/backend/utils/mb/Makefile,v 1.10 2000/08/31 16:10:56 petere Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/utils/mb/Makefile,v 1.11 2000/10/12 06:06:49 ishii Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -29,6 +29,15 @@ sjistest.o: sjistest.c
2929
liketest.o: liketest.c
3030
$(CC) -c$(CFLAGS) liketest.c
3131

32+
uconv.o: uconv.c
33+
$(CC) -c$(CFLAGS) uconv.c
34+
35+
uconv2.o: uconv2.c
36+
$(CC) -c$(CFLAGS) uconv2.c
37+
38+
utftest.o: utftest.c conv.c wchar.c mbutils.c
39+
$(CC) -c$(CFLAGS) utftest.c
40+
3241
sjistest:$(OBJS) sjistest.o palloc.o
3342
$(CC) -o sjistest sjistest.o palloc.o\
3443
common.o mbutils.o wchar.o wstrcmp.o wstrncmp.o variable.o\
@@ -39,6 +48,21 @@ liketest: $(OBJS) liketest.o palloc.o
3948
common.o mbutils.o wchar.o wstrcmp.o wstrncmp.o variable.o\
4049
big5.o $(LDFLAGS)
4150

51+
utftest:$(OBJS) utftest.o palloc.o
52+
$(CC) -o utftest utftest.o palloc.o\
53+
common.o wstrcmp.o wstrncmp.o variable.o\
54+
big5.o $(LDFLAGS)
55+
56+
uconv: uconv.o palloc.o
57+
$(CC) -o uconv uconv.o palloc.o\
58+
common.o conv.o wchar.o\
59+
big5.o mbutils.o $(LDFLAGS)
60+
61+
uconv2: uconv2.o palloc.o
62+
$(CC) -o uconv2 uconv2.o palloc.o\
63+
common.o conv.o wchar.o\
64+
big5.o mbutils.o $(LDFLAGS)
65+
4266
dependdep:
4367
$(CC) -MM$(CFLAGS)*.c>depend
4468

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp