Hello glasgow-haskell-users, First, it would be good to have examples somewhere around ObjectIO main page. I've figured out how to download source code for examples only after third or fourth try. I know, that the question about examples and source code should be directed to the author, but it seem to be unreachable from behind our firewall for some unknown reason. Also, package.conf says: ------------------ {name = "objectio", import_dirs = ["$libdir/imports/ObjectIO"], ------------------ but directory $libdir/imports/ObjectIO contains no ObjectIO.hi file! It contains, however, Graphics/UI and only there floats ObjectIO.hi. So the only example I've downloaded fails. Even "import ObjectIO.Graphics.UI.ObjectIO" instead "import ObjectIO" couldn't help. It seem... unfair to me. ;) -- Best regards, Serguey mailto:sz@uc.ru PS Also, I cannot access cvs from behind our firewall, and there is no source archive to build from. Otherwise I wouldn't write such a complaining letter.
Serguey Zefirov
Also, package.conf says: ------------------ {name = "objectio", import_dirs = ["$libdir/imports/ObjectIO"], ------------------ but directory $libdir/imports/ObjectIO contains no ObjectIO.hi file! It contains, however, Graphics/UI and only there floats ObjectIO.hi. So the only example I've downloaded fails.
Even "import ObjectIO.Graphics.UI.ObjectIO" instead "import ObjectIO" couldn't help.
The package.conf file is correct. If you use import Graphics.UI.ObjectIO the system will find the interface file correctly from the directory $libdir/import/ObjectIO. Perhaps it would be clearer if the base directory for the package were named $libdir/import/objectio, that the name of the directory should not be mentioned in your program's import declaration. Regards, Malcolm
participants (2)
-
Malcolm Wallace -
Serguey Zefirov