Re: [Lazarus] Cross Compile for arm-linux

2009-12-05 Thread Kjow
braces around empty body in an ‘if’ statement make[4]: *** [tc-arm.o] Error 1 make[4]: Leaving directory `/home/kjow/arm/binutils/gas' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/home/kjow/arm/binutils/gas' make[2]: *** [all] Error 2 make[2]: Leaving directory `/home/kjow/arm

Re: [Lazarus] Cross Compile for arm-linux

2009-12-05 Thread Kjow
2009/12/5 Henry Vermaak henry.verm...@gmail.com: You can probably fix this with passing --disable-werror to ./configure. Perfect! ./configure --target=arm-linux --disable-werror make sudo make install and now I have: /usr/local/bin/arm-linux-as /usr/local/bin/arm-linux-ld So, I think that

Re: [Lazarus] Cross Compile for arm-linux

2009-12-07 Thread Kjow
2009/12/7 Paul Nicholls paulfnicho...@gmail.com: Hi :) I don't know if it will help, but back in 2007, I started a website: http://fpc4gp2x.eonclash.com/ which allows one to make programs for an arm-linux handheld, the gp2x. It has a freepascal cross-compiler that works under Windows 32,

Re: [Lazarus] Cross Compile for arm-linux

2009-12-07 Thread Kjow
2009/12/7 Dariusz Mazur dar...@emadar.com: and at last fpc.cfg: Thank you very much! I'm going to try all, but I don't know a thing: the fpc.cfg you posted is to append to existing one or it is a replace? I'm not expert to config fpc... -- ___

Re: [Lazarus] Cross Compile for arm-linux

2009-12-07 Thread Kjow
2009/12/7 Dariusz Mazur dar...@emadar.com: this is fpc.cfg in the same dir as you compile, as you see it include default fpc Thank you very much! I understand better now :) in your fpc.cfg there are these rows: -FU/home/darek2008/fpcarm/praca/$fpctarget -Fu~/lib/synapsesvn/trunk what's

Re: [Lazarus] Cross Compile for arm-linux

2009-12-08 Thread Kjow
Now I have this problem: /home/kjow/fpcarm/lib/fpc/2.5.1/ppcrossarm -XParm-linux- /home/kjow/Programmazione/TestARM/prova1.pas Free Pascal Compiler version 2.5.1 [2009/12/07] for arm Copyright (c) 1993-2009 by Florian Klaempfl Target OS: Linux for ARM Compiling /home/kjow/Programmazione/TestARM

Re: [Lazarus] Cross Compile for arm-linux

2009-12-08 Thread Kjow
PS prova1.pas cat /home/kjow/Programmazione/TestARM/prova1.pas program hello; begin writeln ('Hello!'); end. 2009/12/9 Kjow antispamm...@gmail.com: Now I have this problem: /home/kjow/fpcarm/lib/fpc/2.5.1/ppcrossarm -XParm-linux- /home/kjow/Programmazione/TestARM/prova1.pas Free

Re: [Lazarus] Cross Compile for arm-linux

2009-12-09 Thread Kjow
2009/12/9 Dariusz Mazur dar...@emadar.com: try /home/kjow/fpcarm/lib/fpc/2.5.1/ppcrossarm  -XParm-linux-   prova1.pas which is curr dir? have You write access to TestARM ? the same dir where You compile Ok, probably this is the mistake. Thank you! I was trying to compile from fpcscr

[Lazarus] [FPC] Install from sources

2009-12-09 Thread Kjow
), Lazarus Sources ( http://snapshots.lazarus.shikami.org/files/lazarus-0.9.29-23043-20091209-src.zip ) and precompiled FPC ( http://snapshots.lazarus.shikami.org/files/fpc-2.2.4-20091209.i386.rpm ). I put on /home/kjow/lazarus/ lazarus sources and on /home/kjow/lazarus/fpc/2.5.1 FPC sources. In /home

Re: [Lazarus] [FPC] Install from sources

2009-12-09 Thread Kjow
2009/12/9 Graeme Geldenhuys gra...@mastermaths.co.za: And under Linux that would normally be the *-dev (development) packages. On my Ubuntu 9.04 system that would be libncurses5-dev package. Thank you both! sudo apt-get install libncurses5-dev and it seems to compile right:

Re: [Lazarus] [FPC] Install from sources

2009-12-09 Thread Kjow
2009/12/9 Kjow antispamm...@gmail.com: 1) sudo alien -i -c /home/kjow/fpc_tools/fpc-2.2.4-20091209.i386.rpm 2) ppc386 -i (2.2.4 installed ok) 3) cd /home/kjow/lazarus/fpc/2.5.1 4) make all OPT='-gl -O3p3' PP=/usr/bin/ppc386 5) sudo make install PP=/usr/bin/ppc386 PREFIX=/usr 6) sudo rm /usr

Re: [Lazarus] [FPC] Install from sources

2009-12-09 Thread Kjow
2009/12/9 Kjow antispamm...@gmail.com: /usr/local/bin/ld: cannot find -lX11 Sorry for flooding... I tried (and it worked) with installation of two dependencies: libXp-dev libgtk2.0-dev Now Lazarus starts :) -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] Cross Compile for arm-linux

2009-12-09 Thread Kjow
Hi again, I re-compiled all (fpc+lazarus+binutils) on a fresh Ubuntu 9.10 x86 VM (virtualbox) and it seems to be ok. Lazarus compile x86 code. Now I'm trying again to make fpc/lazarus compatible with arm, but there are other problems. I compiled the ppcrossarm: ~$

Re: [Lazarus] [FPC] Install from sources

2009-12-09 Thread Kjow
2009/12/9 Vincent Snijders vsnijd...@vodafonevast.nl: Why did you use alien on a rpm instead of installing the debs? Because it is a smaller download (for this purpuse) and it has simpler management (no unpack and one file instead 19 files). :) -- ___

Re: [Lazarus] Cross Compile for arm-linux

2009-12-09 Thread Kjow
It works!!! My Nokia N900 says its first console word: Hello! :D With ~/lazarus/fpc/2.5.1/lib/fpc/2.5.1/ppcrossarm -va I saw that fpc didn't load arm fpc.cfg so I saved it to ~/.fpc.cfg and than I had to adjust a couple of path on it. After that I launched:

[Lazarus] [Partially Solved] Cross Compile for arm-linux

2009-12-10 Thread Kjow
2.5.1 [2009/12/09] for arm Copyright (c) 1993-2009 by Florian Klaempfl Target OS: Linux for ARM Compiling gp2x_tutorial.dpr Assembling gp2x_tutorial Linking gp2x_tutorial /home/kjow/lazarus/fpc/binutils/ld: skipping incompatible /usr/lib/libSDL.so when searching for -lSDL /home/kjow/lazarus/fpc

Re: [Lazarus] [Partially Solved] Cross Compile for arm-linux

2009-12-11 Thread Kjow
: Can't find unit Interfaces used by LAzARM Fatal: Compilation aborted Can you help me? Thank you! Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] [Partially Solved] Cross Compile for arm-linux

2009-12-11 Thread Kjow
2009/12/11 Kjow antispamm...@gmail.com: I tried with: make lcl LCL_PLATFORM=gtk2 CPU_TARGET=arm OS_TARGET=linux CROSSBINDIR=/home/kjow/lazarus/fpc/binutils/ FPC=/usr/lib/fpc/2.5.1/ppcrossarm OPT=-CfSOFT -Xd -Sd I tried also, in lazarus root, but: ~/lazarus/$ sudo make clean all CPU_TARGET

Re: [Lazarus] [Partially Solved] Cross Compile for arm-linux

2009-12-12 Thread Kjow
? What I understand: 1) Compile Lazarus for the host. 2) /lazarus$ make lcl LCL_PLATFORM=gtk2 PP=ppcarm CPU_TARGET=arm OS_TARGET=linux 3) /lazarus/packager/registration/$ make PP=ppcarm CPU_TARGET=arm OS_TARGET=linux 4) ? Thank you! Kjow PS I'm sorry if I don't understand, but I find just few

Re: [Lazarus] [Partially Solved] Cross Compile for arm-linux

2009-12-12 Thread Kjow
in IntfGraphics Assembling intfgraphics Compiling /home/kjow/lazarus/lcl/imglist.pp Compiling /home/kjow/lazarus/lcl/lclclasses.pp PPU Loading /home/kjow/lazarus/lcl/units/arm-linux/wslclclasses.ppu PPU Source: wslclclasses.pp not found Recompiling WSLCLClasses, checksum changed for LCLProc

Re: [Lazarus] [Partially Solved] Cross Compile for arm-linux

2009-12-13 Thread Kjow
2009/12/13 Mattias Gaertner nc-gaert...@netcologne.de: You have a /home/kjow/.fpc.cfg ? Yes, it is: #INCLUDE /etc/fpc.cfg #DEFINE DEMOTEST #DEFINE DEMOTEST1 #DEFINE LAZARUS -Fu/usr/lib/fpc/2.5.1/units/$fpctarget/* -Fl/usr/lib/fpc/2.5.1/units/$fpctarget/rtl/ -Fu/home/kjow/lazarus/lcl/ -Fi/home

Re: [Lazarus] [Partially Solved] Cross Compile for arm-linux

2009-12-13 Thread Kjow
2009/12/13 Mattias Gaertner nc-gaert...@netcologne.de: -Fu/home/kjow/lazarus/lcl/ -Fi/home/kjow/lazarus/lcl/include/ -Fu/home/kjow/lazarus/lcl/nonwin32/ These are some of the lcl source paths. I removed these and, now themes.pas not found... Lazarus IDE: Hint: Start of reading config file

Re: [Lazarus] [Partially Solved] Cross Compile for arm-linux

2009-12-13 Thread Kjow
2009/12/13 Mattias Gaertner nc-gaert...@netcologne.de: Check with -vut. Probably you have still some wrongly created ppu from your former try in ~/dev/TestARM/LazARM Perfect, there was this problem. A lot of trash in project dir. With a new project I have: /home/kjow/lazarus/fpc/binutils/ld

Re: [Lazarus] PilotLogic's CodeTyphon (rebranded Lazarus)

2009-12-14 Thread Kjow
2009/12/14 Graeme Geldenhuys graemeg.li...@gmail.com: As far as I can see, it is simply a rebranded Lazarus, includes a different GUI installation and pre-installs various external components. That's what I could find on the website, I haven't tried it myself though. I try it every releases.

[Lazarus] Do FPC generates old EABI code?

2009-12-14 Thread Kjow
Hi all again, I think that I'm almost at the end of my path to make Lazarus able to build for arm-linux graphical projects. It compiles and it seems to link right, I found all target libs I need (I grabbed most of these from sdk), but almost at the end I have this error: ... /home/kjow/lazarus

Re: [Lazarus] Do FPC generates old EABI code?

2009-12-14 Thread Kjow
2009/12/14 Dariusz Mazur dar...@emadar.com: did you compile FPC and libcross with the same binutils? how you made crossppcarm ? to read EABI version you may use readelf -a ./linX11.so. I started from latest sources and compiled binutils, fpc and lazarus myselft in a fresh ubuntu installation,

Re: [Lazarus] PilotLogic s CodeTyphon (rebranded Lazarus)

2009-12-14 Thread Kjow
2009/12/14 waldo kitty wkitt...@windstream.net: a dropper? i don't understand the term :? I'm sorry, it is a typical italian expression :) I don't know which is the english version, but we use this metaphore to indicate a poor comunication: such as a dropper

Re: [Lazarus] Do FPC generates old EABI code?

2009-12-14 Thread Kjow
2009/12/14 Kjow antispamm...@gmail.com: I'm going to try! I don't understand... Now I forced to use as -meabi=5 , but there are still errors. I compiled Lazarus lcl, from the IDE. FPC uses the same binutils that Lazarus. Hint: Start of reading config file /home/kjow/.fpc.cfg Hint: Start

Re: [Lazarus] Do FPC generates old EABI code?

2009-12-14 Thread Kjow
2009/12/14 Kjow antispamm...@gmail.com: I don't understand... Now I forced to use as -meabi=5 , but there are still errors. I compiled Lazarus lcl, from the IDE. FPC uses the same binutils that Lazarus. Ok... it seems that lazarus doesn't use my own binutils path. So I tricked original arm

Re: [Lazarus] Do FPC generates old EABI code?

2009-12-15 Thread Kjow
CPU_TARGET=arm OS_TARGET=linux CROSSBINDIR=/home/kjow/lazarus/fpc/binutils/ CROSSOPT=-CaEABI -dFPC_ARMEL -CfSOFT -gl -O- INSTALL_PREFIX=/usr/ COMPILER_OPTIONS=cpufpemu However, when I compile from terminal Hello world programs (a simple writeln) it works well and it runs on my phisical arm device: ~/dev

Re: [Lazarus] Do FPC generates old EABI code?

2009-12-15 Thread Kjow
is enough. Hi! So first time that I build FPC for arm, I need to do this: sudo make crossinstall CPU_TARGET=arm OS_TARGET=linux CROSSBINDIR=/home/kjow/lazarus/fpc/binutils/ OPT=-dFPC_ARMEL INSTALL_PREFIX=/usr instead of sudo make crossinstall CPU_TARGET=arm OS_TARGET=linux CROSSBINDIR=/home

Re: [Lazarus] Do FPC generates old EABI code?

2009-12-15 Thread Kjow
2009/12/15 Kjow antispamm...@gmail.com: sudo make crossinstall CPU_TARGET=arm OS_TARGET=linux CROSSBINDIR=/home/kjow/lazarus/fpc/binutils/ OPT=-dFPC_ARMEL INSTALL_PREFIX=/usr I rewrote my guide how to cross compile starting from sources, this is the result: http://forum.lazarus.freepascal.org

[Lazarus] Lazarus compiles for Maemo 5 (Nokia N900)

2009-12-15 Thread Kjow
Hi all! I want to thank everyone helped me to make it possible here, in lazarus forum and in Maemo forum. A special thank to Florian Klaempfl and Mattias Gärtner that have taught me really interesting things on cross compiling. Here a screenshot of my first Hello World on Maemo's Nokia N900:

Re: [Lazarus] Do FPC generates old EABI code?

2009-12-15 Thread Kjow
2009/12/15 Florian Klaempfl flor...@freepascal.org: Please, don't spread the nonsense of -CfSOFT -CaEABI, it's neither needed nor desired. -dFPC_ARMEL is enough. Neither is -dFPC_ARMEL needed  in CROSSOPT. It is only needed when the first arm compiler is built and in this case OPT=-dFPC_ARMEL

Re: [Lazarus] Do FPC generates old EABI code?

2009-12-15 Thread Kjow
OS_TARGET=linux CROSSBINDIR=/home/kjow/lazarus/fpc/binutils/ OPT=-dFPC_ARMEL INSTALL_PREFIX=/usr Lazarus builds right, and Target OS: Linux for ARMEL: Free Pascal Compiler version 2.5.1 [2009/12/15] for arm Copyright (c) 1993-2009 by Florian Klaempfl Target OS: Linux for ARMEL Compiling LAzARM.lpr

[Lazarus] Personalize window menu

2010-01-08 Thread Kjow
Hi, How can I personalize window menu of applications? I need to add some voices in that menu, but I can't find a way... and is it possible to remove the existing voices? In attachment a screenshot of what I mean. Thank you very much. attachment: WindowsMenu.png--

Re: [Lazarus] GTK2 behaviors

2010-01-09 Thread Kjow
2010/1/9 Paul Ishenin webpi...@mail.ru: All gtk_something_new() return PGtkWidget. Just typecast it: PGtkWindow(gtk_window_new()) Best regards, Paul Ishenin. Thanks, but how can I pass form to gtkwindow? Kjow -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] GTK2 behaviors

2010-01-09 Thread Kjow
2010/1/9 Mattias Gaertner nc-gaert...@netcologne.de: If you want to make a form full screen under gtk, use: uses gtkproc; SetWindowFullScreen(Form1,true); Mattias Thank you! It works, but can I use gtk2 calls in lazzarus apps? Kjow

Re: [Lazarus] GTK2 behaviors

2010-01-09 Thread Kjow
://sw.nokia.com/id/a3187f95-ad88-4233-b0ef-a182da3ec1c7/Hildon_2_2_Widget_UI_Specification_v1_0_en.pdf Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] [Windows] Compiling from sources.

2010-01-13 Thread Kjow
Hi, I'm on Windows 7 and I'm trying to compile fpc+lazarus from both trunk svn, but I get some errors. 1) I downloaded both svn with tortoise and I moved sources to: c:\Devel\fpc\2.5.1\source c:\Devel\Lazarus 2) I installed official fpc 2.4.0 in: c:\Devel\fpc\2.4.0 3) I compiled fpc 2.5.1

Re: [Lazarus] [Windows] Compiling from sources.

2010-01-13 Thread Kjow
2010/1/13 Kjow antispamm...@gmail.com: Hi, I'm on Windows 7 and I'm trying to compile fpc+lazarus from both trunk svn, but I get some errors. I'm sorry for mistake, I send this email in error. I found the problem, I just need to add these rows at the end of fpc.cfg -Fuc:\Devel\fpc

[Lazarus] cross compile from windows

2010-01-13 Thread Kjow
Hi all, I'm trying to make lazarus able to cross compile from Win32 to arm-linux. FPC is ok, but lazarus won't compile for arm-linux. I crossinstalled FPC by: make crossinstall CPU_TARGET=arm OS_TARGET=linux CROSSBINDIR=C:\Devel\binutils OPT=-dFPC_ARMEL INSTALL_PREFIX=C:\Devel\fpc\2.5.1

Re: [Lazarus] Lazarus website is down

2010-01-14 Thread Kjow
2010/1/14 Graeme Geldenhuys graemeg.li...@gmail.com: Hi, The URL:  http://www.lazarus.freepascal.org/ is currently down - at least from South Africa. I just thought I would let you know. Regards,  - Graeme - Here, in Italy, it is ok. Kjow

[Lazarus] Build/Rebuild lazarus with components

2010-01-17 Thread Kjow
Hi all, I need to compile lazarus in terminal (or command prompt) including all components already installed. I mean that I made a simple batch script on windows startup that download fpc svn, lazarus svn, recompile fpc and finally recompile lazarus, but every time I run Lazarus (after relative

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-18 Thread Kjow
2010/1/18 Mattias Gaertner nc-gaert...@netcologne.de: See http://wiki.lazarus.freepascal.org/Installing_Lazarus#Compiling_and_running Oh, OK. So to upgrade svn revisions I need to do make instead make clean all. I noticed also that lazarus.exe hasn't the icon, how to associate it to the

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-18 Thread Kjow
conflicts with -g options. You can also ask fpc to separate debug info from the executable using -Xg switch. I can be wrong but as I remember -Xg works correctly starting from fpc 2.4.0 So can I add -Xs or -Xg to the make for lazarus compile? e.g. c:\develop\lazarus\ make -Xs Thanks Kjow

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-18 Thread Kjow
2010/1/18 Paul Ishenin webpi...@mail.ru: No idea. Lazarus.exe has the same icon as startlazarus and lazbuild here. Can I force to link the icon? (e.g windres in my own script, but which syntax?) Thanks, Kjow -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-18 Thread Kjow
2010/1/18 Luca Olivetti l...@wetron.es: You need to specify the --build-ide= option as well Do you mean lazbuild --build-all --build-ide=? Thanks, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-18 Thread Kjow
2010/1/18 Paul Ishenin webpi...@mail.ru: Can you tell me what lazarus version do you have? If 0.9.28 then look at lazarus.rc which must contain a manifest and an icon. If 0.9.29 then lazarus.res must be in the ide folder which contains an icon. As I said on first message, I made a simple

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-19 Thread Kjow
? Thanks, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-19 Thread Kjow
version). Thank you very much for help, Lazarus community is fantastic! Regards, Kjow laz_icon.reg Description: Binary data -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] [script] Fpc+lazarus: SVNdownload + compile

2010-01-19 Thread Kjow
--strip-all lazbuild.exe strip --strip-all startlazarus.exe pause exit Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] contnrs.ppu - Invalid Version 112

2010-01-19 Thread Kjow
Exception: C:\Develop\Lazarus\lcl\masks.pas(1,1) Fatal: Can't find unit Contnrs used by Masks ERROR: tool reported error Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] contnrs.ppu - Invalid Version 112

2010-01-19 Thread Kjow
-compile all and I got this error. No other modifies... Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] contnrs.ppu - Invalid Version 112

2010-01-19 Thread Kjow
? It is advisable to do every time before to recompile? Thanks, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] contnrs.ppu - Invalid Version 112

2010-01-19 Thread Kjow
: C:\Develop\Lazarus\lcl\masks.pas(1,1) Fatal: Can't find unit Contnrs used by Masks ERROR: tool reported error Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] contnrs.ppu - Invalid Version 112

2010-01-19 Thread Kjow
this morning update. Thanks, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] contnrs.ppu - Invalid Version 112

2010-01-20 Thread Kjow
restarted from new svn download and all things are gone right! Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-20 Thread Kjow
-ide= or just: lazbuild --build-all --build-ide= Thanks! Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] Error: illegal qualifier [ found

2010-01-20 Thread Kjow
Hi, I updated Lazarus svn to revision 23510, but from some revs (at least from some hours ago), when I press ctrl+space at the end of an array to open the menu I get the error: Error: illegal qualifier [ found Is it a bug or a my problem? Thanks, Kjow

Re: [Lazarus] Error: illegal qualifier [ found

2010-01-20 Thread Kjow
... example.DummyCubeList[i]. //CTRL+Space error - Error: illegal qualifier [ found Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Error: illegal qualifier [ found

2010-01-21 Thread Kjow
2010/1/21 Mattias Gaertner nc-gaert...@netcologne.de: fixed ... Fixed. Thank you! I can confirm that now it is ok! Best regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman

Re: [Lazarus] GTK2 EraseBackgound

2010-02-05 Thread Kjow
the Pascal binding library if you use it. -- Felipe Monteiro de Carvalho What about licenses using of QT in commercial projects? Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo

Re: [Lazarus] GTK2 EraseBackgound

2010-02-06 Thread Kjow
2010/2/6 Graeme Geldenhuys graemeg.li...@gmail.com: On 6 February 2010 00:31, Kjow antispamm...@gmail.com wrote: What about licenses using of QT in commercial projects? You need to purchase a commercial license. $2500 US per developer - starting price (if I remember correctly

Re: [Lazarus] GTK2 EraseBackgound

2010-02-06 Thread Kjow
I need to release it? So, the difference between LGPL and commercial licenses is the official support? ( I found this: http://qt.nokia.com/products/licensing ) Thanks, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

[Lazarus] Server down/error?

2010-02-12 Thread Kjow
click an option from the menu bar to go directly to a new section. SVN also returns error: svn: Can't find a temporary directory: Internal error Thanks, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

Re: [Lazarus] Server down/error?

2010-02-12 Thread Kjow
, but it was the site http://bugs.freepascal.org/ and the svn system. Now it is ok ;) Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] [OT] GLScene newsgroups

2010-02-21 Thread Kjow
? Thank you, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] QT: installaton error.

2010-02-22 Thread Kjow
2 Can you help me? Thanks, Kjow PS If I try to compile a QT demo, it is ok: D:\Downloads\Lazarus\QT\Win\win_demos-V2.1_Qt4.5.3\demos-V2.1_Qt4.5.3\circlesfpc circles.pas Free Pascal Compiler version 2.5.1 [2010/02/22] for i386 Copyright (c) 1993-2009 by Florian Klaempfl Target OS: Win32 for i386

Re: [Lazarus] QT: installaton error.

2010-02-23 Thread Kjow
2010/2/23 Den Jean den.j...@telenet.be: On Monday 22 February 2010 23:38:50 Kjow wrote: qtwinapi.inc(1181,7) Error: Can't determine which overloaded function to call see patch here: http://lists.lazarus.freepascal.org/pipermail/qt/2010-February/001475.html and explanation here: http

Re: [Lazarus] QT: installaton error.

2010-02-23 Thread Kjow
2010/2/23 Kjow antispamm...@gmail.com: The procedure entry point _Z5qFreePv could not be located in the dynamic link libaray QtCore4.dll Solved. I added to path: C:\Program Files\QT\qt\bin (the directory which contains mingwm10.dll) Now It seems to work well. Bye

Re: [Lazarus] QT: installaton error.

2010-02-23 Thread Kjow
to solve this? Thanks! Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] QT: installaton error.

2010-02-23 Thread Kjow
2010/2/23 Kjow antispamm...@gmail.com: How to solve this? Solved. I just removed lib directory in project folder. Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo

[Lazarus] ComboBox height

2010-03-01 Thread Kjow
Hi all, is it possible to modify combobox height? I tried to set autosize to false, but I can't change the height. Thanks, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo

[Lazarus] Division by Zero with latest svn

2010-03-12 Thread Kjow
with old standard projects. Thanks! Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] Run two build simultaneously

2010-03-13 Thread Kjow
directory) the same path. Thanks, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Run two build simultaneously

2010-03-14 Thread Kjow
2010/3/13 Bart bartjun...@gmail.com: c:\lazarus-latest\lazarus.exe --pcp=c:\lazarus-latest c:\lazarus-stable\lazarus.exe --pcp=c:\lazarus-stable Thank you all, This worked for me like a charm. Both lazarus dir have now their config files. Regards, Kjow

Re: [Lazarus] Run two build simultaneously

2010-03-15 Thread Kjow
the latest source. Vincent Cause this bug (http://mantis.freepascal.org/view.php?id=15971) the same config cause to resize everytime the IDE when using stable after the latest svn... Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

Re: [Lazarus] svn r23973 unable to open old projects

2010-03-15 Thread Kjow
-20100311-src.zip Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] svn r23973 unable to open old projects

2010-03-15 Thread Kjow
/view.php?id=15972 Thanks! Kjow PS what is the newautosize function? -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] svn r23973 unable to open old projects

2010-03-15 Thread Kjow
No problems. Thanks, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] svn r23973 unable to open old projects

2010-03-15 Thread Kjow
. But I need to include this option on a script that update everyday my lazarus revision to the latest, so I need a way to build lazarus IDE by command prompt / terminal with this option :) Kjow -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] svn r23973 unable to open old projects

2010-03-15 Thread Kjow
to this below? lazbuild --build-ide= (so, without option -dOldAutoSize) Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] svn r23973 unable to open old projects

2010-03-15 Thread Kjow
2010/3/15 Kjow antispamm...@gmail.com: make clean bigide (and so: make clean bigide OPT=-dOldAutoSize ) I have an other question: Can make clean bigide replace make clean all after an svn update? Thanks, Kjow -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] svn r23973 unable to open old projects

2010-03-16 Thread Kjow
pause exit Thank you, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] svn r23973 unable to open old projects

2010-03-16 Thread Kjow
fundamental issues. Mattias is very busy, but I'm sure he'll fix these soon :-) Best regards, Flávio Thank you very much, your help is very apprecciated :) Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

Re: [Lazarus] make clean bigide

2010-03-16 Thread Kjow
the -dOldAutoSize option... right? Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] make clean bigide

2010-03-16 Thread Kjow
for it? Umm... I'm sorry but I don't understand, what do you mean? I'm using latest svn of Lazarus, FPC and GLScene on Windows7 and on Ubuntu 9.10 Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org

Re: [Lazarus] make clean bigide

2010-03-17 Thread Kjow
in scripts :) I hope this was usefull :) Best Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] $500 of bounty

2010-03-17 Thread Kjow
for Nokia N900 (that is an arm-linux machine, it use Maemo5 a debian (arm) based distro). Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] $500 of bounty

2010-03-17 Thread Kjow
2010/3/18 Antônio antoniog12...@gmail.com: Should I interpret this as meaning that you do not want the $ 500? Antônio No, I want simply tell you that there is already a way to build for arm-linux with latest lazarus/fpc svn :) Regards, Kjow

Re: [Lazarus] $500 of bounty

2010-03-17 Thread Kjow
2010/3/18 Antônio antoniog12...@gmail.com: The advertiser is from a brazilian software company, http://www.mobilitysistemas.com.br/ . Antônio Oh, I'm sorry. I thought that was you the one that wrote this bounty :) Regards, Kjow -- ___ Lazarus

Re: [Lazarus] $500 of bounty

2010-03-18 Thread Kjow
to contact them, but no replies. They can contact me through lazarus forum, clicking my nick and reading my email address in the profile or sending me a private message in the forum: http://forum.lazarus.freepascal.org/index.php/topic,8084.0.html Best Regards, Kjow

Re: [Lazarus] $500 of bounty

2010-03-18 Thread Kjow
time to do this. Best Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] $500 of bounty

2010-03-18 Thread Kjow
2010/3/18 Silvio Clecio silviop...@gmail.com: Interestingly, he had asked me to do this. I prepared my environment to be able to help you, I lost my time with it. ¬¬ I definitely do not understand people, especially the rushed. Do you refer to me? Kjow

[Lazarus] Webcam

2010-03-26 Thread Kjow
Hi all, Do you know if there is a multiplatform component to view (and manage) a webcam (Win, Linux, Mac)? Thanks! -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] Source code rows count

2010-04-03 Thread Kjow
Hi all, Is there a way to know how many rows of source code there are on a project? I mean a way to know some things: 1) Full lines count (all units + all comments) 2) Only custom units with comments 3) Only custom units without comments (this is the most important for me) Thank you! Kjow

[Lazarus] libQt4Pas.so for ARM

2010-04-07 Thread Kjow
Hi all, is it possible to have a precompiled binary libQt4Pas.so for ARM (like the one for X11 i386) downloadable from here http://users.telenet.be/Jan.Van.hijfte/qtforfpc/fpcqt4.html ? I tried to make it myself, but I don't understand what to do... Thanks! --

[Lazarus] TMouseButton

2010-04-07 Thread Kjow
feature or this is a feature? Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] TMouseButton

2010-04-07 Thread Kjow
much! I searched for this, but nothing found! :-) Best regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

  1   2   3   4   >