Re: [Flightgear-devel] 747 PFD Problem

2005-01-07 Thread Arnt Karlsen
On Fri, 07 Jan 2005 15:50:22 +0800, Innis wrote in message 
[EMAIL PROTECTED]:

 Thanks Chris looks like what ever the problem was has now been fixed.
 But I will have to wait for the next release as I don't build from
 CVS.

..would this help get you started?  You ofcourse need to recheck the
paths to fit your own system, and I screwed it up, it needs all the cvs
passwords entered.  ;o)   :
[EMAIL PROTECTED]:/mnt/sda2/local/src # cat rebuild-FlightGear-from-cvs
#!/bin/bash
###
###
# Copyright (c) 2005 Arnt Karlsen 
# Licensed under the GPL v2
# /usr/local/src/rebuild-FlightGear-from-cvs
###
###

cd /usr/local/src/Plib/
cvs -d:pserver:[EMAIL PROTECTED]:/cvsroot/plib login
touch Plib-rebuilt-from-cvs-`date -u +%F+%H.%M.%S.%Z`
cvs -z3 -d:pserver:[EMAIL PROTECTED]:/cvsroot/plib co plib

cd Plib/plib/
# cvs update -d -P
make clean
# sh autogen.sh
./configure --prefix=/usr/local --exec-prefix=/usr/local
make
make install

###
###

cd /usr/local/src/Open-AL/
cvs -d:pserver:[EMAIL PROTECTED]:/usr/local/cvs-repository
login touch Open-AL-rebuilt-from-cvs-`date -u +%F+%H.%M.%S.%Z`
cvs -d:pserver:[EMAIL PROTECTED]:/usr/local/cvs-repository
co openal

cd openal/
# cvs update -d -P
make clean
sh ./autogen.sh
# ./configure --help |less
./configure --enable-optimization --prefix=/usr/local
make
make install

# cd /usr/local/src
###
###

cd /usr/local/src/GLut/
cvs -d:pserver:[EMAIL PROTECTED]:/cvsroot/freeglut login
touch freeglut-rebuilt-from-cvs-`date -u +%F+%H.%M.%S.%Z`
cvs -z3 -d:pserver:[EMAIL PROTECTED]:/cvsroot/freeglut co
freeglut cd freeglut/freeglut/
# cvs update -d -P
make clean
sh autogen.sh
# ./configure --help |less
./configure --with-x --enable-optimization --prefix=/usr/local \
--with-plib=/usr/local --with-threads
make
make install

###
###

cd /usr/local/src/SimGear-0.3/
cvs -d :pserver:[EMAIL PROTECTED]:/var/cvs/SimGear-0.3 login
touch SimGear-rebuilt-from-cvs-`date -u +%F+%H.%M.%S.%Z`
cvs -d :pserver:[EMAIL PROTECTED]:/var/cvs/SimGear-0.3 co source
cd source/
# cvs update -d -P
# ./configure --prefix=/usr/local --exec-prefix=/usr/local
make clean
sh autogen.sh
# ./configure --help |less
./configure --enable-optimization --prefix=/usr/local
--with-jpeg-factory \ --with-plib=/usr/local --with-threads
make
make install

###
###

cd /usr/local/src/FlightGear-0.9/
cvs -d :pserver:[EMAIL PROTECTED]:/var/cvs/FlightGear-0.9
login touch FlightGear-rebuilt-from-cvs-`date -u +%F+%H.%M.%S.%Z`
cvs -d :pserver:[EMAIL PROTECTED]:/var/cvs/FlightGear-0.9 co
source cvs -d
:pserver:[EMAIL PROTECTED]:/var/cvs/FlightGear-0.9 co data
# cd source ;cvs update -d -P ;cd ../data/ ;cvs update -d -P ;cd -
cd /usr/local/src/FlightGear-0.9/source/
make clean
sh autogen.sh
./configure --with-x --enable-optimization --prefix=/usr/local \
--with-jpeg-factory --with-plib=/usr/local --with-simgear=/usr/local \
--enable-sp-fdms --with-multiplayer --with-threads
make
make install

###
###

cd /usr/local/src/Atlas/
cvs -d:pserver:[EMAIL PROTECTED]:/cvsroot/atlas login
touch Atlas-rebuilt-from-cvs-`date -u +%F+%H.%M.%S.%Z`
cvs -z3 -d:pserver:[EMAIL PROTECTED]:/cvsroot/atlas co Atlas
cd Atlas/
sh autogen.sh
# ./configure --help |less
./configure --with-x --with-plib=/usr/local
make
make install

# terrasync --help
#
# fgfs --show-aircraft --fg-root=/mnt/sda2/local/src/FlightGear-0.9/data
# fgfs --show-aircraft --fg-root=/mnt/sda2/local/src/FlightGear-0.9/data
# |less
#
###
###
#
# cd /usr/local/src/ClusterConf/
# cvs -d :pserver:[EMAIL PROTECTED]:/cvs login
# cvs -d :pserver:[EMAIL PROTECTED]:/cvs checkout clusterconf
#



-- 
..med vennlig hilsen = with Kind Regards from Arnt... ;-)
...with a number of polar bear hunters in his ancestry...
  Scenarios always come in sets of three: 
  best case, worst case, and just in case.


___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] 747 PFD Problem

2005-01-07 Thread Jim Wilson
Innis Cunningham said:

 Thanks Chris looks like what ever the problem was has now been fixed.
 But I will have to wait for the next release as I don't build from CVS.

Are you able to build from source though?  There is a preview release out that
is pretty good.  Also there is a patch file on the flightgear download page
which will get you from 0.9.6 to 0.9.8.pre2 with only 11mb download (as
opposed to 89mb).

Best,

Jim


___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] 747 PFD Problem

2005-01-07 Thread Innis Cunningham
Thank you Arnt and Jim
I have tried to learn to compile from source and have succeeded once
or twice using cygwin but it is a slow painfull process.
While people here and elsewhere say how easy it is I at present dont find
it so.
On the otherhand I have no trouble maintaining 747,767, Airbus and the like.
Engine runs autopilot problems even down to making sure your reading lite
works when you fly.
So I guess we all have our area's of skill.
 Jim Wilson writes
Innis Cunningham said:
 Thanks Chris looks like what ever the problem was has now been fixed.
 But I will have to wait for the next release as I don't build from CVS.
Are you able to build from source though?  There is a preview release out 
that
is pretty good.  Also there is a patch file on the flightgear download page
which will get you from 0.9.6 to 0.9.8.pre2 with only 11mb download (as
opposed to 89mb).

Best,
Jim
Cheers
Innis

___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] 747 PFD Problem

2005-01-06 Thread Chris Metzler
On Wed, 05 Jan 2005 21:32:41 +0800
Innis Cunningham wrote:

 Hi All
 
 Has anyone else noticed that the airspeed display and
 the altitude display go to all zero's when the aircraft nose
 goes below the horizon in FG 9.6.Also on T/O roll on 28R at KSFO they
 go to zero when the A/C gets to about 100 kts.I guess something
 is broke because the problem dose not happen in 9.5.Very strange
 because the airspeed tape and the altitude tape work just fine.
 I guess not a lot of people fly the heavies or this would have
 been noticed earlier.Unless it only happens on the windows version.

I can't reproduce this with current CVS.

-c

-- 
Chris Metzler   [EMAIL PROTECTED]
(remove snip-me. to email)

As a child I understood how to give; I have forgotten this grace since I
have become civilized. - Chief Luther Standing Bear


pgpncIQwQHu0x.pgp
Description: PGP signature
___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d

Re: [Flightgear-devel] 747 PFD Problem

2005-01-06 Thread Innis Cunningham

 Chris Metzler  writes
On Wed, 05 Jan 2005 21:32:41 +0800
Innis Cunningham wrote:

 Hi All

 Has anyone else noticed that the airspeed display and
 the altitude display go to all zero's when the aircraft nose
 goes below the horizon in FG 9.6.Also on T/O roll on 28R at KSFO they
 go to zero when the A/C gets to about 100 kts.I guess something
 is broke because the problem dose not happen in 9.5.Very strange
 because the airspeed tape and the altitude tape work just fine.
 I guess not a lot of people fly the heavies or this would have
 been noticed earlier.Unless it only happens on the windows version.
I can't reproduce this with current CVS.
Thanks Chris looks like what ever the problem was has now been fixed.
But I will have to wait for the next release as I don't build from CVS.
-c
--
Chris Metzler
Cheers
Innis

___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] 747 PFD Problem

2005-01-05 Thread Jim Wilson
Innis Cunningham said:

 Hi All
 
 Has anyone else noticed that the airspeed display and
 the altitude display go to all zero's when the aircraft nose
 goes below the horizon in FG 9.6.Also on T/O roll on 28R at KSFO they
 go to zero when the A/C gets to about 100 kts.I guess something
 is broke because the problem dose not happen in 9.5.Very strange
 because the airspeed tape and the altitude tape work just fine.
 I guess not a lot of people fly the heavies or this would have
 been noticed earlier.Unless it only happens on the windows version.
 
 Cheers
 Innis

This seems to be working fine at the moment (0.9.8.pre1).  You mentioned that
the tape works fine.  I'm assuming that you know the mageneta characters are
autopilot settings.  Either way they would not be changing when you drop the
nose unless maybe you were doing something AP related at the same time.

Best,

Jim


___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d