Recent

Author Topic: installing indy4lazarus components  (Read 13538 times)

dalarder

  • Guest
installing indy4lazarus components
« on: June 18, 2005, 06:49:33 pm »
I've used the Indy components under Delphi but can't get the indy4lazarus package to install under lazarus, running under Windows XP Pro.

I've seen a couple of comments from others who didn't manage to install the package.

Has anyone successfully installed it under windows XP Pro, please?  If so, could they please help a lazarus tyro by quoting their compiler settings and anything else they consider relevant. :?: Thanks.

Anonymous

  • Guest
RE: installing indy4lazarus components
« Reply #1 on: September 11, 2005, 10:57:39 am »
Up :), I've the same question., I can't install indy4 on Lazarus (with XP)...Does someone can explain me how to install new component.
Thanks

matthijs

  • Hero Member
  • *****
  • Posts: 537
Re: RE: installing indy4lazarus components
« Reply #2 on: September 12, 2005, 08:21:35 am »
Quote from: "Anonymous"
...Does someone can explain me how to install new component.

Have a look at the wiki :D
What's in a sig? Would my posting look less if it didnot have a sig? (Free after William S.) :)

:( Why cannot I upload my own Avatar? :(

Kreon

  • Guest
Install Package problem
« Reply #3 on: October 16, 2005, 02:52:42 pm »
Hallo,

i habe tried ti install some package and did it the way explained in the wiki. Comilinng an rebuilding lazarus went well, but there is no new tab in the IDE.
Indy doesn't compile, but sql, printer, imgage.
In the case of image I could run the example.

Kreon

Anonymous

  • Guest
RE: Install Package problem
« Reply #4 on: October 16, 2005, 07:02:58 pm »
Indy is crap.
Take Synapse. http://www.ararat.cz/synapse/
You don't have to install anything. It's simple and reliable.

JopieK

  • New Member
  • *
  • Posts: 15
    • http://www.legotrein.tk
RE: Install Package problem
« Reply #5 on: October 17, 2005, 02:16:02 pm »
of course, indy is crap, well, it worked fine in Delphi with a lot of additional tools...

ARE there actually ppl that got INDY working? I'm also interested in Jedi VCL stuff, I'm preparing for my master thesis project. At our university everyone is using Java and since I hate Java and before Delphi 2004 used to love Delphi (and still love pascal) I'm considering Lazarus very much for my Agent based learning community (with probably IRC as a communication base).

Marc

  • Administrator
  • Hero Member
  • *
  • Posts: 2582
RE: Install Package problem
« Reply #6 on: October 17, 2005, 02:29:28 pm »
MarcovV Has indy9 working on win32. I don't know when or where the sources were committed, but I guess somewhere in the fpc tree
//--
{$I stdsig.inc}
//-I still can't read someones mind
//-Bugs reported here will be forgotten. Use the bug tracker

JopieK

  • New Member
  • *
  • Posts: 15
    • http://www.legotrein.tk
RE: Install Package problem
« Reply #7 on: October 18, 2005, 12:36:50 pm »
well, that's at least a bit, it seems to be that the idwinsock2 file is not interpreted right on windows... first I removed the { accolades and places // instead since the compiler complained about level x comments... that solved part of the problem but now I get:

3967: procedure WS2Stub_WSACleanup;                       asm  mov eax,  0; call WS2Call; jmp eax; end;
C:\Lazarus\indy4lazarus\source\IdWinsock2.pas(3967,53) Fatal: Syntax error, "BEGIN" expected but "ASM" found

Someone is trying to comment on this in rather vague english:
http://sourceforge.net/tracker/index.php?func=detail&aid=1027091&group_id=98813&atid=622329

Marc

  • Administrator
  • Hero Member
  • *
  • Posts: 2582
RE: Install Package problem
« Reply #8 on: October 19, 2005, 03:07:41 pm »
in short:
FPC does not support the following:
Code: [Select]
procedure bla;
asm
  // some asm here
end;


use this instead:
Code: [Select]
procedure bla;
begin
  asm
    // some asm here
  end;
end;
//--
{$I stdsig.inc}
//-I still can't read someones mind
//-Bugs reported here will be forgotten. Use the bug tracker

 

TinyPortal © 2005-2018