On Mon, 29 Nov 2010 23:16:24 +0100 Bo Berglund <[email protected]> wrote:
> On Mon, 29 Nov 2010 00:01:59 +0100, Bo Berglund > <[email protected]> wrote: > >Retrieved the trunk version into folder lazarus_trunk (I renamed after > >SVN was done, is it possible to redirect the SVN checkout into a > >folder of your own choosing?). > > > >Then "make clean all" and fixed a shortcut to start lazarus with the > >necessary config redirection. > > > >This time I could load the old project and it compiled fine, but there > >were a lot more messages and warnings than in the version I had > >before. Some are from compiling synaser.pas and saome from my own > >code. The ones from my code actually point to things I need to fix.... > > > > I talked too soon! > The new Lazarus was indeed compiled with FPC 2.4.2, but since I copied > the old config dir it still uses the FPC 2.2.4 of the old Lazarus... > > Now that I discovered this I changed it in the IDE Environment/Options > dialogue but I can no longer quick compile my project. > Right now it stops on a piece of code I have not written myself: > > SdpoSerial\sdposerial.pas(37,7) Fatal: Can't find unit LResources used > by SdpoSerial The package SdpoSerial misses the unit LResources. This can mean: The package SdpoSerial misses the dependency to the package LCL, but more likely is that the compiler found a lresources.ppu from an older compiler. Compile the package with -vut. Maybe you added a search path too much. > Notice: I *have* opened the sdposeriallaz package in this instance of > Lazarus and then closed it again. According to earlier discussions > this would tell Lazarus where it is located. Yes, but since sdposeriallaz is missing something in the LCL, you have to check if the right LCL package is used. Mattias -- _______________________________________________ Lazarus mailing list [email protected] http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
