I am struggling like hell trying to install fpc and lazarus on my system, the whole experience is making me feel like a linux noob, I honestly feel like I've gone back in time to a time when we used to install slackware from a stack of 3 inch floppies.
I have finally managed to install and compile fpc from a git download in my home directory, and finally managed to install and compile lazarus from a git download in my home directory. But every time I try to move forward I get slapped backwards. Both fpc and lazarus were downloaded from the main trunk.
So now my issue is that I can build a project all the way until I get this error message
symbollisthandler.pas(13,43) Error: Cannot find laz_avl_Tree used by SymbolListHandler of the Project Inspector.
I have opened the loaded package
Lazutils and recompiled it with no errors.
The package has AvgLvlTree listed but not laz_avl_Tree.
After compiling the package I still get the same error.
The ide has highlighted this section in the project as an error
{$ifdef windows}
uses
windows, Classes, SysUtils, AvgLvlTree, laz_avl_Tree, math, fgl, cvconst,
syncobjs, symbolhandlerstructs, DOM;
{$endif}
With
laz_avl_Tree highlighted.
Any ideas where I go next to solve this?