On Mon, 2012-03-12 at 14:05 -0600, Matt Gushee wrote:
> [...]
> > $ csi
> > [...]
> > csi> (use iup)
> > [...]
> > csi> (use iup-web)
> > ; loading /usr/lib/chicken/6/iup-web.import.scm ...
> > [...]

Hello,

you are using the egg incorrectly. The iup library contains all the
iup-related modules including iup-web. After you have run a
(require-library iup), which you did implicitly by running (use iup),
you only have to (import iup-web) to get access to the iup-web
functionality, if it is compiled in. The output of csi shows that this
import works since iup-web.import.scm is loaded successfully. But the
(require-library iup-web) that you are implicitly running fails because
no such library exists.

Ciao,
Thomas


-- 
When C++ is your hammer, every problem looks like your thumb.


_______________________________________________
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users

Reply via email to