Re: [Lazarus] Lazarus 1.6RC1 make bigide fails on Raspberry Pi2

2015-12-15 Thread Mattias Gaertner
On Tue, 15 Dec 2015 16:40:11 +0100 Bo Berglund wrote: > On Tue, 15 Dec 2015 15:35:59 +0100, Mattias Gaertner > wrote: > > >Check if you have /etc/fpc.cfg. > > Yes I have. > In fact I do have several instances of the fpc compiler: > The 2.6.4

Re: [Lazarus] Lazarus 1.6RC1 make bigide fails on Raspberry Pi2

2015-12-15 Thread Bo Berglund
On Tue, 15 Dec 2015 17:17:47 +0100, Mattias Gaertner wrote: >> Is there just a single fpc.cfg? > >The compiler searches for a config at several places and stops at the >first hit. > I searched for the cfg files: pi@rpi2-jessie / $ sudo find -name fpc*.cfg

[Lazarus] Its Xmas!

2015-12-15 Thread JuuS
Hi, Is the Lazarus fund still on the PayPal account Felipe M de C (as stated at http://wiki.lazarus.freepascal.org/How_to_donate_to_Lazarus)? Julius -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Does make install replace existing versions?

2015-12-15 Thread Bo Berglund
On Tue, 15 Dec 2015 09:39:08 +0100 (CET), Michael Van Canneyt wrote: >> Will the new lazarus replace the older or will there be some version >> added to the symlinks? > >The new lazarus will replace the old. > OK, thanks! I started by installing fpc release 3.0.0 and

[Lazarus] how to Draw Data Matrix by TLazBarcode

2015-12-15 Thread 최경식
i use lazarus 1.0.10 ver. i want to Draw Data Matrix 2D Barcode. so i used TLazBarcode Component, but it dosen't draw well. Data Matrix Format is variable when increase Data Matrix data. how to fix Data Matrix Format? i attach two picture. thank you --

[Lazarus] Lazarus 1.6RC1 make bigide fails on Raspberry Pi2

2015-12-15 Thread Bo Berglund
I have checked out the lazarus 1.6 RC1 tag from svn. I have also checked out and built the fpc release 3.0.0 and installed it as the fpc compiler on my system. Now I wanted to finally build lazarus 1.6RC1, but this happens: cd ~/development/src/lazarus/1.6.RC1 make bigide make -C

Re: [Lazarus] Does make install replace existing versions?

2015-12-15 Thread Michael Van Canneyt
On Tue, 15 Dec 2015, Bo Berglund wrote: I have checked out lazarus 1.6 on the RC1 tag and now I am a bit confused regarding the make options... I start by building lazarus in my source dir below home: make bigide But then there is: sudo make install which is used to put this lazarus into

[Lazarus] Does make install replace existing versions?

2015-12-15 Thread Bo Berglund
I have checked out lazarus 1.6 on the RC1 tag and now I am a bit confused regarding the make options... I start by building lazarus in my source dir below home: make bigide But then there is: sudo make install which is used to put this lazarus into /usr/local/share/lazarus What seems to happen

Re: [Lazarus] Lazarus 1.6RC1 make bigide fails on Raspberry Pi2

2015-12-15 Thread Mark Morgan Lloyd
Bo Berglund wrote: On Tue, 15 Dec 2015 17:17:47 +0100, Mattias Gaertner wrote: Is there just a single fpc.cfg? The compiler searches for a config at several places and stops at the first hit. I searched for the cfg files: pi@rpi2-jessie / $ sudo find -name

Re: [Lazarus] A simple event problem in console program

2015-12-15 Thread DougC
A TNotifyEvent must be a procedure that is a method of a class. You have created and tried to use a plain procedure instead. On Tue, 15 Dec 2015 17:02:48 -0500 Aradeonas aradeo...@operamail.comwrote ... and give this error: project1.lpr(30,13) Error: Incompatible types:

Re: [Lazarus] A simple event problem in console program

2015-12-15 Thread Aradeonas
> A TNotifyEvent must be a procedure that is a method of a class. You > have created and tried to use a plain procedure instead. So how can I use a notify in a console program? > Because TNotifyEvent = procedure(Sender: TObject) of object; The 'of object' means you need a method, not a procedure.

[Lazarus] problem with run androidlcltest

2015-12-15 Thread Ko Paka
Hello, I am trying to run this example with compiler and lazarus both build from trunk. Application itself will run and display(zopo zp320 android 4.4.2), but after touch it will stop react and after while is closed. I tried it for different target processor(armv5,v6,v7a) but result is always

Re: [Lazarus] Its Xmas!

2015-12-15 Thread JuuS
On 12/15/2015 09:38 PM, Vincent Snijders wrote: > > > 2015-12-15 20:00 GMT+01:00 JuuS >: > > Hi, > > Is the Lazarus fund still on the PayPal account Felipe M de C (as stated > at

[Lazarus] A simple event problem in console program

2015-12-15 Thread Aradeonas
Hi, Maybe Im tierd but could any one tell me what this code wont work: > program Project1; > > {$mode objfpc}{$H+} > > uses  Classes,  SysUtils; > > type > > { Tbook } > > Tbook = class  private    fnoti: TNotifyEvent;  public    property > noti: TNotifyEvent read fnoti write fnoti;  end; > > var 

Re: [Lazarus] Its Xmas!

2015-12-15 Thread Vincent Snijders
2015-12-15 20:00 GMT+01:00 JuuS : > Hi, > > Is the Lazarus fund still on the PayPal account Felipe M de C (as stated > at http://wiki.lazarus.freepascal.org/How_to_donate_to_Lazarus)? > > Yes. Vincent -- ___ Lazarus mailing list

Re: [Lazarus] A simple event problem in console program

2015-12-15 Thread Bart
On 12/15/15, Aradeonas wrote: >> procedure notievent(Sender: TObject); beginWriteLn('test'); end; Create a class with a procedure notievent,simple as that. type TDummy = class; procedure notievent(Sender: TObject); end; var Dummy: TDummy; begin

[Lazarus] Qt issue: application blocks user logout

2015-12-15 Thread Giuliano Colla
Hi, folks. I have an application, on Linux environment, which should always be running, as long as an user is logged in. Therefore it's activated in Autostart, and should only be closed when the user logs out. If it is compiled using the GTK2 WS it works as expected. if it is compiled using

Re: [Lazarus] how to Draw Data Matrix by TLazBarcode

2015-12-15 Thread 최경식
-Original Message- From: "José Mejuto"joshy...@gmail.com To: lazarus@lists.lazarus.freepascal.org; Cc: Sent: 2015-12-16 (수) 00:14:02 Subject: Re: [Lazarus] how to Draw Data Matrix by TLazBarcode El 15/12/2015 a las 10:28, 최경식 escribió: i use lazarus 1.0.10 ver. i want to Draw

Re: [Lazarus] A simple event problem in console program

2015-12-15 Thread Mattias Gaertner
On Tue, 15 Dec 2015 14:02:48 -0800 Aradeonas wrote: >[...] > Maybe Im tierd but could any one tell me what this code wont work: > > program Project1; > > > > {$mode objfpc}{$H+} > > > > uses  Classes,  SysUtils; > > > > type > > > > { Tbook } > > > > Tbook = class 

Re: [Lazarus] Lazarus 1.6RC1 make bigide fails on Raspberry Pi2

2015-12-15 Thread Bo Berglund
On Tue, 15 Dec 2015 10:55:38 +0100, Bo Berglund wrote: >I have checked out the lazarus 1.6 RC1 tag from svn. >I have also checked out and built the fpc release 3.0.0 and installed >it as the fpc compiler on my system. > >Now I wanted to finally build lazarus 1.6RC1, but

Re: [Lazarus] Lazarus 1.6RC1 make bigide fails on Raspberry Pi2

2015-12-15 Thread Mattias Gaertner
On Tue, 15 Dec 2015 10:55:38 +0100 Bo Berglund wrote: > I have checked out the lazarus 1.6 RC1 tag from svn. > I have also checked out and built the fpc release 3.0.0 and installed > it as the fpc compiler on my system. > > Now I wanted to finally build lazarus 1.6RC1,

Re: [Lazarus] how to Draw Data Matrix by TLazBarcode

2015-12-15 Thread José Mejuto
El 15/12/2015 a las 10:28, 최경식 escribió: i use lazarus 1.0.10 ver. i want to Draw Data Matrix 2D Barcode. so i used TLazBarcode Component, but it dosen't draw well. Data Matrix Format is variable when increase Data Matrix data. how to fix Data Matrix Format? i attach two picture. thank you

Re: [Lazarus] Lazarus 1.6RC1 make bigide fails on Raspberry Pi2

2015-12-15 Thread Bo Berglund
On Tue, 15 Dec 2015 15:35:59 +0100, Mattias Gaertner wrote: >Check if you have /etc/fpc.cfg. Yes I have. In fact I do have several instances of the fpc compiler: The 2.6.4 bootstrap compiler The 3.0.0 compiler I just built from the release sources The 3.1.1 compiler