removed chm package: units are in fpc\packages and don't require registration

git-svn-id: trunk@17121 -
This commit is contained in:
vincents 2008-10-24 11:56:23 +00:00
parent e25e506e43
commit 1a9b2d0eed
4 changed files with 0 additions and 79 deletions

2
.gitattributes vendored
View File

@ -53,8 +53,6 @@ components/chmhelp/lhelp/lhelpcore.lfm svneol=native#text/plain
components/chmhelp/lhelp/lhelpcore.lrs svneol=native#text/plain
components/chmhelp/lhelp/lhelpcore.pas svneol=native#text/plain
components/chmhelp/lhelp/lnethttpdataprovider.pas svneol=native#text/plain
components/chmhelp/packages/chm/chmpkg.lpk svneol=native#text/plain
components/chmhelp/packages/chm/chmpkg.pas svneol=native#text/plain
components/chmhelp/packages/help/lhelpcontrol.pas svneol=native#text/plain
components/chmhelp/packages/help/lhelpcontrolpkg.lpk svneol=native#text/plain
components/chmhelp/packages/help/lhelpcontrolpkg.pas svneol=native#text/plain

2
.gitignore vendored
View File

@ -16,8 +16,6 @@ components/chmhelp/democontrol/units
components/chmhelp/lhelp/*.bak
components/chmhelp/lhelp/units
components/chmhelp/packages/*.bak
components/chmhelp/packages/chm/*.bak
components/chmhelp/packages/chm/units
components/chmhelp/packages/help/*.bak
components/chmhelp/packages/help/units
components/chmhelp/packages/idehelp/*.bak

View File

@ -1,55 +0,0 @@
<?xml version="1.0"?>
<CONFIG>
<Package Version="3">
<PathDelim Value="\"/>
<Name Value="chmpkg"/>
<CompilerOptions>
<Version Value="8"/>
<PathDelim Value="\"/>
<SearchPaths>
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)\$(LCLWidgetType)"/>
</SearchPaths>
<Other>
<CompilerPath Value="$(CompPath)"/>
</Other>
</CompilerOptions>
<Description Value="Units for reading chm files. If you are using a version of FPC >= 2.3.1 you may need to remove the dependancy of this package since FPC >= 2.3.1 contains these units,
"/>
<Version Minor="1"/>
<Files Count="3">
<Item1>
<Filename Value="chmbase.pas"/>
<Type Value="Virtual Unit"/>
<UnitName Value="chmbase"/>
</Item1>
<Item2>
<Filename Value="chmreader.pas"/>
<Type Value="Virtual Unit"/>
<UnitName Value="chmreader"/>
</Item2>
<Item3>
<Filename Value="paslzx.pas"/>
<Type Value="Virtual Unit"/>
<UnitName Value="paslzx"/>
</Item3>
</Files>
<Type Value="RunAndDesignTime"/>
<RequiredPkgs Count="2">
<Item1>
<PackageName Value="FCL"/>
<MinVersion Major="1" Valid="True"/>
</Item1>
<Item2>
<PackageName Value="LCL"/>
</Item2>
</RequiredPkgs>
<UsageOptions>
<UnitPath Value="$(PkgOutDir)\"/>
</UsageOptions>
<PublishOptions>
<Version Value="2"/>
<DestinationDirectory Value="$(TestDir)\publishedpackage\"/>
<IgnoreBinaries Value="False"/>
</PublishOptions>
</Package>
</CONFIG>

View File

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