This is the mail archive of the guile@cygnus.com mailing list for the guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: installing g-wrap 0.3


Clifford's patch, along with a small modification to g-wrap-guile which
checks for .guile before trying to load it are now in the distribution
(G-Wrap 0.3.2).
e.g.
- (load (string-append (getenv "HOME") "/.guile"))
+ (let ((dot-guile-file (string-append (getenv "HOME") "/.guile")))
+   (if (file-exists? dot-guile-file)
+       (load dot-guile-file)))

As for the problem of the undefined function, I suspect it is caused
by the fact that g-wrap now works as a Guile module, and that either
the installation failed (possibly due to the fact that the Makefile
previously assumed that the g-wrap subdirectory in the installation
location existed), or that Guile wasn't looking for modules in the
same place G-Wrap was installed.

 -Chris