I can't get the Piepkorn GOLD Engine (released on 2007) to work on my box (DMD 1.056/Tango 0.99.9/Windows 7).
It imports the module tango.io.MemoryConduit which is no more present in the Tango version I use.
Excerpt:
import
tango.io.Conduit,
tango.io.MemoryConduit;
// ...
this(Conduit c) {
auto mem = new MemoryConduit;
mem.Copy(c);
I suppose that tango.io.Conduit was replaced by tango.io.device.Conduit.
My Question:
What module should I import in place of tango.io.MemoryConduit and consequently what construct should I use instead of auto mem = new MemoryConduit ?