[Flightgear-devel] Changes to SimGear required?

2002-10-17 Thread Jon Stockill
I've just been trying to compile a current CVS update of both SimGear and FlightGear. Simegear builds properly, but FlightGear falls over in src/Main with: fg_init.cxx: In function `bool fgInitSubsystems()': fg_init.cxx:1046: no matching function for call to `SkySceneLoader::Load (string, double,

Re: [Flightgear-devel] Changes to SimGear required?

2002-10-17 Thread Curtis L. Olson
This definitely looks like a version mismatch between simgear/flightgear. Make sure you've build the latest simgear-cvs and then check all the dumb stuff, like you installed it, you don't have extra older versions of simgear floating around your hard drive, etc. etc. Regards, Curt. Jon

Re: [Flightgear-devel] Changes in SimGear

2002-01-20 Thread Christian Mayer
Curtis L. Olson wrote: Christian Mayer writes: Hi, is there a reason why SimGear/misc/zfstram.hxx was changed from #ifdef HAVE_ZLIB # include zlib.h #else # include simgear/zlib/zlib.h #endif to #include zlib.h It was a slight phylisophical shift. Although zlib

Re: [Flightgear-devel] Changes in SimGear

2002-01-20 Thread Erik Hofman
Christian Mayer wrote: Anyway, could all #include zlib.h lines be changed back to #ifdef HAVE_ZLIB # include zlib.h #else # include simgear/zlib/zlib.h #endif w/o causing any trouble? This would help me. I wouldn't need any other change as the directories are still

Re: [Flightgear-devel] Changes in SimGear

2002-01-20 Thread Christian Mayer
Erik Hofman wrote: Christian Mayer wrote: Anyway, could all #include zlib.h lines be changed back to #ifdef HAVE_ZLIB # include zlib.h #else # include simgear/zlib/zlib.h #endif w/o causing any trouble? This would help me. I wouldn't need any other

[Flightgear-devel] Changes in SimGear

2002-01-19 Thread Christian Mayer
Hi, is there a reason why SimGear/misc/zfstram.hxx was changed from #ifdef HAVE_ZLIB # include zlib.h #else # include simgear/zlib/zlib.h #endif to #include zlib.h ? As ZLIB isn't standard (perhaps except on Linux) it's great to have the fallback to the supplied version. And adding the

Re: [Flightgear-devel] Changes in SimGear

2002-01-19 Thread Christian Mayer
Christian Mayer wrote: Hi, is there a reason why SimGear/misc/zfstram.hxx was changed from #ifdef HAVE_ZLIB # include zlib.h #else # include simgear/zlib/zlib.h #endif to #include zlib.h Apart from fixing all occurances of the single #include zlib.h FGFS complied staight

Re: [Flightgear-devel] Changes in SimGear

2002-01-19 Thread Curtis L. Olson
Christian Mayer writes: Hi, is there a reason why SimGear/misc/zfstram.hxx was changed from #ifdef HAVE_ZLIB # include zlib.h #else # include simgear/zlib/zlib.h #endif to #include zlib.h ? As ZLIB isn't standard (perhaps except on Linux) it's great to have the fallback to