[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [Gcl-devel] RE: [Axiom-developer] building Axiom with GCL Version_2_
From: |
Bill Page |
Subject: |
RE: [Gcl-devel] RE: [Axiom-developer] building Axiom with GCL Version_2_6_7pre fails |
Date: |
Sun, 29 May 2005 21:35:39 -0400 |
Mike,
On May 29, 2005 9:20 PM you wrote:
> ...
>The fix then is as follows:
>
> diff -rN old-axiom--windows--1/src/interp/daase.lisp.pamphlet
new-axiom--windows
> --1/src/interp/daase.lisp.pamphlet
> 843c843
> < (setq thisdir (namestring (probe-file ".")))
> ---
> > (setq thisdir (namestring (truename ".")))
> 1109c1109
> < (list (list '|dir| (namestring (probe-file "./")) ))
> ---
> > (list (list '|dir| (namestring (truename "./")) ))
I think that there is one more place in daase.lisp.pamphlet
near you last patch where probe-file should be changed to
truename:
(dolist (dir dirlist)
(localdatabase nil
(list (list '|dir|
(namestring (probe-file
(format nil "./~a"
dir)))))
'make-database))
---------
Right?
With these three changes, my version of Axiom for Windows
builds with gcl Version_2_6_7pre.
Great!
Regards,
Bill Page.