TeeTernary.pas Lazarus installation failure

TeeChart FireMonkey (Windows,OSX,iOS & Android) for Embarcadero RAD Studio, Delphi and C++ Builder (XE5+)
Post Reply
nxuser
Newbie
Newbie
Posts: 1
Joined: Fri Apr 12, 2013 12:00 am

TeeTernary.pas Lazarus installation failure

Post by nxuser » Wed Apr 12, 2023 8:45 pm

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

Marc
Site Admin
Site Admin
Posts: 1209
Joined: Thu Oct 16, 2003 4:00 am
Location: Girona
Contact:

Re: TeeTernary.pas Lazarus installation failure

Post by Marc » Tue Apr 18, 2023 12:03 pm

Hello,

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

Regards,
Marc Meumann
Steema Support

Marc
Site Admin
Site Admin
Posts: 1209
Joined: Thu Oct 16, 2003 4:00 am
Location: Girona
Contact:

Re: TeeTernary.pas Lazarus installation failure

Post by Marc » Tue Apr 18, 2023 12:24 pm

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
Steema Support

nxuser
Newbie
Newbie
Posts: 3
Joined: Fri Jan 04, 2019 12:00 am

Re: TeeTernary.pas Lazarus installation failure

Post by nxuser » Wed Apr 19, 2023 1:31 am

thanks!

Post Reply