Follow-up Comment #8, task #8520 (project administration): > Could you try with DMD (it is not Free Software
No, sorry. I thought it was an issue with my installation, since tango expects to install libgphobos where GDC is installed (I used the `gdc' package on a Debian system, which is installed in /usr). I removed the package and installed gdc (as described at <http://www.dsource.org/projects/tango/wiki/GdcInstallation>) and the other dependencies with the same prefix. The error is the same as in comment #4. I know absolutely nothing about D, but this change: --- app/Application.d.orig 2008-09-03 17:42:14.000000000 +0300 +++ app/Application.d 2008-09-03 17:42:30.000000000 +0300 @@ -145,7 +145,7 @@ stopButton.setSensitive(true); runButton.setSensitive(false); - GC.disable(); + std.gc.disable(); timer.start(); while (stop == false) { layout.run(); @@ -159,7 +159,7 @@ } } time = timer.stop(); - GC.enable(); + std.gc.enable(); canvas.queueDraw(); while(Main.eventsPending()) Main.iterationDo(false); makes the first error disappear. Perhaps it's not correct at all. (Using `tango.core.Memory.GC.enable' doesn't help.) _______________________________________________________ Reply to this item at: <http://savannah.gnu.org/task/?8520> _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/
