Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
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
nexedi
MariaDB
Commits
7dea61b0
Commit
7dea61b0
authored
Feb 05, 2010
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
1a817f00
c3848c68
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
6375 deletions
+1
-6375
configure.in
configure.in
+1
-2
sql/share/errmsg-cnv.sh
sql/share/errmsg-cnv.sh
+0
-61
sql/share/errmsg.txt
sql/share/errmsg.txt
+0
-6312
No files found.
configure.in
View file @
7dea61b0
...
...
@@ -29,8 +29,7 @@ AC_CANONICAL_SYSTEM
# TAR files, the path name is split into two parts, a 155 chacater
# first part and a 100 character second part.
AM_INIT_AUTOMAKE
([
1.9 tar-ustar]
)
LT_INIT
LT_PREREQ
([
1.5.6]
)
AC_PROG_LIBTOOL
AM_CONFIG_HEADER
([
include/config.h]
)
...
...
sql/share/errmsg-cnv.sh
deleted
100644 → 0
View file @
1a817f00
#
# This shell script converts errmsg.txt
# from a mixed-charset format
# to utf8 format
# and writes the result to errmgs-utf8.txt
#
cat
errmsg.txt |
while
IFS
=
;
read
-r
a
do
cs
=
""
var
=
"
${
a
#
"
${
a
%%[![
:space:]]
*
}
"
}
"
case
$var
in
cze
*
|
hun
*
|
pol
*
|
rum
*
|
slo
*
)
cs
=
latin2
;;
dan
*
|
nla
*
|
eng
*
|
fre
*
|
ger
*
|
ita
*
|
nor
*
|
por
*
|
spa
*
|
swe
*
)
cs
=
latin1
;;
est
*
)
cs
=
latin7
;;
greek
*
)
cs
=
windows-1253
;;
jpn
*
)
cs
=
euc-jp
;;
jps
*
)
cs
=
shift-jis
;;
kor
*
)
cs
=
euc-kr
;;
serbian
*
)
cs
=
windows-1250
;;
rus
*
)
cs
=
koi8-r
;;
ukr
*
)
cs
=
koi8-u
;;
*
)
echo
$a
esac
if
[
"x
$cs
"
!=
"x"
]
then
b
=
`
echo
$a
| iconv
-f
$cs
-t
utf-8
`
;
rc
=
$?
if
[
"
$rc
"
==
"0"
]
then
echo
"
$b
"
else
echo
"# This message failed to convert from
$cs
, skipped"
fi
fi
done
>
errmsg-utf8.txt
sql/share/errmsg.txt
deleted
100644 → 0
View file @
1a817f00
This diff is collapsed.
Click to expand it.
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