Skip to content

Commit 1f9d535

Browse files
committed
Add UDC (User Defined Characters) support to SJIS/EUC_JP conversion
Update README so that it reflects all source file names Add an entry to make sjistest (testing between SJIS/EUC_JP conversion)
1 parent f6689a3 commit 1f9d535

File tree

3 files changed

+590
-14
lines changed

3 files changed

+590
-14
lines changed

src/backend/utils/mb/Makefile

Lines changed: 7 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.5 1999/12/13 22:34:56 momjian Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/utils/mb/Makefile,v 1.6 2000/01/13 01:08:14 ishii Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -24,6 +24,12 @@ all: SUBSYS.o
2424
SUBSYS.o: $(OBJS)
2525
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2626

27+
sjistest: $(OBJS)
28+
$(CC) -c $(CFLAGS) -DDEBUGMAIN conv.c
29+
$(CC) -o sjistest conv.o \
30+
common.o mbutils.o wchar.o wstrcmp.o wstrncmp.o variable.o \
31+
big5.o $(LDFLAGS)
32+
2733
depend dep:
2834
$(CC) -MM $(CFLAGS) *.c >depend
2935

src/backend/utils/mb/README

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,9 @@ mbutilc.c: public functions for the backend only.
88
wstrcmp.c: strcmp for mb
99
wstrncmp.c: strncmp for mb
1010
varable.c: public functions for show/set/reset variable commands
11+
alt.c: a tool to generate KOI8 <--> CP866 conversion table
12+
iso.c: a tool to generate KOI8 <--> ISO8859-5 conversion table
13+
win.c: a tool to generate KOI8 <--> CP1251 conversion table
14+
big5.c: conversion between BIG5 and Mule Internal Code(CNS 116643-1992
15+
plane 1 and plane 2).
16+
utftest.c: test driver for utf2wchar()

0 commit comments

Comments
 (0)