[Flightgear-devel] [patch] Segfault bugfix

2013-08-22 Thread Stefan Riemens
Hi all, I've found a bug in the new integrated fgcom, which would cause a crash in the following case: 1) start flightgear without fgcom activated (just the default cessna, at KSFO) 2) Start the tutorial Straight in landing 3) Crash I suspect it would crash on reset as well, but I haven't tested

Re: [Flightgear-devel] Switching from PUI to osgWidget

2012-07-30 Thread stefan riemens
Sorry for responding this late, I've been on a horrible internet connection. 2012/7/26 Thomas Geymayer tom...@gmail.com: 2012/7/26 James Turner zakal...@mac.com: Okay, I wasn't clear from the Wiki page what the final idea was. As you say, so long as we're going through show-dialog it should

Re: [Flightgear-devel] Switching from PUI to osgWidget

2012-07-25 Thread stefan riemens
Hi Thomas, This is very convincing! Congratulations, that looks really neat. Having seen this, I think we'd better go with the canvas approach. It would require quite a lot of code to get osgWidget to produce that... Stefan 2012/7/25 Thomas Geymayer tom...@gmail.com: Am 2012-07-24 19:35,

Re: [Flightgear-devel] Switching from PUI to osgWidget

2012-07-24 Thread stefan riemens
, schrieb Thomas Geymayer: Hi Stefan, Am 2012-07-21 22:46, schrieb stefan riemens: It's obviously a long time wish to get rid of the PLIB dependency, and one of the main subsystems using it is the GUI. There are a couple of things lacking in possibilities with the current implementation: - Proper

[Flightgear-devel] Switching from PUI to osgWidget

2012-07-21 Thread stefan riemens
Hi all! Let me quickly introduce myself, I'm a dutch software engineering student who has been lurking on this list for an embarrassingly long time (think pre FG 1.0...). Anyway, I'd like to get actively involved in FlightGear core development. It's obviously a long time wish to get rid of the

Re: [Flightgear-devel] git work flow question

2011-01-24 Thread stefan riemens
Hi Curt, The best way to handle this is definitely using out-of-source builds. In your git repo, just create build-branch dir's, and build from there. For autotools, just run ../configure make make install, or ccmake .. make make install if you want to use cmake. I do this all the time, works

Re: [Flightgear-devel] git for dummies

2011-01-07 Thread stefan riemens
Hi Curt, git merge is your friend! Perhaps a complete example workflow will help you get along: suppose you are on branch next tracking the gitorious branch next. git branch wip -- wip is now an exact copy of the next branch git checkout wip Edit files to add some really cool feature git

Re: [Flightgear-devel] git for dummies

2011-01-07 Thread stefan riemens
PM, stefan riemens wrote: Hi Curt, git merge is your friend! Perhaps a complete example workflow will help you get along: suppose you are on branch next tracking the gitorious branch next. git branch wip       -- wip is now an exact copy of the next branch git checkout wip Edit files to add

Re: [Flightgear-devel] git for dummies

2011-01-04 Thread stefan riemens
What I always do is keep the master (next in FG's case) completely in sync with upstream's master branch. For local modifications I always use another branch. That way, pulling and pushing always works as you'd expect. Merging is easy and cheap with git, i love that! PS, I'm not really a git

Re: [Flightgear-devel] [Atlas-devel] problem linking SimGear-2.0.0 for Atlas build

2010-12-09 Thread stefan riemens
See also http://fedoraproject.org/wiki/Features/ChangeInImplicitDSOLinking You might have luck using the fedora provided simgear libraries (install the SimGear-devel package). I know there are a couple of fedora patches applied to simgear, a.o. a patch for the linker. Stefan 2010/12/9 Brian

Re: [Flightgear-devel] SegFault on Current Git

2010-12-05 Thread stefan riemens
See also http://fedoraproject.org/wiki/Xorg/Debugging Stefan 2010/12/5 Olaf Flebbe f...@oflebbe.de: Hi,   I'll post a bug on Fedora's bug tracker, but if anyone using this list knows what kind of information I can provide to them, that would help. Please have a look at

Re: [Flightgear-devel] SimGear Shared Object Libaries

2010-08-08 Thread stefan riemens
Just a quick hint -- Fedora has the same shared-libs policy and packages simgear. I'm pretty sure they have patches you could use straight-away. Stefan 2010/8/3 Chris Baines cbain...@gmail.com Thank you both for your quick responses, this makes the situation more clear. Is it possible to

[Flightgear-devel] Compilation broken

2010-07-02 Thread stefan riemens
Hi all, After doing git pull, flightgear doesn't configure anymore: ../flightgear/configure --prefix=/home/stefan/flightgear/install --with-simgear=/home/stefan/flightgear/install --with-osg=/home/stefan/flightgear/install configure: error: cannot find sources (src/Aircraft/aircraft.cxx) in

Re: [Flightgear-devel] Compilation broken

2010-07-02 Thread stefan riemens
Hmm, I'm sorry... it doesn't. Thanks, Stefan 2010/7/2, James Turner ja...@bugless.co.uk: On 2 Jul 2010, at 10:04, stefan riemens wrote: After doing git pull, flightgear doesn't configure anymore: ../flightgear/configure --prefix=/home/stefan/flightgear/install --with-simgear=/home/stefan

Re: [Flightgear-devel] Compilation broken

2010-07-02 Thread stefan riemens
Check, that fixed it. Thanks a lot! (should have thought of this myself...) Stefan 2010/7/2, James Turner ja...@bugless.co.uk: On 2 Jul 2010, at 13:11, stefan riemens wrote: Hmm, I'm sorry... it doesn't. Hmmm ... check configure.ac no longer refers to Aircraft/aircraft.cxx Ah, perhaps

Re: [Flightgear-devel] Installed, doesn't run.

2010-06-13 Thread stefan riemens
Just a general FYI, installing the nvidia driver is not really that hard in fedora, you just need to know how to do it: 1) Install the rpmfusion repos (rpmfusion.org contains instructions) 2) Run yum install kmod-nvidia -- this will install the driver 3) Edit /etc/grub.conf (as root), adding

Re: [Flightgear-devel] Windows Telnet Problem

2010-05-10 Thread stefan riemens
You should use the --fg-root= flag to point fg to your data tree! 2010/5/10, Christian Menge christ...@freedomworks.ca: Hey Guys, We are developing a custom / demo panel and trying to work with FG telnet. When trying to run the server we get the following error. COMMAND: fgfs

Re: [Flightgear-devel] link problem on new 64 bit system

2010-04-03 Thread stefan riemens
I think a simple yum install openal-soft-devel should fix your issue. That will install the headers and libopenal.so. No need to do manual symlinking. At least, I don't need to do so, and I have practically the same setup... Good luck 2010/4/3, John Denker j...@av8n.com: On 04/03/2010 10:21 AM,

Re: [Flightgear-devel] dme fix

2010-03-08 Thread stefan riemens
Just to let you know, I received the first mail just fine... 2010/3/8, syd adams adams@gmail.com: My first email seems to have vanished , so here goes again ... I fixed the dme so that it writes the source frequency to dme/frequencies/selected-mhz , which allows dme hold to use source 2

Re: [Flightgear-devel] reversible ILS

2009-12-20 Thread stefan riemens
Hi all, I'd like to do a suggestion here, although I'm not able to code it myself (I'm sorry...) How about making allowing one to set the proposed preferred-approach-deg property, but not requiring it. IE, if it is not set, apply the current heuristic or some to be developed improved heuristic.

Re: [Flightgear-devel] FC12 openal and pulseaudio question

2009-11-29 Thread stefan riemens
I'm currently compiling the current cvs, I'll tell you the result when that finishes... (may be tomorrow, data updates are pretty long-taking...) Stefan 2009/11/29, dave perry skida...@mindspring.com: Update on symptoms: I went back to osg-2.8.2, updated SimGear, fgfs, and data from cvs.

Re: [Flightgear-devel] more sound problems with Tuesday cvs update

2009-11-25 Thread stefan riemens
Alternatively, upgrade to something newer. I have found PulseAudio has much improved since f10. (I'm a long-time fedora user myself as well). F10 is going to be end of life (no more updates) within a month time anyway. F12 has been great for me... 2009/11/25, Victhor Foster

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] [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 csaba.hal...@gmail.com: On Mon, Oct 26, 2009 at 5:18 PM, stefan riemens fgfs.ste...@gmail.com wrote: Unfortunately, this has broken mingw x-compilation for me: ATCVoice.cxx:42: error: expected unqualified-id

Re: [Flightgear-devel] heads up - effects

2009-07-17 Thread stefan riemens
The current simgear cvs version doesn't compile for me either. I'm on fedora 11, with gcc 4.4.0. I've tried with both osg 2.8.0 (system version) and osg trunk. See the builderror here: http://briemens.com/fs/simgear-build-error Thanks, Stefan 2009/7/16, Frederic Bouvier fredfgf...@free.fr: Hi

Re: [Flightgear-devel] heads up - effects

2009-07-17 Thread stefan riemens
Thanks, it is indeed Stefan 2009/7/17, Tim Moore timo...@redhat.com: stefan riemens wrote: The current simgear cvs version doesn't compile for me either. I'm on fedora 11, with gcc 4.4.0. I've tried with both osg 2.8.0 (system version) and osg trunk. See the builderror here: http

Re: [Flightgear-devel] drivers

2009-07-16 Thread stefan riemens
Have you tried using the the proprietary FGLRX driver from rpmfusion? I don't have this card myself, so i can't verify whether it works. It's the first thing to pop to mind tho. BTW, this should have probably been sent to the flightgear-users mailinglist... Regards, Stefan 2009/7/16, James J.