diff --git a/rtl/linux/baseunix.pp b/rtl/linux/baseunix.pp index 8af37f90e9..3e2a5ce785 100644 --- a/rtl/linux/baseunix.pp +++ b/rtl/linux/baseunix.pp @@ -30,7 +30,7 @@ Interface function fpgeterrno:longint; procedure fpseterrno(err:longint); -{$ifndef ver1_0} +{$ifdef HASGLOBALPROPERTY} property errno : cint read fpgeterrno write fpseterrno; {$endif} @@ -46,7 +46,10 @@ end. { $Log$ - Revision 1.4 2003-12-10 17:14:06 marco + Revision 1.5 2003-12-11 18:20:50 florian + * replaced VER1_0 by HASGLOBALPROPERTY + + Revision 1.4 2003/12/10 17:14:06 marco * property support under ifndef ver1_0 Revision 1.3 2003/12/10 17:08:28 marco diff --git a/rtl/unix/initc.pp b/rtl/unix/initc.pp index e48d410785..a94a5f8836 100644 --- a/rtl/unix/initc.pp +++ b/rtl/unix/initc.pp @@ -24,9 +24,9 @@ type libcint = longint; function fpgetCerrno:libcint; procedure fpsetCerrno(err:libcint); -{$ifndef ver1_0} +{$ifdef HASGLOBALPROPERTY} property cerrno:libcint read fpgetCerrno write fpsetcerrno; -{$endif} +{$endif HASGLOBALPROPERTY} implementation // hasn't been divided up in .inc's, because I first want to see hoe @@ -79,7 +79,10 @@ end; end. { $Log$ - Revision 1.7 2003-12-10 17:14:27 marco + Revision 1.8 2003-12-11 18:20:50 florian + * replaced VER1_0 by HASGLOBALPROPERTY + + Revision 1.7 2003/12/10 17:14:27 marco * property support under ifndef ver1_0 Revision 1.6 2003/12/10 17:06:19 marco