mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-06 01:47:17 +01:00
20 lines
389 B
ObjectPascal
20 lines
389 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}
|
|
uses
|
|
fprepos,fpxmlrep,pkgoptions,pkgglobals,pkgmessages,pkghandler,pkgmkconv,pkgdownload,pkgfpmake,pkgcommands,pkgrepos,pkgwget,pkglnet;
|
|
{$endif}
|
|
|
|
implementation
|
|
|
|
end.
|
|
|
|
|