* Remove double definition of O_LARGEFILE for powerpc-linux and give it

the correct value: $10000

git-svn-id: trunk@8123 -
This commit is contained in:
daniel 2007-07-22 07:47:34 +00:00
parent 4b9669a081
commit 74ad03e264

View File

@ -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 }