Getting Piepkorn GOLD Engine to work with Tango 0.99.9

78 views Asked by At

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 ?

1

There are 1 answers

2
Raxillan On

I found another engine, which is looks like actively developed - http://www.semitwist.com/goldie/ But it requires D2. Believe to this - http://forum.dlang.org/post/[email protected] - using D1 now is not a good idea. Hope this helps.