Selaa lähdekoodia

* Remove double definition of O_LARGEFILE for powerpc-linux and give it
the correct value: $10000

git-svn-id: trunk@8123 -

daniel 18 vuotta sitten
vanhempi
commit
74ad03e264
1 muutettua tiedostoa jossa 4 lisäystä ja 4 poistoa
  1. 4 4
      rtl/linux/ostypes.inc

+ 4 - 4
rtl/linux/ostypes.inc

@@ -213,14 +213,14 @@ CONST
 {$if defined(cpusparc) or defined(cpusparc64)}
     O_LARGEFILE =   $40000;
 {$endif}
-{$if defined(cpui386) or defined(cpux86_64) or defined(cpupowerpc) or defined(cpuia64)}
+{$if defined(cpupowerpc)}
+    O_LARGEFILE =   $10000;
+{$endif}
+{$if defined(cpui386) or defined(cpux86_64) or defined(cpuia64)}
     O_LARGEFILE =    $8000;
 {$endif}
 {$if defined(cpumips)}
     O_LARGEFILE =    $2000;
-{$endif}
-{$if defined(cpupowerpc)}
-    O_LARGEFILE =    $2000;
 {$endif}
     { mode_t possible values                                 }
     S_IRUSR =  %0100000000;     { Read permission for owner   }