Changeset 3789
- Timestamp:
- 07/22/08 18:55:45 (5 months ago)
- Files:
-
- branches/next/0.99.7/dsss.conf (modified) (1 diff)
- branches/next/0.99.7/tango/io/FileSystem.d (modified) (1 diff)
- branches/next/0.99.7/tango/net/SocketPool.d (deleted)
- branches/next/0.99.7/tango/sys/Environment.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/next/0.99.7/dsss.conf
r3779 r3789 38 38 exclude += tango/sys/win32/Process.di 39 39 exclude += tango/sys/win32/Macros.di 40 version(!Windows) { 41 exclude += tango/sys/win32/CodePage.d 42 } 40 43 41 44 version (linux) { branches/next/0.99.7/tango/io/FileSystem.d
r3635 r3789 170 170 { 171 171 dir[len-1] = '/'; 172 path = dir;172 path = standard (dir); 173 173 } 174 174 else branches/next/0.99.7/tango/sys/Environment.d
r3547 r3789 15 15 private import tango.sys.Common; 16 16 17 private import tango.io.FilePath, 17 private import tango.io.Path, 18 tango.io.FilePath, 18 19 tango.io.FileSystem; 19 20 … … 91 92 return bin; 92 93 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)) 95 96 if (bin.path(pe).exists) 96 97 version (Windows)












