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

Changeset 1024

Show
Ignore:
Timestamp:
11/28/06 19:04:34 (2 years ago)
Author:
Gregor
Message:

dsss.conf: Should work better on non-GNU/Linux systems now.

tango/text/convert/Format.d: Now compiles on GDC.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/dsss.conf

    r995 r1024  
    11[tango/core] 
    22postinstall=install tango/core/Intrinsic.di $INCLUDE_PREFIX/tango/core ; \ 
    3     tango/core/Exception.di $INCLUDE_PREFIX/tango/core ; \ 
    4     tango/core/Thread.di $INCLUDE_PREFIX/tango/core ; \ 
    5     tango/core/Memory.di $INCLUDE_PREFIX/tango/core 
     3    install tango/core/Exception.di $INCLUDE_PREFIX/tango/core ; \ 
     4    install tango/core/Thread.di $INCLUDE_PREFIX/tango/core ; \ 
     5    install tango/core/Memory.di $INCLUDE_PREFIX/tango/core 
    66version (GNU) { 
    77    exclude = tango/core/Epoch.d 
     
    3434 
    3535[tango/stdc] 
     36# This fails obscurely 
    3637exclude = tango/stdc/tgmath.d 
    37  
    38 [tango/stdc/posix] 
    3938version (Posix) { 
     39    [tango/stdc/posix] 
    4040} else { 
    41     exclude =
     41    exclude += tango/stdc/posix/
    4242} 
    4343 
     
    6666 
    6767[phobos] 
     68exclude = phobos/file.d 
     69 
    6870# Target = D-tango-phobos or G-tango-phobos 
    6971version (DigitalMars) { 
     
    8991    exclude += phobos/c/windows/* 
    9092} 
     93version (!linux) { 
     94    exclude += phobos/c/linux/* 
     95} 
     96 
  • trunk/tango/text/convert/Format.d

    r999 r1024  
    233233        public final T[] sprint (T[] result, T[] formatStr, ...) 
    234234        { 
    235                 return sprint (result, formatStr, _arguments, _argptr); 
     235                return sprint (result, formatStr, _arguments, cast(void*) _argptr); 
    236236        } 
    237237