Re: [fpc-pascal] x86_64-win64

2006-04-23 Thread Peter Vreman
> To declare conditional defines like this easily: > > {$ifdef cpu64} > TMyInteger = Int64; > {$else} > TMyInteger = LongInt; > {$endif} You can better use the special type for it directly instead of adding $ifdef's TMyInteger = PtrInt; TMyWord = PtrUInt; ___

Re: [fpc-pascal] google summer of code?

2006-04-23 Thread Felipe Monteiro de Carvalho
Hello, I think it is of decisive importance that we participate on Summer of Code. I suggest that you add parts needed for 2.2 to it. A new feature I propose is to add as a project on summer of code to create a port to PalmOS. On 4/19/06, Kornel Kisielewicz <[EMAIL PROTECTED]> wrote: > BTW, are

Re: [fpc-pascal] fpc + linux, problem with VarArrayCreate, variant

2006-04-23 Thread Flávio Etrusco
You can simplify the use-case a lot: simply trying to assign any value to a Variant after it's been assigned an array throws an exception. It seems one is not allowed to reassign a Variant which was already initialized to a VarArray - which IMHO is a good thing ;-) Variable reuse should have a capi

Re: [fpc-pascal] FPC on NetBSD (i386)

2006-04-23 Thread Jonas Maebe
On 19 Apr 2006, at 21:25, Adrian Maier wrote: Ok. I'll try to get 2.0.0 working, but i'll certainly need some guidance at the beginning. Of course. I downloaded the release_2_0_0 from svn , and i am now trying to compile rtl using the fpc 1.0.10 . 1. cd rtl/netbsd 2. gmake [...] /usr/l

Re: [fpc-pascal] FPC on NetBSD (i386)

2006-04-23 Thread Jonas Maebe
On 22 Apr 2006, at 21:23, Adrian Maier wrote: So normally it should try to compile sysbsd.pp and not system.pp (rtl/bsd/sysbsd.pp simply includes the contents of rtl/bsd/ system.pp, but a unit file called "system.pp" cannot have the unit name "sysbsd"). Is your /usr/local/bin/ppc386 a version 1

Re: [fpc-pascal] FPC on NetBSD (i386)

2006-04-23 Thread Adrian Maier
On 4/22/06, Jonas Maebe <[EMAIL PROTECTED]> wrote: > Since lists.freepascal.org is down currently... > > Begin forwarded message: > > > From: Jonas Maebe <[EMAIL PROTECTED]> > > So normally it should try to compile sysbsd.pp and not system.pp > > (rtl/bsd/sysbsd.pp simply includes the contents of

[fpc-pascal] eof strangeness

2006-04-23 Thread John Coppens
Hi all. While modifying some older programs, I found a strange effect with eof (input). When calling eof(input), the program needs an key to continue. The definition of eof (according to the FPC docs) is that it immediately returns... which is what I need. Can anyone suggest a solution for this

Re: [fpc-pascal] another fpc RAD: MSEide

2006-04-23 Thread Martin Schreiber
On Wednesday 19 April 2006 11.55, Jonas Maebe wrote: > I've now merged the fix for the property loading crash from 2.1.1 to > 2.0.3. I didn't do it before because I wasn't sure at first whether > it wouldn't have any bad side-effects, and later forgot to merge it. > Thanks. The next problem (fixes_

[fpc-pascal] eof strangeness

2006-04-23 Thread John Coppens
Hi all. While modifying some older programs, I found a strange effect with eof (input). When calling eof(input), the program needs an key to continue. I just downloaded 2.0.2, with the same result. The definition of eof (according to the FPC docs) is that it immediately returns... which is what

[fpc-pascal] test - please ignore

2006-04-23 Thread Adrian Maier
test ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] google summer of code?

2006-04-23 Thread Graeme Geldenhuys
I suggest full Visual Form Inheritance in the Form Designer of Lazarus. This is a big stumbling block for using FPC and Lazarus for commercial applications. Regards, - Graeme - On 21/04/06, Felipe Monteiro de Carvalho <[EMAIL PROTECTED]> wrote: > Hello, > > I think it is of decisive importan

Re: [fpc-pascal] google summer of code?

2006-04-23 Thread Krishna
Hi list, How good is the unicode support? I would like to work on it. Cheers, Krishna -- You think you know when you learn, are more sure when you can write, even more when you can teach, but certain when you can program - Alan Perlis ___ fpc-pascal ma

[fpc-pascal] Porting jcl to fpc on linux : Status and some questions

2006-04-23 Thread Michael Ring
I've started porting, so far I have ported about 50% of jcl. Right now I am stuck with a few questions: fpc 2.1.1 does have better support for WideStrings. Any idea when a stable version will be released, because no code needs to be implemented for JclWideStrings to work (Next 6 Month, This Ye

Re: [fpc-pascal] Porting jcl to fpc on linux : Status and some questions

2006-04-23 Thread Marco van de Voort
> Now for something I really do not understand, but perhaps I am still too > inexperienced with fpc to find out what is going wrong here: > > pthread.inc: > Function InitializeCriticalSection(var lpCriticalSection: > TRTLCriticalSection): Integer; > > JclSysUtils.pas: > ... > FCriticalSection:

Re: [fpc-pascal] FPC on NetBSD (i386)

2006-04-23 Thread Adrian Maier
p... /usr/pkg/bin/zip == Object info == Target Loaders Target Units.. Target Implicit Units. Target Programs... Target Dirs... netbsd Target Examples... Target ExampleDirs Clean Units. Clean Files. Install Units... Install Files...

Re: [fpc-pascal] google summer of code?

2006-04-23 Thread Florian Klaempfl
Krishna wrote: We'll write an email to apply as mentoring organization tomorrow or the day after. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] [OT] CTags Tool for Object Pascal Language

2006-04-23 Thread johanns
The Exuberant CTags program supports over 30 programming languages including Standard Pascal. For C and C++ it does a fantastic job of indexing all routines and variables even when embedded in complex and unusual expressions. The support for Pascal, on the other hand, is limited to indexing funct