Re: [fpc-pascal]Linux - Graph unit?

2004-06-02 Thread Olaf Leidinger
Hello! > The following happened while compiling the maze example application. > Do I need to compile this from a graphical terminal? I was using SSH. This is no problem at all. But you must run it on a local machine in a terminal (not from X) > Or am I missing something? Yes, you need libsvg

Re: [fpc-pascal]uclibc in freepascal

2004-01-19 Thread Olaf Leidinger
Thank's a lot, Marco and Sebastian! I'll have a try! Ciao, Olaf ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal]uclibc in freepascal

2004-01-19 Thread Olaf Leidinger
.fli4l.de ) and it uses uclibc as standart libc. Thank's a lot, Olaf Leidinger ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal]uclibc in freepascal

2004-01-19 Thread Olaf Leidinger
Hello! Is it possible to use another libc in my pascal programs? When using i386-linux-uclibc-ld (by editing ppas.sh) I get a linking error. /usr/lib/fpc/1.9.2/units/linux/rtl/cprt21.o(.text+0x38): In function `_start': : undefined reference to `__libc_start_main' Ciao, Olaf __

Re: [fpc-pascal]GTK: multiline label

2003-10-09 Thread Olaf Leidinger
Hello! > How ist possible to make initialize in fpc a multiline label. Something like > > Lbl := gtk_label_new('Line1 \n Line2'); I did't test it, but something like this should work: Lbl := gtk_label_new('Line1 ' + #10 + ' Line2'); Ciao, Olaf __

Re: [fpc-pascal]Read from command line

2003-09-07 Thread Olaf Leidinger
Hi again! Sorry, it has to be: for i := 0 to argc-1 do argc is the number of arguments, argv is a string-vector. I think it is an array of c-strings, isn't it? Ciao, Olaf ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.or

Re: [fpc-pascal]Read from command line

2003-09-07 Thread Olaf Leidinger
Hi Paul! > How do you do that in FPC in Linux? > You can use something like this: program argtest; var i: integer; begin for i := 0 to argc do begin writeln (argv[i]); end; end. Ciao, Olaf ___ fpc-pascal maillist - [EMAIL

Re: [fpc-pascal]Question about fp

2003-02-25 Thread Olaf Leidinger
Am Die, 2003-02-25 um 15.59 schrieb James Mills: > On Tue, Feb 25, 2003 at 04:11:25PM +0200, Brent Cox wrote: > > I don't know is this is the correct place to ask, if not please direct me to the > > right place. > > > > I am running the fp editor on mandrake 9.0. All my borders are not the normal

Re: [fpc-pascal]use of c++ libraries

2003-02-19 Thread Olaf Leidinger
> > Hello everybody! > > > > Let's say I've written a nice library in c++ and I'd like to use it in > > Free Pascal. The list archive sais that linking c++ libs (e.g. from gnu > > c++) isn't possible, yet - and using dynamic c++ libs isn't possible > > either. > > This is correct. It isn't support

[fpc-pascal]use of c++ libraries

2003-02-19 Thread Olaf Leidinger
Does the cvs version have this feature (if yes when will be the release of a stable version )? Or are there any alternatives (instead of re-implenting this lib in pascal)? So far... Ciao, Olaf Leidinger ___ fpc-pascal maillist