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

Changeset 3789

Show
Ignore:
Timestamp:
07/22/08 18:55:45 (5 months ago)
Author:
larsivi
Message:

More 0.99.7 merges

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/next/0.99.7/dsss.conf

    r3779 r3789  
    3838exclude += tango/sys/win32/Process.di 
    3939exclude += tango/sys/win32/Macros.di 
     40version(!Windows) { 
     41    exclude += tango/sys/win32/CodePage.d 
     42} 
    4043 
    4144version (linux) { 
  • branches/next/0.99.7/tango/io/FileSystem.d

    r3635 r3789  
    170170                                   { 
    171171                                   dir[len-1] = '/';                                    
    172                                    path = dir
     172                                   path = standard (dir)
    173173                                   } 
    174174                                else 
  • branches/next/0.99.7/tango/sys/Environment.d

    r3547 r3789  
    1515private import  tango.sys.Common; 
    1616 
    17 private import  tango.io.FilePath, 
     17private import  tango.io.Path, 
     18                tango.io.FilePath, 
    1819                tango.io.FileSystem; 
    1920 
     
    9192                             return bin; 
    9293 
    93                 // rifle through the path 
    94                 foreach (pe; Text.patterns (get("PATH"), FileConst.SystemPathString)) 
     94                // rifle through the path (after converting to standard format) 
     95                foreach (pe; Text.patterns (standard(get("PATH")), FileConst.SystemPathString)) 
    9596                         if (bin.path(pe).exists) 
    9697                             version (Windows)