Re: [Flightgear-devel] New Sound system committed

2009-10-26 Thread dave perry
dave perry wrote: > Erik Hofman wrote: > >> It would be nice to know who of you who have problems run on 64-bit and >> if any one with these problems (sounds not playing) actually runs in 32-bit. >> >> Erik >> >> -- >>

Re: [Flightgear-devel] New Sound system committed

2009-10-26 Thread dave perry
Erik Hofman wrote: > It would be nice to know who of you who have problems run on 64-bit and > if any one with these problems (sounds not playing) actually runs in 32-bit. > > Erik > > -- > Come build with us! The BlackBer

Re: [Flightgear-devel] [GIT] various fixes including atcvoice, commlist and nans

2009-10-26 Thread Tim Moore
On 10/26/2009 06:30 PM, Alan Teeder wrote: > With the current CVS and VC++ 2008 Express I now get this compilation error: > > "Compiling... > fg_init.cxx > ..\..\..\src\Main\fg_init.cxx(149) : error C3861: 'gethostname': identifier > not found" > > Also, as already discussed here, "#include " is

Re: [Flightgear-devel] Sound System debugging

2009-10-26 Thread Erik Hofman
Alright, thanks to FGViewer::recalcLookFrom I think I've nailed down the position and orientation stuff. I did not yet check whether the positions and orientations and velocity vectors are correct relative to each other, but if the current code still generates sounds for everybody that part sh

Re: [Flightgear-devel] Prime Meridian Crash

2009-10-26 Thread Curtis Olson
Hi Alex, Ok, based on the backtrace, this would implicate something in the gps or perhaps FGPositioned code trying to do some sort of spatial sort? Regards, Curt. On Mon, Oct 26, 2009 at 3:54 PM, Alex D-HUND wrote: > > > It would be interesting to see what the back trace is with > > > optimiza

Re: [Flightgear-devel] Prime Meridian Crash

2009-10-26 Thread Alex D-HUND
> > It would be interesting to see what the back trace is with > > optimization turned on. > > Absolutely - unfortunately, for whatever reason, none of the people > who can easily generate a backtrace, have been able to reproduce the > crash - I've tried, Jester has tried, and assorted other

Re: [Flightgear-devel] [GIT] various fixes including atcvoice, commlist and nans

2009-10-26 Thread Alan Teeder
For the missing gethostname, add near the top of fg_init.cxx #if defined (MSC_VER) #include "Winsock2.h" #endif Alan > -Original Message- > From: Alan Teeder [mailto:ajtee...@v-twin.org.uk] > Sent: 26 October 2009 17:31 > To: 'FlightGear developers discussions' > Subject: Re: [Flightg

Re: [Flightgear-devel] Prime Meridian Crash

2009-10-26 Thread James Turner
On 26 Oct 2009, at 17:15, Curtis Olson wrote: > It would be interesting to see what the back trace is with > optimization turned on. Absolutely - unfortunately, for whatever reason, none of the people who can easily generate a backtrace, have been able to reproduce the crash - I've tried,

Re: [Flightgear-devel] [GIT] various fixes including atcvoice, commlist and nans

2009-10-26 Thread Alan Teeder
With the current CVS and VC++ 2008 Express I now get this compilation error: "Compiling... fg_init.cxx ..\..\..\src\Main\fg_init.cxx(149) : error C3861: 'gethostname': identifier not found" Also, as already discussed here, "#include " is needed before "#include " in perfomancedb.cxx, FGDeviceConf

Re: [Flightgear-devel] [GIT] various fixes including atcvoice, commlist and nans

2009-10-26 Thread stefan riemens
Excuse me, sorry for wasting time... Indeed a cvs conflict! 2009/10/26, Csaba Halász : > On Mon, Oct 26, 2009 at 5:18 PM, stefan riemens > wrote: >> Unfortunately, this has broken mingw x-compilation for me: >> ATCVoice.cxx:42: error: expected unqualified-id before '<<' token > > Please make sure

Re: [Flightgear-devel] Prime Meridian Crash

2009-10-26 Thread Curtis Olson
On Mon, Oct 26, 2009 at 4:14 AM, James Turner wrote: > If it's an optimisation-related bug, tracing it is going to be pretty > awful. That said, the crash seems rather widespread for a straight > compiler issue. I'm also surprised that a compiler bug would change > frequency based on compile opti

Re: [Flightgear-devel] [GIT] various fixes including atcvoice, commlist and nans

2009-10-26 Thread Csaba Halász
On Mon, Oct 26, 2009 at 5:18 PM, stefan riemens wrote: > Unfortunately, this has broken mingw x-compilation for me: > ATCVoice.cxx:42: error: expected unqualified-id before '<<' token Please make sure you don't have a cvs conflict. Line 42 should be "using namespace std;" and no << around there.

Re: [Flightgear-devel] [GIT] various fixes including atcvoice, commlist and nans

2009-10-26 Thread stefan riemens
Unfortunately, this has broken mingw x-compilation for me: i686-pc-mingw32-g++ -DHAVE_CONFIG_H -I. -I../../src/Include -I../.. -I../../src -I/usr/i686-pc-mingw32/sys-root/mingw/include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions --param=ssp-buffer-size=4 -mms-bitfields -D_REENTRANT -

Re: [Flightgear-devel] Altimeter setting does not produce correct field altitude

2009-10-26 Thread Ron Jensen
On Mon, 2009-10-26 at 07:54 +0100, Tim Moore wrote: > On 10/17/2009 07:42 PM, Ron Jensen wrote: > > On Sat, 2009-10-17 at 11:24 -0600, dave perry wrote: > >> With current cvs update on my notebook, I am not getting the correct > >> field elevation when I set the altimeter to match the real weather

Re: [Flightgear-devel] [GIT] various fixes including atcvoice, commlist and nans

2009-10-26 Thread Erik Hofman
Csaba Halász wrote: > On Mon, Oct 26, 2009 at 10:08 AM, James Turner wrote: >> >> For these kind of fixes, I'd much rather you committed them straight >> away to CVS, because it's easy for anyone to look at a single NaN fix >> (or whatever) and convince themselves it's correct - or raise an >> obj

Re: [Flightgear-devel] FlightGear URL verification patch

2009-10-26 Thread leee
On Monday 26 Oct 2009, James Sleeman wrote: > On 26/10/09 04:39, Durk Talsma wrote: > > The code itself was > > committed under the GPL, with the explicit intention of > > exposing crooks who had been tinkering with the binary. Anybody > > still has the right to change that source code, to modify i

Re: [Flightgear-devel] [GIT] various fixes including atcvoice, commlist and nans

2009-10-26 Thread Csaba Halász
On Mon, Oct 26, 2009 at 10:08 AM, James Turner wrote: > > > For these kind of fixes, I'd much rather you committed them straight > away to CVS, because it's easy for anyone to look at a single NaN fix > (or whatever) and convince themselves it's correct - or raise an > objection. When many trivial

Re: [Flightgear-devel] Prime Meridian Crash

2009-10-26 Thread Csaba Halász
On Mon, Oct 26, 2009 at 10:40 AM, James Turner wrote: > > Incidentally, -O0 often implies that all values are initialised to > zero, which could by why it fixes the problem. Valgrind should catch > such an issue, if anyone is able to actually fly FG while running > under VG - on Mac the performanc

Re: [Flightgear-devel] Prime Meridian Crash

2009-10-26 Thread James Turner
On 26 Oct 2009, at 09:14, James Turner wrote: > If it's an optimisation-related bug, tracing it is going to be pretty > awful. That said, the crash seems rather widespread for a straight > compiler issue. I'm also surprised that a compiler bug would change > frequency based on compile options. S

Re: [Flightgear-devel] Prime Meridian Crash

2009-10-26 Thread James Turner
On 25 Oct 2009, at 21:24, Alex DaHUND wrote: > Now I was able to make some backtraces (http://nopaste.org/p/ > aPZTtaYYX). Jester pointed out, that this could be a problem of the > optimisation during the build process and advised me to configure SG > and FG with option CXXFLAGS="-g -O0". He

Re: [Flightgear-devel] [GIT] various fixes including atcvoice, commlist and nans

2009-10-26 Thread James Turner
On 25 Oct 2009, at 16:35, Csaba Halász wrote: > Hence, I didn't > request a merge via gitorious so as to give the respective "owners" of > the areas I changed a chance to comment on and/or commit my patches > and not to put this burden on poor Tim :) I can of course supply > diffs to anybody not