Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
afcde99b
Commit
afcde99b
authored
Mar 18, 2009
by
Heikki Linnakangas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix case of the just resurrected UCS_to_BIG5.pl script, and update
Makefile to use it.
parent
2dbbf33f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
src/backend/utils/mb/Unicode/Makefile
src/backend/utils/mb/Unicode/Makefile
+8
-4
src/backend/utils/mb/Unicode/UCS_to_BIG5.pl
src/backend/utils/mb/Unicode/UCS_to_BIG5.pl
+1
-1
No files found.
src/backend/utils/mb/Unicode/Makefile
View file @
afcde99b
...
...
@@ -4,7 +4,7 @@
#
# Copyright (c) 2001-2009, PostgreSQL Global Development Group
#
# $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/Makefile,v 1.1
5 2009/01/01 17:23:51 momjian
Exp $
# $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/Makefile,v 1.1
6 2009/03/18 16:26:18 heikki
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -39,7 +39,6 @@ WINMAPS = win866_to_utf8.map utf8_to_win866.map \
win1258_to_utf8.map utf8_to_win1258.map
GENERICMAPS
=
$(ISO8859MAPS)
$(WINMAPS)
\
big5_to_utf8.map utf8_to_big5.map
\
johab_to_utf8.map utf8_to_johab.map
\
uhc_to_utf8.map utf8_to_uhc.map
\
gbk_to_utf8.map utf8_to_gbk.map
\
...
...
@@ -50,7 +49,8 @@ SPECIALMAPS = euc_cn_to_utf8.map utf8_to_euc_cn.map \
euc_kr_to_utf8.map utf8_to_euc_kr.map
\
euc_tw_to_utf8.map utf8_to_euc_tw.map
\
sjis_to_utf8.map utf8_to_sjis.map
\
gb18030_to_utf8.map utf8_to_gb18030.map
gb18030_to_utf8.map utf8_to_gb18030.map
\
big5_to_utf8.map utf8_to_big5.map
MAPS
=
$(GENERICMAPS)
$(SPECIALMAPS)
...
...
@@ -64,7 +64,7 @@ WINTEXTS = CP866.TXT CP874.TXT CP1250.TXT CP1251.TXT \
CP1256.TXT CP1257.TXT CP1258.TXT
GENERICTEXTS
=
$(ISO8859TEXTS)
$(WINTEXTS)
\
KOI8-R.TXT CP936.TXT CP949.TXT JOHAB.TXT
BIG5.TXT
KOI8-R.TXT CP936.TXT CP949.TXT JOHAB.TXT
all
:
$(MAPS)
...
...
@@ -88,6 +88,10 @@ sjis_to_utf8.map utf8_to_sjis.map : CP932.TXT
gb18030_to_utf8.map utf8_to_gb18030.map
:
ISO10646-GB18030.TXT
$(PERL)
$(srcdir)
/UCS_to_GB18030.pl
big5_to_utf8.map utf8_to_big5.map
:
BIG5.TXT CP950.TXT
$(PERL)
$(srcdir)
/UCS_to_BIG5.pl
clean
:
rm
-f
$(MAPS)
...
...
src/backend/utils/mb/Unicode/UCS_to_
big
5.pl
→
src/backend/utils/mb/Unicode/UCS_to_
BIG
5.pl
100644 → 100755
View file @
afcde99b
...
...
@@ -2,7 +2,7 @@
#
# Copyright (c) 2001-2009, PostgreSQL Global Development Group
#
# $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/UCS_to_
big5.pl,v 1.1 2009/03/18 16:17:5
8 heikki Exp $
# $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/UCS_to_
BIG5.pl,v 1.9 2009/03/18 16:26:1
8 heikki Exp $
#
# Generate UTF-8 <--> BIG5 conversion tables from
# map files provided by Unicode organization.
...
...
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