[Flightgear-devel] JSBsim models

2012-10-28 Thread kunai090
Hi - I'm kunai. I have some questions about Aeromatic that hopefully some of you can give me answers. 1) Is it possible to use Aeromatic to make a helicopter model ? 2) Which engine type should be chosen at step3 (of Aerimatic) when makingĀ  a helicopter model? Thank you. kunai---

Re: [Flightgear-devel] Minor tweaks for MSVC11

2012-10-28 Thread Alex Barrett
Good work Rob, saves some people some time I'm sure. Thank you. Alex On 28 October 2012 06:59, Rob Dosogne wrote: > Using MSVC11 (Visual Studio 2012), I've found the following issues > that prevent a successful compile: > > - 'bzero' does not exist. > - 'std::greater' is now found in . > > > >

[Flightgear-devel] Minor tweaks for MSVC11

2012-10-28 Thread Rob Dosogne
Using MSVC11 (Visual Studio 2012), I've found the following issues that prevent a successful compile: - 'bzero' does not exist. - 'std::greater' is now found in . Solutions: simgear/io/HTTPClient.cxx:454 bzero(&zlib, sizeof(z_stream)); should be changed to: memset(&zlib, 0, sizeof(z_str