mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-02 19:47:02 +01:00
Add a dummy package to replace the removed EditorToolbar package. Prevent compilation error with LazBuild.
git-svn-id: trunk@49411 -
This commit is contained in:
parent
a8ad284e1e
commit
9d3a9d775a
3
.gitattributes
vendored
3
.gitattributes
vendored
@ -1189,6 +1189,9 @@ components/debuggerintf/dbgintfmiscclasses.pas svneol=native#text/pascal
|
||||
components/debuggerintf/debuggerintf.lpk svneol=native#text/plain
|
||||
components/debuggerintf/debuggerintf.pas svneol=native#text/pascal
|
||||
components/debuggerintf/fpmake.pp svneol=native#text/plain
|
||||
components/editortoolbar/editortoolbar.lpk svneol=native#text/plain
|
||||
components/editortoolbar/editortoolbar.pas svneol=native#text/pascal
|
||||
components/editortoolbar/unit1.pas svneol=native#text/pascal
|
||||
components/education/README.txt svneol=native#text/plain
|
||||
components/education/educationlaz.lpk svneol=native#text/plain
|
||||
components/education/educationlaz.pas svneol=native#text/plain
|
||||
|
||||
30
components/editortoolbar/editortoolbar.lpk
Normal file
30
components/editortoolbar/editortoolbar.lpk
Normal file
@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CONFIG>
|
||||
<Package Version="4">
|
||||
<Name Value="editortoolbar"/>
|
||||
<Type Value="RunAndDesignTime"/>
|
||||
<CompilerOptions>
|
||||
<Version Value="11"/>
|
||||
<SearchPaths>
|
||||
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
||||
</SearchPaths>
|
||||
</CompilerOptions>
|
||||
<Files Count="1">
|
||||
<Item1>
|
||||
<Filename Value="unit1.pas"/>
|
||||
<UnitName Value="Unit1"/>
|
||||
</Item1>
|
||||
</Files>
|
||||
<RequiredPkgs Count="1">
|
||||
<Item1>
|
||||
<PackageName Value="FCL"/>
|
||||
</Item1>
|
||||
</RequiredPkgs>
|
||||
<UsageOptions>
|
||||
<UnitPath Value="$(PkgOutDir)"/>
|
||||
</UsageOptions>
|
||||
<PublishOptions>
|
||||
<Version Value="2"/>
|
||||
</PublishOptions>
|
||||
</Package>
|
||||
</CONFIG>
|
||||
20
components/editortoolbar/editortoolbar.pas
Normal file
20
components/editortoolbar/editortoolbar.pas
Normal file
@ -0,0 +1,20 @@
|
||||
{ This file was automatically created by Lazarus. Do not edit!
|
||||
This source is only used to compile and install the package.
|
||||
}
|
||||
|
||||
unit editortoolbar;
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
Unit1, LazarusPackageIntf;
|
||||
|
||||
implementation
|
||||
|
||||
procedure Register;
|
||||
begin
|
||||
end;
|
||||
|
||||
initialization
|
||||
RegisterPackage('editortoolbar', @Register);
|
||||
end.
|
||||
16
components/editortoolbar/unit1.pas
Normal file
16
components/editortoolbar/unit1.pas
Normal file
@ -0,0 +1,16 @@
|
||||
unit Unit1;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils;
|
||||
|
||||
{$Warning The package editortoolbar was removed. Its features are now part of the IDE.
|
||||
You can safely uninstall the package.}
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user