Components: try to prevent IDE from modifying autogenerated package files on every recompilation

git-svn-id: trunk@24565 -
This commit is contained in:
maxim 2010-04-10 21:24:58 +00:00
parent 4b25569b03
commit 55230bac1f
8 changed files with 59 additions and 59 deletions

View File

@ -1,20 +1,20 @@
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
This source is only used to compile and install the package.
}
unit cgiLaz;
unit cgilaz;
interface
uses
cgiModules, LazarusPackageIntf;
cgiModules, LazarusPackageIntf;
implementation
procedure Register;
procedure Register;
begin
end;
end;
initialization
RegisterPackage('cgiLaz', @Register);
RegisterPackage('cgiLaz',@Register);
end.

View File

@ -1,21 +1,21 @@
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
This source is only used to compile and install the package.
}
unit CGILazIDE;
unit cgilazide;
interface
uses
CGILazIDEIntf, LazarusPackageIntf;
CGILazIDEIntf, LazarusPackageIntf;
implementation
procedure Register;
procedure Register;
begin
RegisterUnit('CGILazIDEIntf', @CGILazIDEIntf.Register);
end;
RegisterUnit('CGILazIDEIntf',@CGILazIDEIntf.Register);
end;
initialization
RegisterPackage('CGILazIDE', @Register);
RegisterPackage('CGILazIDE',@Register);
end.

View File

@ -1,21 +1,21 @@
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
This source is only used to compile and install the package.
}
unit MemDSLaz;
unit memdslaz;
interface
uses
memds, frmSelectDataset, LazarusPackageIntf;
memds, frmSelectDataset, LazarusPackageIntf;
implementation
procedure Register;
procedure Register;
begin
RegisterUnit('frmSelectDataset', @frmSelectDataset.Register);
end;
RegisterUnit('frmSelectDataset',@frmSelectDataset.Register);
end;
initialization
RegisterPackage('MemDSLaz', @Register);
RegisterPackage('MemDSLaz',@Register);
end.

View File

@ -1,21 +1,21 @@
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
This source is only used to compile and install the package.
}
unit LazOpenGLContext;
unit lazopenglcontext;
interface
uses
OpenGLContext, LazarusPackageIntf;
OpenGLContext, LazarusPackageIntf;
implementation
procedure Register;
procedure Register;
begin
RegisterUnit('OpenGLContext', @OpenGLContext. Register);
end;
RegisterUnit('OpenGLContext',@OpenGLContext.Register);
end;
initialization
RegisterPackage('LazOpenGLContext', @Register);
end.
RegisterPackage('LazOpenGLContext',@Register);
end.

View File

@ -1,22 +1,22 @@
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
This source is only used to compile and install the package.
}
unit ProjTemplates;
unit projtemplates;
interface
uses
ProjectTemplates, IDETemplateProject, frmTemplateVariables,
LazarusPackageIntf;
ProjectTemplates, IDETemplateProject, frmTemplateVariables,
LazarusPackageIntf;
implementation
procedure Register;
procedure Register;
begin
RegisterUnit('IDETemplateProject', @IDETemplateProject.Register);
end;
RegisterUnit('IDETemplateProject',@IDETemplateProject.Register);
end;
initialization
RegisterPackage('ProjTemplates', @Register);
RegisterPackage('ProjTemplates',@Register);
end.

View File

@ -1,22 +1,22 @@
{ Diese Datei wurde automatisch von Lazarus erzeugt. Sie darf nicht bearbeitet werden!
Dieser Quelltext dient nur dem Übersetzen und Installieren des Packages.
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit RunTimeTypeInfoControls;
unit runtimetypeinfocontrols;
interface
uses
RTTICtrls, RTTIGrids, LazarusPackageIntf;
RTTICtrls, RTTIGrids, LazarusPackageIntf;
implementation
procedure Register;
procedure Register;
begin
RegisterUnit('RTTICtrls', @RTTICtrls.Register);
RegisterUnit('RTTIGrids', @RTTIGrids.Register);
end;
RegisterUnit('RTTICtrls',@RTTICtrls.Register);
RegisterUnit('RTTIGrids',@RTTIGrids.Register);
end;
initialization
RegisterPackage('RunTimeTypeInfoControls', @Register);
RegisterPackage('RunTimeTypeInfoControls',@Register);
end.

View File

@ -1,21 +1,21 @@
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
This source is only used to compile and install the package.
}
unit SDFLaz;
unit sdflaz;
interface
uses
RegisterSDF, sdfdata, LazarusPackageIntf;
RegisterSDF, sdfdata, LazarusPackageIntf;
implementation
procedure Register;
procedure Register;
begin
RegisterUnit('RegisterSDF', @RegisterSDF.Register);
end;
RegisterUnit('RegisterSDF',@RegisterSDF.Register);
end;
initialization
RegisterPackage('SDFLaz', @Register);
RegisterPackage('SDFLaz',@Register);
end.

View File

@ -1,21 +1,21 @@
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
This source is only used to compile and install the package.
}
unit DBFLaz;
unit dbflaz;
interface
uses
RegisterDBF, Dbf, LazarusPackageIntf;
RegisterDBF, Dbf, LazarusPackageIntf;
implementation
procedure Register;
procedure Register;
begin
RegisterUnit('RegisterDBF', @RegisterDBF.Register);
end;
RegisterUnit('RegisterDBF',@RegisterDBF.Register);
end;
initialization
RegisterPackage('DBFLaz', @Register);
RegisterPackage('DBFLaz',@Register);
end.