Re: Problems with Locales on OS/X for bsd-port and macosx-port

2011-05-11 Thread Henri Gomez
Patch author is on the JIRA. I'll contact him. Le 11 mai 2011 à 18:25, Greg Lewis a écrit : > On Wed, May 11, 2011 at 10:49:01AM +0200, Henri Gomez wrote: >> Hi to all, >> >> Any news about http://java.net/jira/browse/MACOSX_PORT-38 ? >> >> Patch provided in JIRA should fix build problems on

Re: Problems with Locales on OS/X for bsd-port and macosx-port

2011-05-11 Thread Greg Lewis
On Wed, May 11, 2011 at 10:49:01AM +0200, Henri Gomez wrote: > Hi to all, > > Any news about http://java.net/jira/browse/MACOSX_PORT-38 ? > > Patch provided in JIRA should fix build problems on OS/X platform and > may be included in bsd-port branch also ? > Works very well for me on OS/X for both

Re: Problems with Locales on OS/X for bsd-port and macosx-port

2011-05-11 Thread Henri Gomez
Hi to all, Any news about http://java.net/jira/browse/MACOSX_PORT-38 ? Patch provided in JIRA should fix build problems on OS/X platform and may be included in bsd-port branch also ? Works very well for me on OS/X for both bsd/macox ports builds WDYT ? 2011/4/27 Henri Gomez : > JIRA created : >

Re: Problems with Locales on OS/X for bsd-port and macosx-port

2011-04-27 Thread Henri Gomez
JIRA created : http://java.net/jira/browse/MACOSX_PORT-38 2011/4/27 Henri Gomez : > Seems there is some delay in ML. > > I'll create a JIRA, attaching the sample code. > > Le 27 avr. 2011 à 16:17, Mike Swingler a écrit : > >> On Feb 2, 2011, at 1:23 PM, Henri Gomez wrote: >> >>> I've got a samp

Re: Problems with Locales on OS/X for bsd-port and macosx-port

2011-04-27 Thread Henri Gomez
Seems there is some delay in ML. I'll create a JIRA, attaching the sample code. Le 27 avr. 2011 à 16:17, Mike Swingler a écrit : > On Feb 2, 2011, at 1:23 PM, Henri Gomez wrote: > >> I've got a sample app to test locale : >> >> >> import java.util.Locale; >> >> >> public class TestLocale

Re: Problems with Locales on OS/X for bsd-port and macosx-port

2011-04-27 Thread Mike Swingler
On Feb 2, 2011, at 1:23 PM, Henri Gomez wrote: > I've got a sample app to test locale : > > > import java.util.Locale; > > > public class TestLocales { > > public static void main(String args[]) { > > Locale[] lLocs = Locale.getAvailableLocales(); > > for (Loc

Re: Problems with Locales on OS/X for bsd-port and macosx-port

2011-02-02 Thread Gary Meyer
I don't know why OpenJDK is returning such bad data, but as far as OS/X goes, these are normal locales. The first few characters denotes a language, and the characters after the underscore usually refer to a time zone or country. So: en => english en_US => English, United States en_MT => Englis

Problems with Locales on OS/X for bsd-port and macosx-port

2011-02-02 Thread Henri Gomez
I've got a sample app to test locale : import java.util.Locale; public class TestLocales { public static void main(String args[]) { Locale[] lLocs = Locale.getAvailableLocales(); for (Locale lLoc: lLocs) { System.out.println(lLoc);