[fpc-pascal] searching for free asymmetrical crypto source

2005-03-03 Thread Marc Santhoff
Hi, does anyone know where I can find a free (in sense of linkable, no (L)GPL but BSD or Mozilla-style licence) source for a strong asymmetrical crypto algorithm? Any library I found until now is LGPLed and can therefor not be linked statically, if I understand it correctly. RSA or El Gamal woul

Re: [fpc-pascal] Re: undefining multiple defines

2005-03-03 Thread Marc Santhoff
Am Do, den 03.03.2005 schrieb Jeff Pohlmeyer um 10:45: > > unit b; > > ... > > {$undef M1-M15} > > {$define M2} > > ... > > end. > > > Can't you just put all your $undef's in a *.inc file, > and then $include it anywhere you need to undef all? > > unit b; > ... > {$include undefs.inc} > {$define

Re: [fpc-pascal] undefining multiple defines

2005-03-03 Thread Marc Santhoff
Am Do, den 03.03.2005 schrieb Marco van de Voort um 08:32: > > unit b; > > ... > > {$undef M1-M15} > > Such constructs won't work, for the same reason that variablenames with > numbers in it can't be used as such. > > For the compiler it is an alphanumerical identifier, and the number(s) have > n

[fpc-pascal] Embedded Pascal

2005-03-03 Thread Carsten Bager
Hi I am trying to write some embedded code for an ARM7. (I am able to compile code to an ARM9 with Linux on it) I therefore need the ppcrossarm to produce absolute code. Version 1.9.4 had a fakertl in the source rtl, but in version 1.9.9 there is no files in it. Can I use the files from version

[fpc-pascal] Re: undefining multiple defines

2005-03-03 Thread Jeff Pohlmeyer
> unit b; > ... > {$undef M1-M15} > {$define M2} > ... > end. Can't you just put all your $undef's in a *.inc file, and then $include it anywhere you need to undef all? unit b; ... {$include undefs.inc} {$define M2} ... end. -- _

Re: [fpc-pascal] undefining multiple defines

2005-03-03 Thread Nico Aragón
El Jueves, 3 de Marzo de 2005 01:56, Marc Santhoff escribió: > this is used to include some dependant functions from only one central > include file holding all possible versions. And it has to work from the > command line or makefile. Then you can write a program (invoked from the command line or

Re: [fpc-pascal] Absolute

2005-03-03 Thread Florian Klaempfl
Carsten Bager wrote: Hi I have a problem with the following when I try to compile it with the ppcrossarm compiler. This error dos not show when I am doing a normal compile. I have tried with version 1.9.4 and 1.9.9 Carsten -- Program bb; var test:integer absolute 0030; Begin End.

[fpc-pascal] Absolute

2005-03-03 Thread Carsten Bager
Hi I have a problem with the following when I try to compile it with the ppcrossarm compiler. This error dos not show when I am doing a normal compile. I have tried with version 1.9.4 and 1.9.9 Carsten -- Program bb; var   test:integer absolute 0030; Begin End.