[fpc-pascal] Parsing commandline parameters with wildcards on Linux

2011-04-09 Thread Bart
Hi all, I ran into a problem with resolving commandline parameters, due to wildcard expansion by bash. Consider the following code: for i := 1 to paramcount do writeln(i,': ',paramstr(i)); My program expects input from the commandline in the form scopy source dest when you now specify wildc

Re: [fpc-pascal] Problems with GetMem

2011-04-09 Thread Jonas Maebe
On 10 Apr 2011, at 00:20, wrote: > I get strange errors when using GetMem. In my > app I keep on allocating and freeing memory in a variable. At a certain > moment I do keep getting a SIGSEGV on the GetMem call when trying to > allocate exactly 128bytes. However allocating other sizes seems to

[fpc-pascal] Problems with GetMem

2011-04-09 Thread dhkblaszyk
ZeelandNet Webmail I get strange errors when using GetMem. In my app I keep on allocating and freeing memory in a variable. At a certain moment I do keep getting a SIGSEGV on the GetMem call when trying to allocate exactly 128bytes. However allocating other sizes seems to work just fine. Is

Re: [fpc-pascal] Problems with an FPC server

2011-04-09 Thread ik
I had also problem connecting to the svn: svn: OPTIONS of 'http://svn.freepascal.org/svn/fpc/trunk': Could not resolve hostname `svn.freepascal.org': Host not found (http://svn.freepascal.org) It happened only for 30 minutes or so ... Ido LINESIP - Opening the source for communication http://www

[fpc-pascal] Problems with an FPC server

2011-04-09 Thread Jonas Maebe
Hi, The server hosting the FPC mailing lists, ftp site, wiki and community site has crashed badly yesterday. Almost everything has been restored from backup in the mean time, but some things (mailing list subscriptions/posts, wiki edits, ...) from 7 or 8 April may have been lost. The main websi

Re: [fpc-pascal] Inherit interface from 2 interfaces

2011-04-09 Thread Flávio Etrusco
On Fri, Apr 8, 2011 at 6:16 AM, wrote: > > > On Fri, 8 Apr 2011, Zaher Dirkey wrote: > >> 2011/4/7 Flávio Etrusco >> >>> On Wed, Apr 6, 2011 at 1:37 PM, Zaher Dirkey wrote: Can i do that? type  IIntf3 = interface(IIntf11, IIntf2)  end; Thanks in adva