cmod-play 3 available
release notes: Practice riff for guile.git (for Guile 1.4.x), coming RSN... thi NEWS excerpt: - 3 | 2008-01-29 - tested with - GNU Libtool 1.5.24 - GNU Autoconf 2.61 - GNU Automake 1.9.6 - public repo: http://www.gnuvola.org/wip/cmod-play.git tarball in dir: http://www.gnuvola.org/software/cmod-play/
ice-9 and $GUILE_LOAD_PATH
New user, Fedora Core, Guile at /usr/share/guile/1.8/ Reading the manual http://www.gnu.org/software/guile/manual/guile.html The debug seems to require ice-9 (use-modules (ice-9 debugger breakpoints)) Adding that to .guile results in an error message not found. Seems it uses GUILE_LOAD_PATH To what should the env variable be set please? I tried export GUILE_LOAD_PATH=/usr/share/guile/1.8/ without success. Any suggestions/url's for reading please? regards -- Dave Pawson XSLT XSL-FO FAQ. http://www.dpawson.co.uk
Re: ice-9 and $GUILE_LOAD_PATH
Dave Pawson wrote: New user, Fedora Core, Guile at /usr/share/guile/1.8/ Reading the manual http://www.gnu.org/software/guile/manual/guile.html The debug seems to require ice-9 (use-modules (ice-9 debugger breakpoints)) Seemingly resolved? http://www.gnu.org/software/guile/manual/guile.html#Intro-to-Breakpoints The manual may be at fault. (use-modules (ice-9 debugger)) and (use-modules (ice-9 breakpoints)) seems to work. I.e. two items, not three. Still unsure if the envar is needed, and what it should be set to. regards -- Dave Pawson XSLT XSL-FO FAQ. http://www.dpawson.co.uk
Re: ice-9 and $GUILE_LOAD_PATH
> Dave Pawson wrote: > > New user, Fedora Core, > > Guile at /usr/share/guile/1.8/ > > Reading the manual > > http://www.gnu.org/software/guile/manual/guile.html > > > > The debug seems to require ice-9 > > (use-modules (ice-9 debugger breakpoints)) > > > Seemingly resolved? > http://www.gnu.org/software/guile/manual/guile.html#Intro-to-Breakpoints > The manual may be at fault. > > (use-modules (ice-9 debugger)) > and > (use-modules (ice-9 breakpoints)) > If I recall correctly, the breakpoint library was split off into a separate package. The manual is incorrect. This is a known bug, and should be fixed in the next release. The bug is documented here. http://lists.gnu.org/archive/html/bug-guile/2007-10/msg00037.html The separate package lives here, I think. https://gna.org/projects/guile-debugging Hope this helps, Mike Gran