]> git.mxchange.org Git - simgear.git/commitdiff
update library version requirements
authormfranz <mfranz>
Mon, 19 May 2008 15:17:55 +0000 (15:17 +0000)
committermfranz <mfranz>
Mon, 19 May 2008 15:17:55 +0000 (15:17 +0000)
README.OSG
README.plib

index 5cef509fbfebfbdd811e23361b4f7f02f1a65eb5..601f2b3c05d63b80b96c8197b7d1125c423a53d1 100644 (file)
@@ -9,10 +9,10 @@ http://www.openscenegraph.org/
 
 Build notes:
 
-Unzip the file OpenSceneGraph-2.0.zip and install using the following
+Unzip the file OpenSceneGraph-2.4.zip and install using the following
 commands:
 
-unzip OpenSceneGraph-2.0
+unzip OpenSceneGraph-2.4
 cd OpenSceneGraph
 ccmake .
 
index 6743ce9808b7d2f83ebcc5ddf7d1b11579ecf0f9..9ef955fd49435c7610f9cc2227f82081caac045b 100644 (file)
@@ -1,6 +1,6 @@
 [This file is mirrored in both the FlightGear and SimGear packages.]
 
-You *must* have plib version 1.8.4 or later installed on your system
+You *must* have plib version 1.8.5 or later installed on your system
 to build FlightGear!"  Flight Gear is no longer compatible with the
 earlier versions of the library.
 
@@ -30,19 +30,3 @@ cd plib
 make
 make install
 
-Alternatively, it is relatively straightforward to fix the compilation 
-problems in plib
-
-The two errors reported are the following:
-ssgaSky.h:107: error: extra qualification ‘ssgaCelestialBodyList::’ on member ‘ssgaCelestialBodyList’
-ssgaSky.h:195: error: extra qualification ‘ssgaCloudLayerList::’ on member ‘ssgaCloudLayerList’
-
-To fix, open the file plib-1.8.4/src/ssgAux/ssgaSky.h
-
-and change line 107 to read:
-  ~ssgaCelestialBodyList () { removeAll(); }
-and change line 195 to read:
-  ~ssgaCloudLayerList () { removeAll(); }
-
-In other words, remove the "extra qualification" parts from both lines. 
-After these changes, plib-1.8.4. should build and install correctly.