Re: [Flightgear-devel] [Simgear-cvslogs] CVS: source/simgear/misc

2009-07-27 Thread Martin Spott
"Frederic Bouvier" wrote: > Oops! Windows is case insensitive :-( If someone can fix that before I can, > please do. For your convenience, apply: http://foxtrot.mgras.net/static/SGMath.diff.bz2 http://foxtrot.mgras.net/static/FGMath.diff.bz2 Martin. -- Unix _IS_ user friendly - it's just

Re: [Flightgear-devel] [Simgear-cvslogs] CVS: source/simgear/misc

2009-07-27 Thread Martin Spott
Martin Spott wrote: > "Frederic Bouvier" wrote: >> Oops! Windows is case insensitive :-( If someone can fix that before I can, >> please do. > > For your convenience, apply: s/convenience/inconvenience/g, I forgot the one in FlightGear/utils/GPSsmooth/UGear_telnet.cxx Martin. -- Unix

Re: [Flightgear-devel] [Simgear-cvslogs] CVS: source/simgear/misc

2009-07-27 Thread Frederic Bouvier
It should be fixed now. Sorry again -Fred -- message original -- Sujet: Re: [Flightgear-devel] [Simgear-cvslogs] CVS: source/simgear/misc De: Martin Spott Date: 27.07.2009 08:13 Martin Spott wrote: > "Frederic Bouvier" wrote: >> Oops! Windows is case insensi

Re: [Flightgear-devel] [Simgear-cvslogs] CVS: source/simgear/misc

2009-07-27 Thread Martin Spott
"Frederic Bouvier" wrote: > It should be fixed now. Sorry again No problem, works now as advertized, Martin. -- Unix _IS_ user friendly - it's just selective about who its friends are ! --

Re: [Flightgear-devel] [Simgear-cvslogs] CVS: source/simgear/misc interpolator.cxx, 1.2,

2009-07-26 Thread Martin Spott
Frederic Bouvier wrote: > Update of /var/cvs/SimGear-0.3/source/simgear/misc > In directory baron.flightgear.org:/tmp/cvs-serv13995/simgear/misc > > Modified Files: >interpolator.cxx > Log Message: > Compile latest SimGear under MSVC9 > > Index: interpolator.cxx > ===

Re: [Flightgear-devel] [Simgear-cvslogs] CVS: source/simgear/misc interpolator.cxx, 1.2,

2009-07-27 Thread Frederic Bouvier
Oops! Windows is case insensitive :-( If someone can fix that before I can, please do. Sorry -Fred -- message original -- Sujet: Re: [Flightgear-devel] [Simgear-cvslogs] CVS: source/simgear/misc interpolator.cxx, 1.2, De: Martin Spott Date: 26.07.2009 21:18 Frederic Bouvier

Re: [Flightgear-devel] [Simgear-cvslogs] CVS: source/simgear/misc strutils.cxx, 1.4, 1.5 strutils.hxx, 1.4, 1.5

2009-09-30 Thread Curtis Olson
Hi Jim, I just noticed you added an OSG dependency to strutils.cxx/hxx If possible it would be nice to avoid adding graphics system dependencies to these text manipulation libraries. SimGear and SimGear code is used in a variety of places beyond FlightGear, even in embedded systems where compili

Re: [Flightgear-devel] [Simgear-cvslogs] CVS: source/simgear/misc strutils.cxx, 1.4, 1.5 strutils.hxx, 1.4, 1.5

2009-09-30 Thread Curtis Olson
Ok, duh! I see that is a single character function, but there has to be a class function or it can't be too hard to whip up a little function ourselves. Thanks, Curt. On Wed, Sep 30, 2009 at 1:44 PM, Curtis Olson wrote: > Hi Jim, > > I just noticed you added an OSG dependency to strutils.cxx/

Re: [Flightgear-devel] [Simgear-cvslogs] CVS: source/simgear/misc strutils.cxx, 1.4, 1.5 strutils.hxx, 1.4, 1.5

2009-09-30 Thread Simon Hollier
Hello, On Wed, Sep 30, 2009 at 2:47 PM, Curtis Olson wrote: > Ok, duh! I see that is a single character function, but there has to be a > class function or it can't be too hard to whip up a little function > ourselves. I don't think there's an STL function, but there is boost::to_lower(str) or

Re: [Flightgear-devel] [Simgear-cvslogs] CVS: source/simgear/misc strutils.cxx, 1.4, 1.5 strutils.hxx, 1.4, 1.5

2009-09-30 Thread James Turner
On 30 Sep 2009, at 20:15, Simon Hollier wrote: > I don't think there's an STL function, but there is > boost::to_lower(str) or even something like: > > for (unsigned i=0; i < str.length(); ++i) { >str[i] = tolower(str[i]); > } I already chatted to Tim about this, I'm going to switch to the

Re: [Flightgear-devel] [Simgear-cvslogs] CVS: source/simgear/misc strutils.cxx, 1.4, 1.5 strutils.hxx, 1.4, 1.5

2009-10-05 Thread James Turner
On 30 Sep 2009, at 19:44, Curtis Olson wrote: > I just noticed you added an OSG dependency to strutils.cxx/hxx If > possible it would be nice to avoid adding graphics system > dependencies to these text manipulation libraries. SimGear and > SimGear code is used in a variety of places beyo

Re: [Flightgear-devel] [Simgear-cvslogs] CVS: source/simgear/misc strutils.cxx, 1.4, 1.5 strutils.hxx, 1.4, 1.5

2009-10-05 Thread Curtis Olson
Hi Jim, Thanks for the quick fix on the strutils. In this case, (haha, so to speak) yes, I think if code is already referencing OpenGL, then it would be fair to replace that with code that references OSG. And yes, if you can generate png's instead of the 42x larger ppm format, that would be a bi