bug-gnubg
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Bug-gnubg] Missing glib function in cygwin


From: Michael Petch
Subject: Re: [Bug-gnubg] Missing glib function in cygwin
Date: Thu, 13 Aug 2009 22:16:38 -0600
User-agent: Microsoft-Entourage/12.20.0.090605


On 13/08/09 10:04 PM, "Ingo Macherius" <address@hidden> wrote:

>         while ((n = (int)g_ascii_strtoll(sz, &sz, 10)) != 0) {

Howdy,

You are correct. Cygwin truly Is out of date. To support this we likely
should check to see if this function is supported, and if necessary fall
back to something that does work.

On that note, if you wish to try and get a cygwin release done you may wish
to replace g_ascii_strtoll with strtoll .

I'm not sure if strtoll is on cygwin (It probably is) so the lien would be:

while ((n = (int)strtoll(sz, &sz, 10)) != 0) {






reply via email to

[Prev in Thread] Current Thread [Next in Thread]