Page 1 of 1

TeeTernary.pas Lazarus installation failure

Posted: Wed Apr 12, 2023 8:45 pm
by 16565629
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

Re: TeeTernary.pas Lazarus installation failure

Posted: Tue Apr 18, 2023 12:03 pm
by Marc
Hello,

We're checking this. I assume that the previous version of TeeChart didn't generate this error.

Regards,
Marc Meumann

Re: TeeTernary.pas Lazarus installation failure

Posted: Tue Apr 18, 2023 12:24 pm
by Marc
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+

Code: Select all

  {$IFDEF LCL}
  LCLT, TeEngineype,
  {$ENDIF}
change to:

Code: Select all

  {$IFDEF LCL}
  LCLType,
  {$ENDIF}
Regards,
Marc Meumann

Re: TeeTernary.pas Lazarus installation failure

Posted: Wed Apr 19, 2023 1:31 am
by 16585294
thanks!