[fpc-pascal] Userfriendly editor

Felipe Monteiro de Carvalho felipemonteiro.carvalho at gmail.com
Thu Jun 9 15:43:52 CEST 2011


On Thu, Jun 9, 2011 at 3:32 PM, Zaher Dirkey <parmaja at gmail.com> wrote:
>> 1> miniedit is missing a dependency on the package minisocket, even
>> while it requires it
>
> not understand?

miniedit requires a lot of packages which are not added to it's
Project Inspector.

Try going to your Project Options dialog, then to Paths and remove
everything under "Other Units" and "Include files"

Now try to compile the project. Lots of units are missing, because you
just added paths to them, which are only valid in your computer. The
standard way is adding packages as dependencies in the Project
Inspector.

> mnStreams.pas not mnStream.pas
> It is exists in minilib\lib

But the paths in the package are wrong.

Your lpk file says:

-      <Item9>
-        <Filename Value="mnStreams.pas"/>
-        <UnitName Value="mnStreams"/>
-      </Item9>

Which is wrong, this file doesn't exist in the same directory as the
LPK. It should be:

+      <Item8>
+        <Filename Value="..\..\lib\mnStreams.pas"/>
+        <UnitName Value="mnStreams"/>
+      </Item8>

msConsts.pas is also pointing to a wrong path.

-- 
Felipe Monteiro de Carvalho



More information about the fpc-pascal mailing list