[Flightgear-devel] More compile problems

2007-11-06 Thread will Pink
Hello, After Curt kindly helping me to compile Terragear last Friday it was working lovely well until I tried to do a genapts, I did see on ./configure it said it needed newmats to generate airports so I read the README.newmats and got the correct packages and configured them and did another

Re: [Flightgear-devel] More compile problems

2007-11-06 Thread will Pink
Well I have sorted most of it out! But I am not sure how to sort out the following - apt_surface.cxx:345: error: âSum_Squareâ was not declared in this scope apt_surface.cxx:359: error: âResVarâ was not declared in this scope apt_surface.cxx:363: error: âclass Matrixâ has no member named

Re: [Flightgear-devel] More compile problems

2007-11-06 Thread Torsten Dreyer
Any pointers appreciated! Try newmat11 instead of newmat10 Torsten - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files

Re: [Flightgear-devel] More compile problems

2007-11-06 Thread will Pink
Hello, Thanks for that that has solved must of the errors, I am have configured 11 but I am getting the following error - apt_surface.cxx:359: error: 'ResVar' was not declared in this scope Is there something I need to adjust? Kind Regards, Will [EMAIL PROTECTED] 11/06/07 13:32 PM Any

Re: [Flightgear-devel] More compile problems

2007-11-06 Thread Torsten Dreyer
Am Dienstag, 6. November 2007 16:50 schrieb will Pink: Thanks for that that has solved must of the errors, I am have configured 11 but I am getting the following error - apt_surface.cxx:359: error: 'ResVar' was not declared in this scope Is there something I need to adjust? This is strange,

Re: [Flightgear-devel] More compile problems

2007-11-06 Thread will Pink
Yeap exacty like it ColumnVector A = U.i() * M; ColumnVector Fitted = X * A; Real resVar = sum_square(Y1) / (nobs-npred1); // get variances of estimates U = U.i(); DiagonalMatrix D; D U * U.t(); Will [EMAIL PROTECTED] 11/06/07 04:13pm Am Dienstag, 6. November 2007 16:50 schrieb

Re: [Flightgear-devel] More compile problems

2007-11-06 Thread Torsten Dreyer
Am Dienstag, 6. November 2007 18:03 schrieb will Pink: Yeap exacty like it ColumnVector A = U.i() * M; ColumnVector Fitted = X * A; Real resVar = sum_square(Y1) / (nobs-npred1); Nope! your resVar is lowercase and the compiler is complaining about an undeclared uppercase ResVar. I just

Re: [Flightgear-devel] More compile problems

2007-11-06 Thread will Pink
Thank you for both your efforts! It has now successfully compiled out of interest why are they the wrong characterers? Manuel Massing [EMAIL PROTECTED] 11/06/07 05:18pm hi, ColumnVector A = U.i() * M; ColumnVector Fitted = X * A; Real resVar = sum_square(Y1) / (nobs-npred1); note