[Lazarus] Build scripts for Freepascal and Lazarus compilation from source

2010-10-03 Thread Frank Church
I have posted an article and some code on some bash scripts I have developed to install FPC and Lazarus from source at http://devblog.brahmancreations.com/content/build-scripts-for-installing-freepascal-and-lazarus-from-source . Any comments and tips are well come. -- Frank Church

Re: [Lazarus] How would you organize build directories for different versions?

2010-10-03 Thread Frank Church
On 29 September 2010 08:38, Mattias Gaertner nc-gaert...@netcologne.dewrote: On Wed, 29 Sep 2010 06:59:02 +0100 Frank Church vfcli...@gmail.com wrote: If you are using different Lazarus versions but with same components and packages, how would you organize separate build directories for

Re: [Lazarus] Build scripts for Freepascal and Lazarus compilation from source

2010-10-03 Thread Joshua Lim
Hi Frank, do you have something for Win32? Thanks. Frank Church wrote: I have posted an article and some code on some bash scripts I have developed to install FPC and Lazarus from source at

Re: [Lazarus] Build scripts for Freepascal and Lazarus compilation from source

2010-10-03 Thread Frank Church
On 3 October 2010 13:23, Joshua Lim joshua__...@hotmail.com wrote: Hi Frank, do you have something for Win32? Thanks. I don't have anything for Win32 yet, but it should be easy to convert. You only have to look out for the Windows gotchas. I will have tackle in the near future, but I wouldn't

Re: [Lazarus] TAChart question

2010-10-03 Thread José Mejuto
Hello Alexander, Sunday, October 3, 2010, 6:07:54 AM, you wrote:  DataPoints.Strings = (    'January|18000|?|January'    'June|22000|?|June' AK As a separate note, I'd like to point out that using DataPoints property AK in not an efficient way to fill the ListChartSource at run-time. AK Use

[Lazarus] GLScene and Lazarus...

2010-10-03 Thread BosseB
We have a Windows application, which uses GLScene to process and render data from our data acquisition system. Now we are embarking on putting an embedded linux front end system directly on our equipment (hence my numerous other posts here recently). So I would like to know if there are some

Re: [Lazarus] Serial communication??

2010-10-03 Thread BosseB
On Sat, 02 Oct 2010 15:31:46 -0400, waldo kitty wkitt...@windstream.net wrote: On 10/2/2010 12:51, Sven Barth wrote: On 02.10.2010 18:21, waldo kitty wrote: agreed... except, how are multiple users to be able to use the component like those built into Laz? it appears to me that the

Re: [Lazarus] GLScene and Lazarus...

2010-10-03 Thread BosseB
On Sun, 03 Oct 2010 17:52:06 +0200, BosseB bo.bergl...@gmail.com wrote: I forgot to add that I had a look at the Wiki page: http://wiki.lazarus.freepascal.org/GLScene Here I can see from the Change Log that activity seems to have stopped in 2007... Snapshot is dated July 18, 2007 Is it still

[Lazarus] Is it possible to create a loop

2010-10-03 Thread Bizugo
Is possible to create a loop using a code like this one: for var J: integer = X to Y do {...} Thanks. - Bizz. -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Is it possible to create a loop

2010-10-03 Thread Sven Barth
On 03.10.2010 20:01, Bizugo wrote: Is possible to create a loop using a code like this one: for var J: integer = X to Y do {...} Thanks. No, it isn't. You must declare the type at the beginning of the function/procedure. Regards, Sven -- ___

Re: [Lazarus] Is it possible to create a loop

2010-10-03 Thread dennis martin
procedure test; var cnt : integer; begin for cnt := 1 to whatever do ( your procedure ) end; --- On Sun, 10/3/10, Bizugo kingbiz...@gmail.com wrote: From: Bizugo kingbiz...@gmail.com Subject: [Lazarus] Is it possible to create a loop To: lazarus@lists.lazarus.freepascal.org Date:

Re: [Lazarus] [fpc-pascal] How to get to Range Check Error location

2010-10-03 Thread Martin
On 03/10/2010 21:20, Juha Manninen (gmail) wrote: On Sunday 03 October 2010 19:48:22 C Western wrote: Please report the bug. Yes the result is integer and in 64 bits, this looks like a problem. I think this is an issue I reported back in March, though I can now see I uploaded the wrong patch

[Lazarus] LazWebData package

2010-10-03 Thread Leonardo M . Ramé
Hi, I was trying to play with the new demos from packages/fcl-web/examples and found that them require the package lazwebdata, where can I find it?. -- Leonardo M. Ramé http://leonardorame.blogspot.com -- ___ Lazarus mailing list

Re: [Lazarus] LazWebData package

2010-10-03 Thread Leonardo M . Ramé
On 2010-10-03 14:23:41 -0700, ABorka wrote: On 10/3/2010 14:05, Leonardo M. Ramé wrote: Hi, I was trying to play with the new demos from packages/fcl-web/examples and found that them require the package lazwebdata, where can I find it?. It is in Lazarus, called Lazwebextra Uh, ok. Then, I

Re: [Lazarus] GLScene and Lazarus...

2010-10-03 Thread Bo Berglund
On Sun, 3 Oct 2010 21:10:17 +0200, Vincent Snijders vincent.snijd...@gmail.com wrote: 2010/10/3 BosseB bo.bergl...@gmail.com: On Sun, 03 Oct 2010 17:52:06 +0200, BosseB bo.bergl...@gmail.com wrote: I forgot to add that I had a look at the Wiki page: http://wiki.lazarus.freepascal.org/GLScene

Re: [Lazarus] LazWebData package

2010-10-03 Thread ABorka
On 10/3/2010 14:31, Leonardo M. Ramé wrote: On 2010-10-03 14:23:41 -0700, ABorka wrote: On 10/3/2010 14:05, Leonardo M. Ramé wrote: Hi, I was trying to play with the new demos from packages/fcl-web/examples and found that them require the package lazwebdata, where can I find it?. It is in

Re: [Lazarus] GLScene and Lazarus...

2010-10-03 Thread Bo Berglund
On Sun, 03 Oct 2010 23:41:56 +0200, Bo Berglund bo.bergl...@gmail.com wrote: On Sun, 3 Oct 2010 21:10:17 +0200, Vincent Snijders vincent.snijd...@gmail.com wrote: 2010/10/3 BosseB bo.bergl...@gmail.com: On Sun, 03 Oct 2010 17:52:06 +0200, BosseB bo.bergl...@gmail.com wrote: I forgot to add

Re: [Lazarus] LazWebData package

2010-10-03 Thread Leonardo M . Ramé
On 2010-10-03 14:55:03 -0700, ABorka wrote: On 10/3/2010 14:31, Leonardo M. Ramé wrote: On 2010-10-03 14:23:41 -0700, ABorka wrote: On 10/3/2010 14:05, Leonardo M. Ramé wrote: Hi, I was trying to play with the new demos from packages/fcl-web/examples and found that them require the package

Re: [Lazarus] LazWebData package

2010-10-03 Thread ABorka
On 10/3/2010 15:05, Leonardo M. Ramé wrote: On 2010-10-03 14:55:03 -0700, ABorka wrote: On 10/3/2010 14:31, Leonardo M. Ramé wrote: On 2010-10-03 14:23:41 -0700, ABorka wrote: On 10/3/2010 14:05, Leonardo M. Ramé wrote: Hi, I was trying to play with the new demos from

Re: [Lazarus] Build scripts for Freepascal and Lazarus compilation from source

2010-10-03 Thread Marcos Douglas
2010/10/3 Frank Church vfcli...@gmail.com: [snip] The wiki also has tips on compiling at http://wiki.lazarus.freepascal.org/Installing_Lazarus#Compiling.2Finstalling_FPC_and_Lazarus_from_Sources_of_SVN_.28Win32.29 It is the type of article I don't like because you can learn a lot more from a