From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 56335 invoked by alias); 26 Jul 2017 09:50:16 -0000 Mailing-List: contact newlib-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-cvs-owner@sourceware.org Received: (qmail 51506 invoked by uid 9078); 26 Jul 2017 09:50:09 -0000 Date: Wed, 26 Jul 2017 09:50:00 -0000 Message-ID: <20170726095009.51498.qmail@sourceware.org> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Corinna Vinschen To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] cygwin: Set __STDC_ISO_10646__ to Unicode 5.2 value X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/master X-Git-Oldrev: 4bccfcca5b457d05ed3c507f045250ace344c70b X-Git-Newrev: 8322a87c164e8bc1a1a9bf9d0b4e2194c96f1244 X-SW-Source: 2017-q3/txt/msg00023.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=8322a87c164e8bc1a1a9bf9d0b4e2194c96f1244 commit 8322a87c164e8bc1a1a9bf9d0b4e2194c96f1244 Author: Corinna Vinschen Date: Wed Jul 26 11:49:58 2017 +0200 cygwin: Set __STDC_ISO_10646__ to Unicode 5.2 value Now that XP is not supported anymore we can freely do that. Signed-off-by: Corinna Vinschen Diff: --- newlib/libc/include/sys/features.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/newlib/libc/include/sys/features.h b/newlib/libc/include/sys/features.h index 1f9271b..c9133af 100644 --- a/newlib/libc/include/sys/features.h +++ b/newlib/libc/include/sys/features.h @@ -505,10 +505,9 @@ extern "C" { /* #define _XOPEN_UNIX -1 */ #endif /* __XSI_VISIBLE */ -/* The value corresponds to UNICODE version 4.0, which is the version - supported by XP. Newlib supports 5.2 (2011) but so far Cygwin needs - the MS conversions for double-byte charsets. */ -#define __STDC_ISO_10646__ 200305L +/* The value corresponds to UNICODE version 5.2, which is the current + state of newlib's wide char conversion functions. */ +#define __STDC_ISO_10646__ 200910L #endif /* __CYGWIN__ */