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:
juha 2015-06-22 14:20:57 +00:00
parent a8ad284e1e
commit 9d3a9d775a
4 changed files with 69 additions and 0 deletions

3
.gitattributes vendored
View File

@ -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

View 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>

View 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.

View 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.