landrix / The-Drag-and-Drop-Component-Suite-for-Delphi

MIT License
161 stars 57 forks source link

Berlin Install Raises Errors #21

Closed NormClark closed 5 years ago

NormClark commented 7 years ago

When attempting to install DragDropDR101B.dpk I receive the following errors: [dcc32 Fatal Error] DragDropDR101B.dpk(30): E2225 Never-build package 'designide' must be recompiled [dcc32 Fatal Error] dclDragDropDR101B.dpk(47): E2202 Required package 'DragDropDR101B' not found

The package contains: package DragDropDR101B;

{$R *.res} {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} {$ALIGN 8} {$ASSERTIONS ON} {$BOOLEVAL OFF} {$DEBUGINFO OFF} {$EXTENDEDSYNTAX ON} {$IMPORTEDDATA ON} {$IOCHECKS ON} {$LOCALSYMBOLS OFF} {$LONGSTRINGS ON} {$OPENSTRINGS ON} {$OPTIMIZATION ON} {$OVERFLOWCHECKS OFF} {$RANGECHECKS OFF} {$REFERENCEINFO OFF} {$SAFEDIVIDE OFF} {$STACKFRAMES OFF} {$TYPEDADDRESS OFF} {$VARSTRINGCHECKS ON} {$WRITEABLECONST OFF} {$MINENUMSIZE 1} {$IMAGEBASE $400000} {$DEFINE RELEASE} {$ENDIF IMPLICITBUILDING} {$DESCRIPTION 'Drag and Drop Component Suite'} {$RUNONLY} {$IMPLICITBUILD OFF}

requires rtl, vcl;

contains DragDrop in '..\Source\DragDrop.pas', DragDropComObj in '..\Source\DragDropComObj.pas', DragDropContext in '..\Source\DragDropContext.pas', DragDropFile in '..\Source\DragDropFile.pas', DragDropFormats in '..\Source\DragDropFormats.pas', DragDropGraphics in '..\Source\DragDropGraphics.pas', DragDropHandler in '..\Source\DragDropHandler.pas', DragDropInternet in '..\Source\DragDropInternet.pas', DragDropPIDL in '..\Source\DragDropPIDL.pas', DragDropText in '..\Source\DragDropText.pas', DropComboTarget in '..\Source\DropComboTarget.pas', DropHandler in '..\Source\DropHandler.pas', DropSource in '..\Source\DropSource.pas', DropTarget in '..\Source\DropTarget.pas';

end.