Installing the newest installer into the newest Lazarus/Free Pascal version, I get the following (after a number of other units successfully compile):
...
Compiling TeeTernary.pas
TeeTernary.pas(284,3) Fatal: Can't find unit LCLT used by TeeTernary
Fatal: Compilation aborted
Error: C:\lazarus\fpc\3.2.2\bin\x86_64-win64\ppcx64.exe returned an error exitcode
TeeTernary.pas Lazarus installation failure
Re: TeeTernary.pas Lazarus installation failure
Hello,
We're checking this. I assume that the previous version of TeeChart didn't generate this error.
Regards,
Marc Meumann
We're checking this. I assume that the previous version of TeeChart didn't generate this error.
Regards,
Marc Meumann
Steema Support
Re: TeeTernary.pas Lazarus installation failure
Thank you for the problem report. The issue appears to relate to a typo error in the uses of the unit. It has been corrected in current code for the next update release.
If you have the sourcecode you can correct the error here:
TeeTernary.pas, lines 279+
change to:
Regards,
Marc Meumann
If you have the sourcecode you can correct the error here:
TeeTernary.pas, lines 279+
Code: Select all
{$IFDEF LCL}
LCLT, TeEngineype,
{$ENDIF}
Code: Select all
{$IFDEF LCL}
LCLType,
{$ENDIF}
Marc Meumann
Steema Support