Changeset 913
- Timestamp:
- 10/19/06 14:37:45 (2 years ago)
- Files:
-
- trunk/dsss.conf (modified) (2 diffs)
- trunk/lib/compiler/gdc/aApplyR.d (modified) (2 diffs)
- trunk/phobos/string.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/dsss.conf
r894 r913 37 37 38 38 [tango/sys] 39 version (linux) { 40 exclude = tango/sys/darwin/* tango/sys/windows/* 41 } else version (darwin) { 42 exclude = tango/sys/linux/* tango/sys/windows/* 43 } else version (Windows) { 44 exclude = tango/sys/linux/* tango/sys/darwin/* 39 version (!linux) { 40 exclude += tango/sys/linux/* 41 } 42 version (!darwin) { 43 exclude += tango/sys/darwin/* 44 } 45 version (!Windows) { 46 exclude += tango/sys/windows/* 45 47 } 46 48 … … 50 52 # Needs to be separated due to two Format.d's 51 53 54 [phobos] 55 # Target = D-tango-phobos or G-tango-phobos 56 version (DigitalMars) { 57 target = D-tango-phobos 58 } else version (GNU) { 59 target = G-tango-phobos 60 } 61 62 version (!Windows) { 63 exclude += phobos/windows/* 64 } 65 exclude += phobos/etc/gamma.d phobos/etc/c/zlib.d phobos/cover.d phobos/boxer.d 66 67 [phobos/c] 68 # Needs to be separated because of similarly named files 69 version (DigitalMars) { 70 target = D-tango-phobos-c 71 } else version (GNU) { 72 target = G-tango-phobos-c 73 } 74 75 version (!Windows) { 76 exclude += phobos/c/windows/* 77 } trunk/lib/compiler/gdc/aApplyR.d
r911 r913 72 72 } 73 73 74 /+ 74 75 unittest 75 76 { … … 948 949 assert(i == 5); 949 950 } 950 951 951 +/ 952 trunk/phobos/string.d
r779 r913 3402 3402 bool isNumeric(...) 3403 3403 { 3404 return isNumeric(_arguments, _argptr);3404 return isNumeric(_arguments, cast(va_list) _argptr); 3405 3405 } 3406 3406












