[Flightgear-devel] PATCH: Compiler Warnings - Was: Potential issue with magnetic variation?

2009-08-20 Thread Reagan Thomas

Torsten Dreyer wrote:

Is that correct?


Certainly not! Fixed in CVS, thanks for reporting.

Torsten

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july

___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel

  
I've been burned enough on unheeded warnings that I've made it a habit 
to eliminate all warnings in my code. I will be happy to (probably 
slowly) provide patches to do the same for FG, as long as they didn't 
annoy folks. If it's best left to active developers to do this, just say so.


The attached patch should remove the remaining bool conversion warnings 
in native_ctrls.cxx as reported by MS VC90. This patch should provide 
*no functional changes* to the application.



--- C:\FlightGearFresh\flightgear\src\Network\native_ctrls.cxx  Thu Aug 20 
07:37:22 2009
+++ C:\FlightGear\flightgear\src\Network\native_ctrls.cxx   Thu Aug 20 
07:34:15 2009
@@ -372,8 +372,8 @@
 // or
 node-setDoubleValue( spoilers, net-spoilers );  //JWW
 //cout  NET-Spoilers:   net-spoilers  endl;
-fgSetBool( /systems/electrical/outputs/flaps, net-flaps_power );
-node-setBoolValue( flaps-serviceable, net-flap_motor_ok );
+fgSetBool( /systems/electrical/outputs/flaps, net-flaps_power !=0);
+node-setBoolValue( flaps-serviceable, net-flap_motor_ok !=0 );
 
 for ( i = 0; i  FGNetCtrls::FG_MAX_ENGINES; ++i ) {
 // Controls
@@ -387,27 +387,27 @@
 node-getChild( magnetos )-setDoubleValue( net-magnetos[i] );
 node-getChild( starter )-setDoubleValue( net-starter_power[i] );
 node-getChild( feed_tank )-setIntValue( net-feed_tank_to[i] );
-node-getChild( reverser )-setBoolValue( net-reverse[i] );
+node-getChild( reverser )-setBoolValue( net-reverse[i] !=0 );
// Faults
SGPropertyNode *faults = node-getNode( faults, true );
-   faults-setBoolValue( serviceable, net-engine_ok[i] );
+   faults-setBoolValue( serviceable, net-engine_ok[i] !=0 );
faults-setBoolValue( left-magneto-serviceable,
- net-mag_left_ok[i] );
+ net-mag_left_ok[i] !=0 );
faults-setBoolValue( right-magneto-serviceable,
- net-mag_right_ok[i]);
+ net-mag_right_ok[i] !=0);
faults-setBoolValue( spark-plugs-serviceable,
- net-spark_plugs_ok[i] );
+ net-spark_plugs_ok[i] !=0 );
faults-setIntValue( oil-pressure-status, net-oil_press_status[i] );
-   faults-setBoolValue( fuel-pump-serviceable, net-fuel_pump_ok[i] );
+   faults-setBoolValue( fuel-pump-serviceable, net-fuel_pump_ok[i] !=0 
);
 }
 
 fgSetBool( /systems/electrical/outputs/fuel-pump,
-   net-fuel_pump_power[0] );
+   net-fuel_pump_power[0] !=0 );
 
 for ( i = 0; i  FGNetCtrls::FG_MAX_TANKS; ++i ) {
 node = fgGetNode( /controls/fuel/tank, i );
 node-getChild( fuel_selector )
--setBoolValue( net-fuel_selector[i] );
+-setBoolValue( net-fuel_selector[i] !=0 );
 //node-getChild( to_tank )-xfer_tank( i, net-xfer_to[i] );
 }
 node = fgGetNode( /controls/gear );
@@ -422,15 +422,15 @@
 }
 
 node = fgGetNode( /controls/gear, true );
-node-setBoolValue( gear-down, net-gear_handle );
+node-setBoolValue( gear-down, net-gear_handle !=0 );
 //node-setDoubleValue( brake-parking, net-brake_parking );
 //node-setDoubleValue( net-brake_left );
 //node-setDoubleValue( net-brake_right );
 
 node = fgGetNode( /controls/switches, true );
-node-setBoolValue( master-bat, net-master_bat );
-node-setBoolValue( master-alt, net-master_alt );
-node-setBoolValue( master-avionics, net-master_avionics );
+node-setBoolValue( master-bat, net-master_bat !=0 );
+node-setBoolValue( master-alt, net-master_alt !=0 );
+node-setBoolValue( master-avionics, net-master_avionics !=0 );
 
 node = fgGetNode( /environment, true );
 node-setDoubleValue( wind-speed-kt, net-wind_speed_kt );
@@ -456,9 +456,9 @@
 
 if ( honor_freezes ) {
 node = fgGetNode( /sim/freeze, true );
-node-setBoolValue( master, net-freeze  0x01 );
-node-setBoolValue( position, net-freeze  0x02 );
-node-setBoolValue( fuel, net-freeze  0x04 );
+node-setBoolValue( master, (net-freeze  0x01) !=0 );
+node-setBoolValue( position, (net-freeze  0x02) !=0 );
+node-setBoolValue( fuel, (net-freeze  0x04) !=0 );
 }
 }
 

Re: [Flightgear-devel] Potential issue with magnetic variation?

2009-08-20 Thread Torsten Dreyer
 I agree, we are due for an aggressive -Wall clean up and I'd like to remind
 our active developers that they should consider always compiling with
 warning flags activated.  The following is pretty standard for me ...

 CFLAGS=-Wall -O2 CXXFLAGS=-Wall -O2 ./configure

 There is a lot of avoidable warnings that have crept into our code in the
 past few months.

Message copied ;-)

I just cleaned up all the compiler warnings for SimGear, so it now compiles 
without a single warning. 
At least here on 'gcc (SUSE Linux) 4.3.2 [gcc-4_3-branch revision 141291]'

One actual bug (write behind array size) and one possible bug (use of 
uninitialized variable) were discovered and removed.

While at it, I also commented out the building of tabbed_value_test and 
swap_test in simgear/misc and openal_test[12] in simgear/sound in Makefile.am
If this hurts in any way, they are easily reenabled.

Greetings, Torsten

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] Potential issue with magnetic variation?

2009-08-20 Thread Curtis Olson
On Thu, Aug 20, 2009 at 8:26 AM, Torsten Dreyer wrote:

  I agree, we are due for an aggressive -Wall clean up and I'd like to
 remind
  our active developers that they should consider always compiling with
  warning flags activated.  The following is pretty standard for me ...
 
  CFLAGS=-Wall -O2 CXXFLAGS=-Wall -O2 ./configure
 
  There is a lot of avoidable warnings that have crept into our code in the
  past few months.
 
 Message copied ;-)

 I just cleaned up all the compiler warnings for SimGear, so it now compiles
 without a single warning.
 At least here on 'gcc (SUSE Linux) 4.3.2 [gcc-4_3-branch revision 141291]'

 One actual bug (write behind array size) and one possible bug (use of
 uninitialized variable) were discovered and removed.

 While at it, I also commented out the building of tabbed_value_test and
 swap_test in simgear/misc and openal_test[12] in simgear/sound in
 Makefile.am
 If this hurts in any way, they are easily reenabled.


Thanks Torsten!  This effort is long over due!  And we need to continue to
encourage all our developers to turn on the warning flags when they
develop.  Once you get more than a couple normal warnings in the code,
they start to hide actual warnings that could indicate real problems or at
least sloppy coding.

Curt.
-- 
Curtis Olson: http://baron.flightgear.org/~curt/
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] Potential issue with magnetic variation?

2009-08-20 Thread Torsten Dreyer
 Except line 88 of RenderTexture.cpp is not complete for the non GNUC case.
 (sorry)
Oups - fixed!

 VC++ 2008 is still giving a few warnings for other source files, but
 nowhere near as many as before.
Well - VC++ ist not (yet) installed here, so I can't help with that.

Torsten

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


[Flightgear-devel] possible bug in oursun.cxx

2009-08-20 Thread Torsten Dreyer
Hi,

There are some possible floating point exceptions in oursun.cxx:
in SGSun::update(double,double) there is
sun_exp2_punch_through = 2.0/log(visibility);

visibility is assigned the new_visibility _before_ new_visibility is clamped 
to 100 % 45000. Because update is called by SGSun::build with a 
new_visibility of 1, log(1) equals zero which results in division by zero.

And further down, the aerosol factor fails, if visibility was clamped to a 
minimum of 100, because this
aerosol_factor = 80.5 / log( visibility / 100 );
will be 80.5 / log ( 100/100 ) = 80.5 / log(1) = 80.5 / 0

Greetings, Torsten

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] Potential issue with magnetic variation?

2009-08-20 Thread Alan Teeder
Torsten

Thanks - the CVS fix has arrived already.
Alan

-Original Message-
From: Alan Teeder [mailto:ajtee...@v-twin.org.uk] 
Sent: 20 August 2009 16:05
To: 'FlightGear developers discussions'
Subject: Re: [Flightgear-devel] Potential issue with magnetic variation?

Torsten

Well done!!

Except line 88 of RenderTexture.cpp is not complete for the non GNUC case.
(sorry)

VC++ 2008 is still giving a few warnings for other source files, but nowhere
near as many as before.

Alan


-Original Message-
From: Torsten Dreyer [mailto:tors...@t3r.de] 
Sent: 20 August 2009 14:27
To: FlightGear developers discussions
Subject: Re: [Flightgear-devel] Potential issue with magnetic variation?

 I agree, we are due for an aggressive -Wall clean up and I'd like to
remind
 our active developers that they should consider always compiling with
 warning flags activated.  The following is pretty standard for me ...

 CFLAGS=-Wall -O2 CXXFLAGS=-Wall -O2 ./configure

 There is a lot of avoidable warnings that have crept into our code in the
 past few months.

Message copied ;-)

I just cleaned up all the compiler warnings for SimGear, so it now compiles 
without a single warning. 
At least here on 'gcc (SUSE Linux) 4.3.2 [gcc-4_3-branch revision 141291]'

One actual bug (write behind array size) and one possible bug (use of 
uninitialized variable) were discovered and removed.

While at it, I also commented out the building of tabbed_value_test and 
swap_test in simgear/misc and openal_test[12] in simgear/sound in
Makefile.am
If this hurts in any way, they are easily reenabled.

Greetings, Torsten


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus
on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel



--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus
on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] Can't find Plib files when linking

2009-08-20 Thread Tom P

Frederic Bouvier wrote:

- Tom P zomm...@gmail.com a écrit :

  

1) missing dependencies, like jpeg lib, are provided by the OSG
3rdParty package, there's no need to rebuild them from gnuwin32.
This 3rdParty package is available here:

http://www.openscenegraph.org/downloads/stable_releases/OpenSceneGraph-2.8/binaries/Windows/VisualStudio9/3rdParty_Win32Binaries_vc90sp1.zip



You may want to try :
ftp://ftp.ihg.uni-duisburg.de/FlightGear/Win32/MSVC/fgfs-win32-VS90-3rdParty+OSG-20090628.zip

-Fred

  



Thanks, Fred!
That works extremely well for fgfs.exe.

Now moving on to fgrun.exe.

 Tom

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] Potential issue with magnetic variation?

2009-08-20 Thread Alan Teeder
Torsten

Well done!!

Except line 88 of RenderTexture.cpp is not complete for the non GNUC case.
(sorry)

VC++ 2008 is still giving a few warnings for other source files, but nowhere
near as many as before.

Alan


-Original Message-
From: Torsten Dreyer [mailto:tors...@t3r.de] 
Sent: 20 August 2009 14:27
To: FlightGear developers discussions
Subject: Re: [Flightgear-devel] Potential issue with magnetic variation?

 I agree, we are due for an aggressive -Wall clean up and I'd like to
remind
 our active developers that they should consider always compiling with
 warning flags activated.  The following is pretty standard for me ...

 CFLAGS=-Wall -O2 CXXFLAGS=-Wall -O2 ./configure

 There is a lot of avoidable warnings that have crept into our code in the
 past few months.

Message copied ;-)

I just cleaned up all the compiler warnings for SimGear, so it now compiles 
without a single warning. 
At least here on 'gcc (SUSE Linux) 4.3.2 [gcc-4_3-branch revision 141291]'

One actual bug (write behind array size) and one possible bug (use of 
uninitialized variable) were discovered and removed.

While at it, I also commented out the building of tabbed_value_test and 
swap_test in simgear/misc and openal_test[12] in simgear/sound in
Makefile.am
If this hurts in any way, they are easily reenabled.

Greetings, Torsten


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus
on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


[Flightgear-devel] Compiling CVS FlightGear first time-files not found: svn_autth.h, osgd.lib, fltkd.lib

2009-08-20 Thread Randall Green
I want to thank everyone who has helped me so far.
I'm compiling the CVS version of FlightGear and I'm down to 10 errors now.
Files not found are svn_autth.h, osgd.lib, and fltkd.lib.
Does anyone know what code is missing?

Also, I have 7 file not found on sg_d.lib. I see it is in plib and I have
the path to it correct. Why does it not find it?

Randy


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] Compiling CVS FlightGear first time-files not found: svn_autth.h, osgd.lib, fltkd.lib

2009-08-20 Thread Reagan Thomas
Randall Green wrote:
 I want to thank everyone who has helped me so far.
 I'm compiling the CVS version of FlightGear and I'm down to 10 errors now.
 Files not found are svn_autth.h, osgd.lib, and fltkd.lib.
 Does anyone know what code is missing?

 Also, I have 7 file not found on sg_d.lib. I see it is in plib and I have
 the path to it correct. Why does it not find it?

 Randy
 

 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
 trial. Simplify your report design, integration and deployment - and focus on 
 what you do best, core application coding. Discover what's new with 
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 

 ___
 Flightgear-devel mailing list
 Flightgear-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/flightgear-devel
   
The archive:

ftp://ftp.ihg.uni-duisburg.de/FlightGear/Win32/MSVC/fgfs-win32-VS90-3rdParty+OSG-20090628.zip

that Fred suggested contains Fltk and others. It all goes in the 3rdParty 
directory (this is not reflected on the wiki Windows build page yet).

osgd.lib should have come with 
openscenegraph-all-2.8.0-win32-x86-vc90sp1-Debug.tar.gz 
http://www.openscenegraph.org/downloads/stable_releases/OpenSceneGraph-2.8/binaries/Windows/VisualStudio9/openscenegraph-all-2.8.0-win32-x86-vc90sp1-Debug.tar.gz
or
openscenegraph-all-2.8.1-win32-x86-vc90sp1-Debug.zip 
http://www.openscenegraph.org/downloads/stable_releases/OpenSceneGraph-2.8.1/binaries/Windows/VisualStudio9/openscenegraph-all-2.8.1-win32-x86-vc90sp1-Debug.zip

(whichever you're using)

 


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] Compiling CVS FlightGear first time-files not found: svn_autth.h, osgd.lib, fltkd.lib

2009-08-20 Thread Victhor Foster
Just a note: current CVS FG won't compile with a version of OSG lower  
than 2.9.4. You will need code from OSG's SVN repository.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] Compiling CVS FlightGear first time-files not found: svn_autth.h, osgd.lib, fltkd.lib

2009-08-20 Thread Tim Moore
Victhor Foster wrote:
 Just a note: current CVS FG won't compile with a version of OSG lower  
 than 2.9.4. You will need code from OSG's SVN repository.
As far as I know CVS FG compiles with OSG 2.8.2; at least, it did a couple
of weeks ago on my 2.8.2 machine, and I didn't set out to break it. What
problem are you seeing?

Tim

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] Compiling CVS FlightGear first time-files not found: svn_autth.h, osgd.lib, fltkd.lib

2009-08-20 Thread Victhor Foster
I just read it somewhere, I think it was on this list. I never used  
something older than 2.9.4 so I don't know.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] Compiling CVS FlightGear first time-files not found: svn_autth.h, osgd.lib, fltkd.lib

2009-08-20 Thread Frederic Bouvier

- Reagan Thomas a écrit :

 Randall Green wrote:
  I want to thank everyone who has helped me so far.
  I'm compiling the CVS version of FlightGear and I'm down to 10
 errors now.
  Files not found are svn_autth.h, osgd.lib, and fltkd.lib.
  Does anyone know what code is missing?
 
  Also, I have 7 file not found on sg_d.lib. I see it is in plib and I
 have
  the path to it correct. Why does it not find it?
 
  Randy

 The archive:
 
 ftp://ftp.ihg.uni-duisburg.de/FlightGear/Win32/MSVC/fgfs-win32-VS90-3rdParty+OSG-20090628.zip
 
 that Fred suggested contains Fltk and others. It all goes in the
 3rdParty directory (this is not reflected on the wiki Windows build
 page yet).
 
 osgd.lib should have come with 
 openscenegraph-all-2.8.0-win32-x86-vc90sp1-Debug.tar.gz
 http://www.openscenegraph.org/downloads/stable_releases/OpenSceneGraph-2.8/binaries/Windows/VisualStudio9/openscenegraph-all-2.8.0-win32-x86-vc90sp1-Debug.tar.gz
 or
 openscenegraph-all-2.8.1-win32-x86-vc90sp1-Debug.zip
 http://www.openscenegraph.org/downloads/stable_releases/OpenSceneGraph-2.8.1/binaries/Windows/VisualStudio9/openscenegraph-all-2.8.1-win32-x86-vc90sp1-Debug.zip
 
 (whichever you're using)

or install/msvc90/OpenSceneGraph from the archive above, as suggested by the 
name ;-)

BTW, I put a newer one in ftp://ftp.ihg.uni-duisburg.de/FlightGear/Win32/MSVC/

-Fred

-- 
Frédéric Bouvier
http://my.fotolia.com/frfoto/  Photo gallery - album photo
http://fgsd.sourceforge.net/   FlightGear Scenery Designer


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] Compiling CVS FlightGear first time-files not found: svn_autth.h, osgd.lib, fltkd.lib

2009-08-20 Thread Frederic Bouvier

- Tim Moore a écrit :

 Victhor Foster wrote:
  Just a note: current CVS FG won't compile with a version of OSG
 lower  
  than 2.9.4. You will need code from OSG's SVN repository.
 As far as I know CVS FG compiles with OSG 2.8.2; at least, it did a
 couple
 of weeks ago on my 2.8.2 machine, and I didn't set out to break it.
 What
 problem are you seeing?

I confirm that 2.8.2 works

-Fred

-- 
Frédéric Bouvier
http://my.fotolia.com/frfoto/  Photo gallery - album photo
http://fgsd.sourceforge.net/   FlightGear Scenery Designer


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] [Simgear-cvslogs] CVS: source/simgear/scene/tgdb TileEntry.cxx, 1.16, 1.17 TreeBin.cxx, 1.9, 1.10

2009-08-20 Thread James Turner

On 20 Aug 2009, at 14:08, Torsten Dreyer wrote:

 Log Message:
 warning fix: initializing members in the order they are declared  
 keeps gcc happy

Torsten, you are a good man!

Regards,
James




--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] Compiling CVS FlightGear first time-files not found: svn_autth.h, osgd.lib, fltkd.lib

2009-08-20 Thread Reagan Thomas
On Thu, Aug 20, 2009 at 3:42 PM, Frederic Bouvierfredfgf...@free.fr wrote:

 - Tim Moore a écrit :

 Victhor Foster wrote:
  Just a note: current CVS FG won't compile with a version of OSG
 lower
  than 2.9.4. You will need code from OSG's SVN repository.
 As far as I know CVS FG compiles with OSG 2.8.2; at least, it did a
 couple
 of weeks ago on my 2.8.2 machine, and I didn't set out to break it.
 What
 problem are you seeing?

 I confirm that 2.8.2 works

 -Fred

 --
 Frédéric Bouvier
 http://my.fotolia.com/frfoto/              Photo gallery - album photo
 http://fgsd.sourceforge.net/               FlightGear Scenery Designer



Could the long-time compile on Windows, for Windows people on list
list please assist in providing current documentation on the FG wiki
or elsewhere?  The build environment has changed in significant ways
since the last time I had to steal time from work and family to puzzle
my way through it.

I find it relatively easy to get FG to build under Linux... I see the
barrier to entry as fairly high to potential Windows-centric users who
might also be able to contribute code.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel