Re: [fpc-devel] Lazarus: A new widgest set

2008-02-15 Thread vsnijders
- Original Message - From: Michael Schnell <[EMAIL PROTECTED]> Date: Friday, February 15, 2008 1:22 pm Subject: Re: [fpc-devel] Lazarus: A new widgest set > > > How can you download the zip-file, if you cannot use SVN (that > uses http over port 80)? If svn is blocked, you cannot brows

Re: [fpc-devel] Lazarus: A new widgest set

2008-02-15 Thread vsnijders
> I don't have the Free Pascal compiler sources (yet) and (sitting > behind > a firewall) I can't access the RCS. Can these be downloaded as a > zipped > file ? How can you download the zip-file, if you cannot use SVN (that uses http over port 80)? If svn is blocked, you cannot browse to the

Re: [fpc-devel] Lazarus: A new widgest set

2008-02-15 Thread vsnijders
From: Michael Schnell <[EMAIL PROTECTED]> > Vincent Snijders wrote: > > You have lot's of questions and the few hints I gave don't seem > to be > > enough. Maybe it is better if I try to find some time to write a > wiki > > article. I don't think this question - answer - question cycle is >

Re: [fpc-devel] win32 debugging broken in fixes_2_2?

2007-07-10 Thread vsnijders
- Original Message - From: Martin Schreiber <[EMAIL PROTECTED]> Date: Tuesday, July 10, 2007 2:44 pm Subject: Re: [fpc-devel] win32 debugging broken in fixes_2_2? > On Tuesday 10 July 2007 14.34, Jonas Maebe wrote: > > The rtl checks on startup whether or not your cpu supports SSE. It >

Re: [fpc-devel] win32 debugging broken in fixes_2_2?

2007-07-10 Thread vsnijders
- Original Message - From: Martin Schreiber <[EMAIL PROTECTED]> Date: Tuesday, July 10, 2007 2:38 pm Subject: [fpc-devel] win32 debugging broken in fixes_2_2? > Hi, > Every program compiled with fixes_2_2 rev. 8006 crashes > in gdb: > " > GNU gdb 6.6 > Copyright (C) 2006 Free Software Fo

Re: [fpc-devel] Comparison FPC 2.2 - Delphi 7

2007-07-06 Thread vsnijders
If you trust Lazarus to make the right decision when determining if something is changed, then go to Project -> Project Options -> Miscellaneous and uncheck "Always build (even if nothing changed)". Vincent Michael Schnell wrote: Does Delphi really rebuild all units, then ? No, it do

Re: [fpc-devel] using gorc on win64 as resource compiler

2007-07-02 Thread vsnijders
- Original Message - From: Yury Sidorov <[EMAIL PROTECTED]> Date: Monday, July 2, 2007 1:00 pm Subject: Re: [fpc-devel] using gorc on win64 as resource compiler > From: <[EMAIL PROTECTED]> > > Hi, > > > > Thanks for fixing the coff loading on win64. > > > > Attached patch enables the use

[fpc-devel] using gorc on win64 as resource compiler

2007-07-02 Thread vsnijders
Hi, Thanks for fixing the coff loading on win64. Attached patch enables the use of gorc on win64 in the compiler: adding {$R lazarus.rc} includes this resource into the Lazarus executable, giving it a main icon and a XP look. Vincent Index: systems.pas =

[fpc-devel] linking resources on win64

2007-06-29 Thread vsnijders
Hi, I am experimenting with the gorc resource compile, which suposedly can create coff object files for win64 from .rc files. See http://www.jorgon.freeserve.co.uk/Resource.htm#int fifth paragraph. I created lazarus.obj with the following command line: C:\lazarus\source\lazarus\ide>c:\lazarus\d

Re: [fpc-devel] Can somebody repair the daily snaphot please?

2007-05-24 Thread vsnijders
- Original Message - From: [EMAIL PROTECTED] Date: Wednesday, May 23, 2007 8:46 pm Subject: [fpc-devel] Can somebody repair the daily snaphot please? > Can somebody repair the daily lazarus snaphot please? > If you are talking about the win32 snapshots, that you have bad luck unless you

Re: [fpc-devel] FPCUnit as a separate project from FPC?

2007-05-22 Thread vsnijders
- Original Message - From: Joost van der Sluis <[EMAIL PROTECTED]> Date: Tuesday, May 22, 2007 12:55 pm Subject: Re: [fpc-devel] FPCUnit as a separate project from FPC? > On Tue, 2007-05-22 at 12:29 +0200, Graeme Geldenhuys wrote: > > Darius Blaszijk, Vincent Snijders and myself had a di

[fpc-devel] Growing a memory stream

2006-12-12 Thread vsnijders
Attached patch grows a memory stream by at least a quarter of its original capacity. Vincent Index: streams.inc === --- streams.inc (revision 5577) +++ streams.inc (working copy) @@ -535,11 +535,17 @@ function TMemoryStream.Realloc(

[fpc-devel] Streaming readonly properties

2006-12-12 Thread vsnijders
As said in an earlier mail I have problems streaming the property EditLabel: TBoundLabel read FEditLabel; of a TLabeledEdit with fpc 2.1.1. Some discussion on #fpc led to the conclusion that streaming a readonly persistant should be allowed, because you write to the properties of the readonly p