diff options
author | Marty Plummer <ntzrmtthihu777@gmail.com> | 2017-07-31 10:31:18 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2017-07-31 10:31:18 +0100 |
commit | 54387c7fe27848e41a51c1eccc6a24b3d6d3441f (patch) | |
tree | 13c2f4e4e65ce5e5c5319ac7e8e8aadc765f31be /binutils | |
parent | 791fb3d7a58b86e5f30229625dfd33659f33fd6e (diff) | |
download | gdb-54387c7fe27848e41a51c1eccc6a24b3d6d3441f.zip gdb-54387c7fe27848e41a51c1eccc6a24b3d6d3441f.tar.gz gdb-54387c7fe27848e41a51c1eccc6a24b3d6d3441f.tar.bz2 |
Fix compiling zlib using x86_64-musl.
PR 21861
* winduni.c (codepages): Use cp1252 for codepage 0.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/winduni.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index f450a33..c4510a3 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2017-07-31 Marty Plummer <ntzrmtthihu777@gmail.com> + + PR 21861 + * winduni.c (codepages): Use cp1252 for codepage 0. + 2017-07-25 Nick Clifton <nickc@redhat.com> PR 21820 diff --git a/binutils/winduni.c b/binutils/winduni.c index 9868d4b..ec4f71c 100644 --- a/binutils/winduni.c +++ b/binutils/winduni.c @@ -57,7 +57,7 @@ static int unichar_isascii (const unichar *, rc_uint_type); /* Codepages mapped. */ static local_iconv_map codepages[] = { - { 0, "MS-ANSI" }, + { 0, "cp1252" }, { 1, "WINDOWS-1252" }, { 437, "MS-ANSI" }, { 737, "MS-GREEK" }, |