Re: [fpc-devel] linux -> select() from linux.ppc

2005-05-26 Thread Michael Preslar
Michael Van Canneyt wrote: Is select() no longer supported in the 2.0 branch? It is. The linux unit was replaced by the BaseUnix and Unix units, which are more cross-platform (work on all Unixes). To mark the difference, the prefix fp was prepended to all calls. So you should use fpSelect().

Re: [fpc-devel] linux -> select() from linux.ppc

2005-05-26 Thread Marco van de Voort
[ Charset ISO-8859-1 unsupported, converting... ] > Using the 2.0 compiler binaries from the website.. > > Free Pascal Compiler version 2.0.0 [2005/05/15] for i386 > > > Code that compiled fine with 1.9.6 won't compile any longer. In > specific, the select() routine is gone from the linux unit.

Re: [fpc-devel] linux -> select() from linux.ppc

2005-05-26 Thread Vinzent Hoefler
On Thursday 26 May 2005 15:04, Michael Preslar wrote: > Is select() no longer supported in the 2.0 branch? Try "fpselect" in "baseunix". Vinzent. ___ fpc-devel maillist - fpc-devel@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/

Re: [fpc-devel] linux -> select() from linux.ppc

2005-05-26 Thread Michael Van Canneyt
On Thu, 26 May 2005, Michael Preslar wrote: Using the 2.0 compiler binaries from the website.. Free Pascal Compiler version 2.0.0 [2005/05/15] for i386 Code that compiled fine with 1.9.6 won't compile any longer. In specific, the select() routine is gone from the linux unit. I see that it

[fpc-devel] linux -> select() from linux.ppc

2005-05-26 Thread Michael Preslar
Using the 2.0 compiler binaries from the website.. Free Pascal Compiler version 2.0.0 [2005/05/15] for i386 Code that compiled fine with 1.9.6 won't compile any longer. In specific, the select() routine is gone from the linux unit. I see that it still remains in the "oldlinux" unit. Is sele