Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 3499

Show
Ignore:
Timestamp:
05/11/08 13:29:26 (2 months ago)
Author:
sean
Message:

Config change related to #656 Once the other commits are complete and everything tests out okay, the version statement will be changed to set the new default behavior on AMD64.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/stdc/posix/config.d

    r2809 r3499  
    1515version( linux ) 
    1616{ 
    17     const bool  __USE_FILE_OFFSET64 = false; 
     17  version( none /* X86_64 */ ) 
     18  { 
     19    const bool  __USE_LARGEFILE64   = true; 
     20  } 
     21  else 
     22  { 
    1823    const bool  __USE_LARGEFILE64   = false; 
     24  } 
     25    const bool  __USE_FILE_OFFSET64 = __USE_LARGEFILE64; 
    1926    const bool  __REDIRECT          = false; 
    2027}