"Julian Graham" wrote:
>> ERROR: In procedure macroexpand:
>> ERROR: source expression failed to match any pattern in (import (rnrs) (lib))
>>
>> is it actually possible to load libraries?
>
> Andreas Rottman just submitted a patch that (I think)
> resolves this issue [0].
Mh, applied it, now I get:
$ make gtest
GUILE_LOAD_PATH=. guile -l guile-config.scm --no-autocompile -s
./tests/test-makers.sps
ERROR: Unbound variable: define-module
where:
$ cat guile-config.scm
;;; guile-config.scm --
(set! %load-extensions '(".guile.sls" ".sls" ".scm" ""))
;;; end of file
and the incipit of the program is:
#!r6rs
(import (rnrs)
(rnrs eval)
(makers makers))
--
Marco Maggi