(Apology ahead of time if my question is bad etiquette...)
I've been tracking an issue for a while:
http://bugs.freepascal.org/view.php?id=8730
http://bugs.freepascal.org/view.php?id=9089
and am delighted to see it's been marked as fixed in 2.3.1.
I grabbed the fixes_2_2 branch in hopes the chang
thats what I thought.. until I grabbed the svn version of and started
reading the source.. most are still under MPL 1.1 only as far as I can
see. One notable exception is your JmSymbolics.pas. I looked through
the mailing list and it looked like they wanted to change the license
but I never saw i
Hi,
In unix/sysutils.pp on FPC for MacOSX you'll find FileOpen which only
supports flags for fmOpenRead, fmOpenWrite, and fmOpenReadWrite.
Function FileOpen (Const FileName : string; Mode : Integer) : Longint;
Var LinuxFlags : longint;
BEGIN
LinuxFlags:=0;
Case (Mode and 3) of
0 : LinuxFl