From f5a73638cd98e01bad97fb3f1a69ffef7d07c1c5 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Mon, 8 Feb 2010 09:52:40 +0000 Subject: [PATCH] * external.cc (cygwin_internal): Add CW_INT_SETLOCALE case to allow to call internal_setlocale(). * nlsfuncs.cc (internal_setlocale): Make externally available. * include/cygwin/version.h: Bump API minor number. * include/sys/cygwin.h (cygwin_getinfo_types): Add CW_INT_SETLOCALE. * nlsfuncs.cc (lc_mbstowcs): Fix call to f_mbtowc. (__set_locale_from_locale_alias): Ignore "@cjknarrow" modifier. --- winsup/cygwin/ChangeLog | 11 +++++++++++ winsup/cygwin/external.cc | 8 +++++++- winsup/cygwin/include/cygwin/version.h | 3 ++- winsup/cygwin/include/sys/cygwin.h | 5 +++-- 4 files changed, 23 insertions(+), 4 deletions(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 8ff6524eb..fe966c48d 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,14 @@ +2010-02-08 Corinna Vinschen + + * external.cc (cygwin_internal): Add CW_INT_SETLOCALE case to + allow to call internal_setlocale(). + * nlsfuncs.cc (internal_setlocale): Make externally available. + * include/cygwin/version.h: Bump API minor number. + * include/sys/cygwin.h (cygwin_getinfo_types): Add CW_INT_SETLOCALE. + + * nlsfuncs.cc (lc_mbstowcs): Fix call to f_mbtowc. + (__set_locale_from_locale_alias): Ignore "@cjknarrow" modifier. + 2010-02-07 Corinna Vinschen * nlsfuncs.cc (__get_lcid_from_locale): Handle "@cyrillic" modifier diff --git a/winsup/cygwin/external.cc b/winsup/cygwin/external.cc index 4d7f03d1b..bbf675a64 100644 --- a/winsup/cygwin/external.cc +++ b/winsup/cygwin/external.cc @@ -1,7 +1,7 @@ /* external.cc: Interface to Cygwin internals from external programs. Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, - 2006, 2007, 2008, 2009 Red Hat, Inc. + 2006, 2007, 2008, 2009, 2010 Red Hat, Inc. Written by Christopher Faylor @@ -468,6 +468,12 @@ cygwin_internal (cygwin_getinfo_types t, ...) res = 0; } break; + case CW_INT_SETLOCALE: + { + extern void internal_setlocale (); + internal_setlocale (); + res = 0; + } default: set_errno (ENOSYS); diff --git a/winsup/cygwin/include/cygwin/version.h b/winsup/cygwin/include/cygwin/version.h index f846ac22e..44d660430 100644 --- a/winsup/cygwin/include/cygwin/version.h +++ b/winsup/cygwin/include/cygwin/version.h @@ -375,12 +375,13 @@ details. */ 219: Export dup3, pipe2, O_CLOEXEC, F_DUPFD_CLOEXEC. 220: Export accept4, SOCK_CLOEXEC, SOCK_NONBLOCK. 221: Export strfmon. + 222: CW_INT_SETLOCALE added. */ /* Note that we forgot to bump the api for ualarm, strtoll, strtoull */ #define CYGWIN_VERSION_API_MAJOR 0 -#define CYGWIN_VERSION_API_MINOR 221 +#define CYGWIN_VERSION_API_MINOR 222 /* There is also a compatibity version number associated with the shared memory regions. It is incremented when incompatible diff --git a/winsup/cygwin/include/sys/cygwin.h b/winsup/cygwin/include/sys/cygwin.h index 60fc9f05e..6c04dc8e1 100644 --- a/winsup/cygwin/include/sys/cygwin.h +++ b/winsup/cygwin/include/sys/cygwin.h @@ -1,7 +1,7 @@ /* sys/cygwin.h Copyright 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2006, - 2007, 2008, 2009 Red Hat, Inc. + 2007, 2008, 2009, 2010 Red Hat, Inc. This file is part of Cygwin. @@ -145,7 +145,8 @@ typedef enum CW_SETERRNO, CW_EXIT_PROCESS, CW_SET_EXTERNAL_TOKEN, - CW_GET_INSTKEY + CW_GET_INSTKEY, + CW_INT_SETLOCALE } cygwin_getinfo_types; /* Token type for CW_SET_EXTERNAL_TOKEN */ -- 2.43.5