[fpc-devel] FPCMacOSAll

Jonas Maebe jonas.maebe at elis.ugent.be
Sat May 31 17:03:59 CEST 2008


Hello,

The FPCMacOSAll unit has been renamed to MacOSAll (both for 2.3.1 and  
2.2.1). The reason is that the same has been done in the Common Pascal  
Interfaces repository from which we import it. And the reason it has  
been done there, is that these Common Pascal Interfaces can be used  
with FPC, GPC and Metrowerks Pascal, and it doesn't make sense to  
force people to add ifdefs to their source for a unit which is  
virtually identical for all three compilers.

If you require compatibility with previously released FPC versions,  
you can use the following:

uses
{$if defined(VER2_2_0) or defined(VER2_0_4)}
  FPCMacOSAll
{$else}
  MacOSAll
{$endif}
  ;


Jonas



More information about the fpc-devel mailing list