Hello Again

I did all that you explainme, and i got the same error, the solution i found was manually copy the files that metakit create from /usr/local/lib to /usr/lib. I'm almost sure that Mdk 9 doesn't have a metakit installed from the box.

Now i have another problem, everything goes fine, i get good frame rates, but i can't hear anything..is the first time that i have this problem....

Thanks for the help

Aitor



> Hello, im triying to compile Flightgear 0.8.0, on my Madk 9, but when
> i do ./configure, i get: "wrong version of Metakit metakit 2.4.3 or
> newer is required" . I install metakit from the sources that came with
> SimGear-0.2.0, and installed plib.


Another solution would be to use a custom --prefix argument to all of
your configure scripts, rather than placing the libraries into the
system directories.  When I compile flight gear, I always put the
source-compiled libraries into /home/andy/fg/{lib|include}.  The
process looks roughly like this:

cd $SRCDIR/plib
./configure --prefix=/home/andy/fg && make && make install

cd $SRCDIR/metakit-2.4.3
./configure --prefix=/home/andy/fg --disable-shared && make && make install

cd $SRCDIR/SimGear
./configure --prefix=/home/andy/fg && make && make install

cd $SRCDIR/FlightGear
./configure --prefix=/home/andy/fg && make

Note that I also disable shared libraries when building metakit.  If
you don't do this, then the compilation will work but FlightGear will
fail at runtime because it tries to link in the wrong metakit version
from /usr/lib.

This takes a little more time to set up, but has the advantage of
always working.  It also doesn't touch any system directories, so
nothing else can get confused.

Andy


_________________________________________________________________
Get a speedy connection with MSN Broadband.� Join now! http://resourcecenter.msn.com/access/plans/freeactivation.asp


_______________________________________________
Flightgear-users mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-users

Reply via email to