Dave Perry wrote:

After noting Sid Boyce note concerning freeglut on the users list where ~/.fgfsrc was the issue, I renamed that file and fgfs worked. Then I checked which option in fgrun would cause the freeglut abort. The only problem option I found is
--enable-clouds3d
Same result from the command line.
./bin/fgfs
runs
and
./bin/fgfs --enable-clouds3d
causes the same abort in my other note.
Does this need to be checked before the 0.9.9 release?

Can you try the attached patch ?

Harald.

Index: main.cxx
===================================================================
RCS file: /var/cvs/FlightGear-0.9/source/src/Main/main.cxx,v
retrieving revision 1.213
diff -u -r1.213 main.cxx
--- main.cxx    17 Nov 2005 22:54:46 -0000      1.213
+++ main.cxx    18 Nov 2005 08:44:51 -0000
@@ -995,7 +1071,7 @@
     fgOSOpenWindow( fgGetInt("/sim/startup/xsize"),
                     fgGetInt("/sim/startup/ysize"),
                     fgGetInt("/sim/rendering/bits-per-pixel"),
-                    fgGetBool("/sim/rendering/clouds3d-enable"),
+                    false && fgGetBool("/sim/rendering/clouds3d-enable"),
                     get_stencil_buffer,
                     fgGetBool("/sim/startup/fullscreen") );
 

_______________________________________________
Flightgear-devel mailing list
[email protected]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d

Reply via email to