mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-10 00:27:21 +01:00
24 lines
440 B
ObjectPascal
24 lines
440 B
ObjectPascal
unit buildfppkg;
|
|
|
|
interface
|
|
|
|
{
|
|
these units cause compilation errors on targets eg go32v2 for which fppkg
|
|
not implemented properly, so remove them by ifdef. jl Aug 2009
|
|
}
|
|
|
|
{$ifndef go32v2}
|
|
{$ifndef amiga}
|
|
{$ifndef morphos}
|
|
uses
|
|
fprepos,fpxmlrep,pkgoptions,pkgglobals,pkgmessages,pkghandler,pkgmkconv,pkgdownload,pkgfpmake,pkgcommands,pkgrepos,pkgwget,pkglnet;
|
|
{$endif}
|
|
{$endif}
|
|
{$endif}
|
|
|
|
implementation
|
|
|
|
end.
|
|
|
|
|