diff --git a/components/fpdebug/fpdebug.pas b/components/fpdebug/fpdebug.pas index aea68eca1b..7209fcbd07 100644 --- a/components/fpdebug/fpdebug.pas +++ b/components/fpdebug/fpdebug.pas @@ -8,20 +8,15 @@ unit fpdebug; interface uses - FpDbgClasses, FpDbgDisasX86, FpDbgDwarf, FpDbgDwarfConst, FpDbgLoader, FpDbgPETypes, FpDbgSymbols, - FpDbgUtil, FpImgReaderWinPE, FpImgReaderElf, FpImgReaderElfTypes, FpImgReaderBase, FpPascalParser, - macho, FpImgReaderMachoFile, FpImgReaderMacho, FpPascalBuilder, FpDbgInfo, FpdMemoryTools, - FpErrorMessages, FPDbgController, FpDbgDwarfVerbosePrinter, FpDbgDwarfDataClasses, - FpDbgDwarfFreePascal, fpDbgSymTableContext, fpDbgSymTable, FpDbgAvrClasses, FpDbgDisasAvr, - FpDbgRsp, FpDbgCommon, FpImgReaderWinPETypes, FpDbgHardcodedFreepascalInfo, FpDbgCallContextInfo, - LazarusPackageIntf; + FpDbgClasses, FpDbgDisasX86, FpDbgDwarf, FpDbgDwarfConst, FpDbgLoader, + FpDbgPETypes, FpDbgSymbols, FpDbgUtil, FpImgReaderWinPE, FpImgReaderElf, + FpImgReaderElfTypes, FpImgReaderBase, FpPascalParser, macho, + FpImgReaderMachoFile, FpImgReaderMacho, FpPascalBuilder, FpDbgInfo, + FpdMemoryTools, FpErrorMessages, FPDbgController, FpDbgDwarfVerbosePrinter, + FpDbgDwarfDataClasses, FpDbgDwarfFreePascal, fpDbgSymTableContext, + fpDbgSymTable, FpDbgAvrClasses, FpDbgDisasAvr, FpDbgRsp, FpDbgCommon, + FpImgReaderWinPETypes, FpDbgHardcodedFreepascalInfo, FpDbgCallContextInfo; implementation -procedure Register; -begin -end; - -initialization - RegisterPackage('fpdebug', @Register); end. diff --git a/components/lazdebuggers/cmdlinedebuggerbase/cmdlinedebuggerbase.pas b/components/lazdebuggers/cmdlinedebuggerbase/cmdlinedebuggerbase.pas index 78854d853d..e4490acc75 100644 --- a/components/lazdebuggers/cmdlinedebuggerbase/cmdlinedebuggerbase.pas +++ b/components/lazdebuggers/cmdlinedebuggerbase/cmdlinedebuggerbase.pas @@ -8,14 +8,8 @@ unit CmdLineDebuggerBase; interface uses - DebugProcess, DebugInstructions, DebuggerPropertiesBase, LazarusPackageIntf; + DebugProcess, DebugInstructions, DebuggerPropertiesBase; implementation -procedure Register; -begin -end; - -initialization - RegisterPackage('CmdLineDebuggerBase', @Register); end.