Re: [fpc-devel] http..www.stack.nl..~marcov..buildfaq.pdf

2008-09-30 Thread Marco van de Voort
In our previous episode, Mehmet Erol Sanliturk said: is seen here in Windows XP Adobe Reader 8.0 Version 8.0.0 with a very low contrast with letter color ( black ) and background color ( white ) . It's optimized for printing, not viewing. And I do work typically on a 1600x1200

[fpc-devel] [PATCH] unix/serial.pp mods for darwin

2008-09-30 Thread Brad Campbell
These additions/changes make serial.pp work for me on MacOS X 10.4 and 10.5, both PPC and Intel. Comments? Regards, Brad -- Dolphins are so intelligent that within a few weeks they can train Americans to stand at the edge of the pool and throw them fish. Index: rtl/unix/serial.pp

Re: [fpc-devel] [PATCH] unix/serial.pp mods for darwin

2008-09-30 Thread Jonas Maebe
On 30 Sep 2008, at 17:06, Brad Campbell wrote: These additions/changes make serial.pp work for me on MacOS X 10.4 and 10.5, both PPC and Intel. Comments? Do you also know why these changes are necessary? Adding special cases from a particular platform without any comments (other than it

[fpc-devel] Makefile deletion script

2008-09-30 Thread Terry Kemp
Hi Because I cross-compile svn for arm a lot I end up with Makefiles with revision numbers and littered with Mine through them from fpcmake -r -Tall etc. It takes time to manually delete each offending one and restore from svn so I have a script (attached) I have made it so that you can pass

Re: [fpc-devel] Makefile deletion script

2008-09-30 Thread Jonas Maebe
On 30 Sep 2008, at 22:49, Terry Kemp wrote: Because I cross-compile svn for arm a lot I end up with Makefiles with revision numbers and littered with Mine through them from fpcmake -r -Tall etc. It takes time to manually delete each offending one and restore from svn so I have a script

Re: [fpc-devel] Makefile deletion script

2008-09-30 Thread Terry Kemp
On Tue, 2008-09-30 at 22:54 +0200, Jonas Maebe wrote: You can use svn revert -R . to restore all files in the current directory and below to their checked out svn version (without having to delete them first). This even does not require network access. Jonas Thats cool. Do you know

Re: [fpc-devel] Lazarus Apache module crashes during concurrent requests

2008-09-30 Thread ABorka
OK, after 4 days of pulling my (remaining) hair out I was able to compile a basic C apache module on Ubuntu 8.04 (apache 2.2.8). It seems both fpc/lazarus (not working apache module) and the C compiled (working apache module) one shows sizeof(request_rec) = 412 sizeof(module_struct) = 56

Re: [fpc-devel] Lazarus Apache module crashes during concurrent requests

2008-09-30 Thread ABorka
Nevermind, on Ubuntu the request_rec is only 384 bytes for FPC instead of 412. But that still does not explain why the handler function is not even getting called by apache. ABorka wrote: OK, after 4 days of pulling my (remaining) hair out I was able to compile a basic C apache module on