Re: [Lazarus] FPC arm building issue

2013-09-26 Thread leledumbo
Seems like you're just getting a broken revision. This: zipper.pp(2721) Error: Error while assembling exitcode 1 zipper.pp(2721) Fatal: There were 2 errors compiling module, stopping Fatal: Compilation aborted paszlib\units\arm-linux\zipper.s: Assembler messages:

Re: [Lazarus] FPC arm building issue

2013-09-26 Thread Kjow
2013/9/26 leledumbo leledumbo_c...@yahoo.co.id Seems like you're just getting a broken revision. This: zipper.pp(2721) Error: Error while assembling exitcode 1 zipper.pp(2721) Fatal: There were 2 errors compiling module, stopping Fatal: Compilation aborted paszlib\units\arm-linux\zipper.s:

[Lazarus] Adding and hiding TPageControl tabs

2013-09-26 Thread Mark Morgan Lloyd
I know that this should be an FAQ, but Google isn't being much help. I've got a TPageControl with a single design-time page, on which there's a Synedit which is used (a) as a splash when there's no other tabs and (b) as a template for design-time properties. I can add an extra tab and put a

Re: [Lazarus] Adding and hiding TPageControl tabs

2013-09-26 Thread Martin
On 26/09/2013 15:32, Mark Morgan Lloyd wrote: I know that this should be an FAQ, but Google isn't being much help. I've got a TPageControl with a single design-time page, on which there's a Synedit which is used (a) as a splash when there's no other tabs and (b) as a template for design-time

Re: [Lazarus] Adding and hiding TPageControl tabs

2013-09-26 Thread Martin
On 26/09/2013 15:39, Martin wrote: On 26/09/2013 15:32, Mark Morgan Lloyd wrote: I know that this should be an FAQ, but Google isn't being much help. I've got a TPageControl with a single design-time page, on which there's a Synedit which is used (a) as a splash when there's no other tabs

Re: [Lazarus] Ubuntu Server x Xfce x Lazarus

2013-09-26 Thread Junior
Sempron LE 1140 already installed xfce on ubuntu server. total free memory: 1641 mb total memory used: 370 mb In Ubuntu Desktop free memory was: 400 mb Lazarus working well and very fast. thanks Em 24-09-2013 22:11, wkitt...@windstream.net escreveu: with those given specs, you have much

Re: [Lazarus] Adding and hiding TPageControl tabs

2013-09-26 Thread Mark Morgan Lloyd
I've got a TPageControl with a single design-time page, on which there's a Synedit which is used (a) as a splash when there's no other tabs and (b) as a template for design-time properties. I can add an extra tab and put a Synedit in it under program control, and load it with text. What I

Re: [Lazarus] Adding and hiding TPageControl tabs

2013-09-26 Thread Martin
On 26/09/2013 16:19, Mark Morgan Lloyd wrote: Please try 1.0.13 not released, you can get from svn fixes branch using svn. Or 1.3 (also not released) Or 1.1.99 from sourceforge 1.0.13 should be stable. The other 2 are work in progress Thanks, I'll investigate upgrades. btw, trunk may

[Lazarus] TLazProject.LazCompilerOptions custom options

2013-09-26 Thread patspiper
Hi, How can we access TLazProject.LazCompilerOptions custom options in an IDE add-on package that creates a project type such as the HTTP server web app? I need to add to the custom options -dUseCThreads. TLazProject.LazCompilerOptions.SetCustomOptions is abstract. Stephano --

Re: [Lazarus] TLazProject.LazCompilerOptions custom options

2013-09-26 Thread Juha Manninen
On Thu, Sep 26, 2013 at 10:18 PM, patspiper patspi...@gmail.com wrote: TLazProject.LazCompilerOptions.SetCustomOptions is abstract. Use the property TLazProject.LazCompilerOptions.CustomOptions. SetCustomOptions is a protected accessor method, not meant for calling directly. Juha --