aboutsummaryrefslogtreecommitdiff
path: root/src/lisp
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-01-30 16:33:16 +0000
committerdos-reis <gdr@axiomatics.org>2010-01-30 16:33:16 +0000
commit433490e3bdb3fca9fe28027c761f0438407b2acc (patch)
tree18f74aea4334960980e10033c6a01adb94f9445f /src/lisp
parent18fe2f66766b2c30614cd5c28681fddf2c0f3ac8 (diff)
downloadopen-axiom-433490e3bdb3fca9fe28027c761f0438407b2acc.tar.gz
import MT package from capable base Lisp systems
Diffstat (limited to 'src/lisp')
-rw-r--r--src/lisp/core.lisp.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lisp/core.lisp.in b/src/lisp/core.lisp.in
index cbcf1724..d12723b4 100644
--- a/src/lisp/core.lisp.in
+++ b/src/lisp/core.lisp.in
@@ -49,6 +49,9 @@
(defpackage "AxiomCore"
#+:common-lisp (:use "COMMON-LISP")
#-:common-lisp (:use "LISP" "USER")
+ #+(and :SBCL :SB-THREAD) (:use "SB-THREAD")
+ #+(and :ECL :THREADS) (:use "MP")
+ #+(and :CLISP :MT) (:use "THREADS")
;; For GCL we need to explicitly use the DEFPACKAGE, otherwise the
;; image obtained from compiler link will not work. The root cause
;; is a non-ANSI compliant organization of GCL's implementation.