coassoftwaresystems / delphi-modbus

Delphi ModbusTCP components
MIT License
116 stars 63 forks source link

Rad Studio 10.1 bug with dclDelphiModbus101Berlin.dpk? #7

Closed Daijobou closed 7 years ago

Daijobou commented 8 years ago

I have a strange issue. Compile with C++Builder 10.1 I get this error: [dcc32 Fehler] dclDelphiModbus101Berlin.dpk(33): E2029 'END' erwartet, aber Bezeichner 'rrequires' gefunden

Rad Studio 10.1 show me this

package dclDelphiModbus101Berlin;

{$R *.res} {$R '..\source\ModbusReg.dcr'} .....

rrequires rtl, DelphiModbus101Berlin, vcl, designide, xmlrtl, vclactnband, vclx, vclimg;

ocontains ModbusReg in '..\source\ModbusReg.pas', frm_About in '..\source\frm_About.pas' {frmAbout}, AboutComponentEditor in '..\source\AboutComponentEditor.pas', ModbusSplash in '..\source\ModbusSplash.pas';

d.

I open that file in a texteditor and see this:

package dclDelphiModbus101Berlin;

{$R *.res} {$R '..\source\ModbusReg.dcr'} .....

requires rtl, DelphiModbus101Berlin, vcl, designide, xmlrtl, vclactnband, vclx, vclimg;

contains ModbusReg in '..\source\ModbusReg.pas', frm_About in '..\source\frm_About.pas' {frmAbout}, AboutComponentEditor in '..\source\AboutComponentEditor.pas', ModbusSplash in '..\source\ModbusSplash.pas';

end.

What happen here? In texteditor is "requires", "contains" "end." correct. This problem happen every time I open this project and want install the components.