Re: [fpc-pascal] Migrate mantis bugtracker

2014-08-04 Thread Michael Van Canneyt
On Sun, 3 Aug 2014, silvioprog wrote: On Fri, Aug 1, 2014 at 4:43 AM, Michael Van Canneyt mich...@freepascal.org wrote: On Thu, 31 Jul 2014, Saunders, Rich wrote: On 2014-07-31 12:48, Michael Van Canneyt wrote: I created a FPC program to migrate a mantis bugtracker

Re: [fpc-pascal] Calling fpc libraries from other languages on freebsd/amd64 (bis)

2014-08-04 Thread fredvs
Aaaargh, difficult t find help here... In the original thread [fpc-devel] (hack) calling fpc libraries from other languages on freebsd/amd64 of Michal Wallace michal.wallace at gmail.com Michael Wallace said that he has find the solution := Anyway, the problem appears to be in this file:

[fpc-pascal] fpc Libraries do not work in freeBSD

2014-08-04 Thread fredvs
Hello. Fpc library compiled on freeBSD are unusable. Python, Java and even fpc applications can not use them... Look at that (works with Linux): = The fpc library := library test ; {$mode objfpc} procedure fpctest(); begin writeln('OK, it works...'); end; exports fpctest

[fpc-pascal] exitproc?

2014-08-04 Thread waldo kitty
back in the [g]?olden days of TP6, i used to be able to set an exitproc procedure that would be executed any time my program exited for any reason... something like exitproc := @myexitproc; is this still able to be done easily? does it work even if there's an untrapped exception? --