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
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
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 :
>
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
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
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
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
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);