[fpc-pascal] How to remove verbose compiler output

2014-04-04 Thread Graeme Geldenhuys
Hi, I'm trying to reduce the compiler output for cron jobs. I have tried to specify -v0 or even -v- -v0 but still the compiler outputs loads of 'Hint' and 'Warning' message about unused parameters, unused units, deprecated methods etc. I made sure no -v is specified in my ~.fpc.cfg as well,

Re: [fpc-pascal] How to remove verbose compiler output

2014-04-04 Thread Henry Vermaak
On Fri, Apr 04, 2014 at 04:03:10AM +0100, Graeme Geldenhuys wrote: Hi, I'm trying to reduce the compiler output for cron jobs. I have tried to specify -v0 or even -v- -v0 but still the compiler outputs loads of 'Hint' and 'Warning' message about unused parameters, unused units,

Re: [fpc-pascal] How to remove verbose compiler output

2014-04-04 Thread Tomas Hajny
On Fri, April 4, 2014 05:03, Graeme Geldenhuys wrote: Hi, I'm trying to reduce the compiler output for cron jobs. I have tried to specify -v0 or even -v- -v0 but still the compiler outputs loads of 'Hint' and 'Warning' message about unused parameters, unused units, deprecated methods

[fpc-pascal] DBus in GUI application

2014-04-04 Thread Krzysztof
Hi, DBus documentation give me a headache. Does anyone know solution how to implement DBus in GUI main loop (for signals listening)? I have tried with threads but have two problems: 1. Not all signals are catched (randomly) 2. Deadlock when main thread trying to use dbus methods Regards