ChuckO
ChuckO

Reputation: 2573

Error in JCL installation into Delphi 10 Seattle

I am trying to install JCL/JVCL into Delphi-10-Seattle

I got the following Error:

Using Embarcadero RAD Studio 10 Seattle Embarcadero Delphi for Win32 compiler version 30.0... E:\Delphi-10\Jedi\jcl\source\common\JclSysUtils.pas(3034) Error: E2010 Incompatible types: 'TJclWaitResult' and 'TWaitResult'

JclInstall.pas(2264) Fatal: F2063 Could not compile used unit 'JclSysUtils.pas'

Line 3034 in 'JclSysUtils.pas' is:

if (ProcessEvent.WaitForever = {$IFDEF RTL280_UP}TJclWaitResult.{$ENDIF RTL280_UP}wrSignaled) and not GetExitCodeProcess(ProcessEvent.Handle, Result) then Result := $FFFFFFFF;

I tried to post in the Jedi mailing list but that hasn't been touched in years.

Where can I get a fix?

Upvotes: 7

Views: 4609

Answers (2)

Tommy
Tommy

Reputation: 656

Use the GetIt Package Manager integrated in your RadStudio IDE to download JCL.

Upvotes: 10

David Heffernan
David Heffernan

Reputation: 613232

The version that you downloaded does not support Seattle. You will need to download the latest version from the repo.

Upvotes: 1

Related Questions