diff options
author | dos-reis <gdr@axiomatics.org> | 2010-02-08 16:52:36 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2010-02-08 16:52:36 +0000 |
commit | a8f18be0ebee997a122a1d9dc2515f9c43fa256c (patch) | |
tree | 17886c8381442f358f061dca42c191d5b54e5722 /src | |
parent | 3f8f61e055c818711c6a6136b89b6e9fedda8c3c (diff) | |
download | open-axiom-a8f18be0ebee997a122a1d9dc2515f9c43fa256c.tar.gz |
* lisp/core.lisp.in ("AxiomCore"): Use Clozure CL's package CCL.
Diffstat (limited to 'src')
-rw-r--r-- | src/ChangeLog | 4 | ||||
-rw-r--r-- | src/lisp/core.lisp.in | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 0c6ab682..9db22bc8 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2010-02-08 Gabriel Dos Reis <gdr@cs.tamu.edu> + + * lisp/core.lisp.in ("AxiomCore"): Use Clozure CL's package CCL. + 2010-02-07 Gabriel Dos Reis <gdr@cs.tamu.edu> Add support for CLozure CL. diff --git a/src/lisp/core.lisp.in b/src/lisp/core.lisp.in index 1d4882ad..5078b47a 100644 --- a/src/lisp/core.lisp.in +++ b/src/lisp/core.lisp.in @@ -56,6 +56,9 @@ ;; image obtained from compiler link will not work. The root cause ;; is a non-ANSI compliant organization of GCL's implementation. #+:gcl (:use "DEFPACKAGE") + ;; Clozure CL sequesters most of its useful extensions, in particular + ;; threads, in the CCL package. + #+:clozure (:use "CCL") (:export "coreQuit" "fatalError" "internalError" |