jicman
Joined: 22 Dec 2004 Posts: 298 Location: Rochester, NY
|
Posted: Mon Jan 04, 2010 10:59 pm Post subject: module Conduit cannot read file 'tango\io\Conduit.d' ERROR |
|
|
Greetings.
I am going to try to start using FastCGI4D for a project and I am willing to debug it, but I am finding myself in trouble. I am trying compile the SimpleLoop.d example that comes with the zip file. I have installed tango and I was able to build this tango sample program
Code: | import tango.io.Stdout;
void main()
{
Stdout("Don't Worry, Be Happy!").newline;
} |
and I was able to run it, so I know Tango is installed correctly. When I try to compile the SimpleLoop.d program, I get these errors:
Quote: | 23:55:46.92>build -I..;G:\D\dmd\import SimpleLoop.d
warning - io.Buffer functionality has been split into io.stream.Buffered and io.device.Array - use the former for discrete streams, and the latter for combined I/O
G:\source\d\fcgi\Conduit.d(113): Error: identifier 'Handle' is not defined
G:\source\d\fcgi\Conduit.d(113): Error: Handle is used as a type
G:\source\d\fcgi\InternalConduit.d(67): Error: identifier 'Handle' is not defined
G:\source\d\fcgi\InternalConduit.d(67): Error: Handle is used as a type
|
Any help would be greatly appreciated.
thanks,
jose |
|