[solved] Error installing Lazarus Zeos

The forum for ZeosLib 7.2 Report problems. Ask for help, post proposals for the new version and Zeoslib 7.2 features here. This is a forum that will be edited once the 7.2.x version goes into RC/stable!!

My personal intention for 7.2 is to speed up the internals as optimal a possible for all IDE's. Hope you can help?! Have fun with testing 7.2
Post Reply
elidorio2
Expert Boarder
Expert Boarder
Posts: 159
Joined: 20.08.2006, 05:37
Location: Tapejara -Pr
Contact:

[solved] Error installing Lazarus Zeos

Post by elidorio2 »

Hello,

This generates the error attached to install the latest svn version Zeos in Lazarus.
I'm using Lazarus 1.2.2 fpc 2.6.4

[]'s

Edson
You do not have the required permissions to view the files attached to this post.
miab3
Zeos Test Team
Zeos Test Team
Posts: 1309
Joined: 11.05.2012, 12:32
Location: Poland

Re: Error installing Lazarus Zeos

Post by miab3 »

@elidorio2,

Attachment unreadable.

At my CodeTyphon ver 4.80, Zeos 7.2_R3130 being installed and running.

Michal
elidorio2
Expert Boarder
Expert Boarder
Posts: 159
Joined: 20.08.2006, 05:37
Location: Tapejara -Pr
Contact:

Re: Error installing Lazarus Zeos

Post by elidorio2 »

Comes up to install, plus all installation this message appears.
miab3
Zeos Test Team
Zeos Test Team
Posts: 1309
Joined: 11.05.2012, 12:32
Location: Poland

Re: Error installing Lazarus Zeos

Post by miab3 »

@elidorio2,

Your ATTACHMENT is unreadable (too small).

Michal
papelhigienico
Expert Boarder
Expert Boarder
Posts: 113
Joined: 06.10.2006, 14:41
Location: Chapecó - Santa Catarina
Contact:

Re: Error installing Lazarus Zeos

Post by papelhigienico »

@eldorio2 Pls, send a better error picture, I'm blind!! :D
elidorio2
Expert Boarder
Expert Boarder
Posts: 159
Joined: 20.08.2006, 05:37
Location: Tapejara -Pr
Contact:

Re: Error installing Lazarus Zeos

Post by elidorio2 »

ok, follows another.
You do not have the required permissions to view the files attached to this post.
papelhigienico
Expert Boarder
Expert Boarder
Posts: 113
Joined: 06.10.2006, 14:41
Location: Chapecó - Santa Catarina
Contact:

Re: Error installing Lazarus Zeos

Post by papelhigienico »

To quickly solve your problem, open the file ZeosLazarus.inc

At the end of this file you will see:

Code: Select all

{$IFDEF WITH_LCONVENCODING}
  {$IF declared(lcl_fullversion)}
    {$if lcl_fullversion>=1000000} //Lazarus >= 1.0.0 with delphi fix.
      {$DEFINE LCONVENCODING_HAS_CP852_FUNCTIONS}
    {$ifend}
  {$ELSE}
    {$ERROR lcl_fullversion isn't defined!}
  {$ifend}
{$ENDIF}
Edit it and remove these lines:

Code: Select all

  {$ELSE}
    {$ERROR lcl_fullversion isn't defined!}
The resulting code will be:

Code: Select all

{$IFDEF WITH_LCONVENCODING}
  {$IF declared(lcl_fullversion)}
    {$if lcl_fullversion>=1000000} //Lazarus >= 1.0.0 with delphi fix.
      {$DEFINE LCONVENCODING_HAS_CP852_FUNCTIONS}
    {$ifend}
  {$ifend}
{$ENDIF}
Try compile and install it again...
elidorio2
Expert Boarder
Expert Boarder
Posts: 159
Joined: 20.08.2006, 05:37
Location: Tapejara -Pr
Contact:

Re: Error installing Lazarus Zeos

Post by elidorio2 »

Performed the procedure and now this presented another error:

/home/lidorio/edinho/lazarus/componentes/Zeos-testing-7.2/src/dbc/ZDbcMySqlResultSet.pas(379,62) Error: Call by var for arg no. 2 has to match exactly: Got "LongWord" expected "QWord"
User avatar
EgonHugeist
Zeos Project Manager
Zeos Project Manager
Posts: 1936
Joined: 31.03.2011, 22:38

Re: Error installing Lazarus Zeos

Post by EgonHugeist »

Hi there,

I'm sorry for my absence.. Bussy currently.

Did commit the suggested patch of papelhigienico and a fix for the second report of Edson.

Edson could you checkout 3177 /testing-7.2 and give me a reply if there are more issues?

Michael
Best regards, Michael

You want to help? http://zeoslib.sourceforge.net/viewtopic.php?f=4&t=3671
You found a (possible) bug? Use the new bugtracker dude! http://sourceforge.net/p/zeoslib/tickets/

Image
elidorio2
Expert Boarder
Expert Boarder
Posts: 159
Joined: 20.08.2006, 05:37
Location: Tapejara -Pr
Contact:

Re: Error installing Lazarus Zeos

Post by elidorio2 »

Hello Michael,
We miss you, no longer saw any commits, were the desperate.
Nice to have you returned.
Getting back on the subject, I tested with rev. 3179 and this perfect. You can help end this.

--
Edson
Post Reply