Mark H Weaver writes:
> My response to Arun Isaac was rejected
> by his mail server:
[...]
> If someone could let him know about this issue, I would be grateful.
to...@tuxteam.de kindly forwarded my messages to Arun, so there's no
need for anyone else to do it now. Thanks, Tomas!
Mark
My response to Arun Isaac was rejected
by his mail server:
SMTP error from remote mail server after RCPT TO::
550 Sender Policy Framework (SPF) verification failed
I do not have DNS records supporting SPF for my domain netris.org, and
apparently his mail server is configured to reject all ma
Hi Arun,
Arun Isaac writes:
> Guile's auto compile fails to recompile when included source files
> change.
>
> For example, I have two source files -- foo.scm and bar.scm. foo.scm
> includes bar.scm using `include'. When I run foo.scm for the first time,
> it is auto compiled and run correctly.
Hi Jelle,
Jelle Licht writes:
> Loading the (git) module after a call to (activate-readline) from
> (ice-9 readline) stalls my repl, in most (9 out of 10) cases.
The (git) module is not part of core Guile, and is not maintained by the
Guile developers. Am I correct in guessing that it's part of
Hi Jeffrey,
Jeffrey Walton writes:
> I'm working on Solaris 11.3 with the 2.2.4 tarball. I'm trying to
> build and test Guile.
>
> Make is not completing the build step:
>
> solaris2:guile-2.2.4$ make V=1
> make all-recursive
> make[1]: Entering directory '/export/home/build/guile-2.2.4'
> Maki
Hi,
ouzb65ty writes:
> When I call (execlp "vim") or (execlp "nano") in Guile :
> Fatal error 11: Segmentation fault[1]31380 segmentation fault guile
> test.scm
When calling the 'exec*' procedures, in both Scheme and C, you should
pass at least two arguments. The first argument is the pr
Hi Göran,
Göran Weinholt writes:
> the call-with-input-file and call-with-output-file procedures in (rnrs
> io simple) should open textual ports. In Guile 2.2.4, they open binary
> ports:
>
> (define (call-with-input-file filename proc)
> (call-with-port (open-file-input-port filename) pro