ste3e
Joined: 08 Apr 2012 Posts: 17 Location: New Zealand
|
Posted: Thu May 23, 2013 8:16 pm Post subject: Error in gtkD.d |
|
|
When building the latest gtkD.lib with both build and rdmd I was getting errors as dmd was trying to load gtkglc\gl\d.d. The issue seems to be with lines 826/827 of gtkD.d which are presently:
private import gtkglc.gl.d;
private import gtkglc.glu.d;
After changing these to:
private import gtkglc.gl;
private import gtkglc.glu;
gtkD.lib compiled error free. |
|