X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=kmrcl.asd;h=0fab1a0f6f15f57dd5c3a01d339c114a47d1765a;hp=13d7442b32244c28f74fbd498eccf6c09110b06c;hb=1ae2138bd3b547e03b1f49df90669687fb79bd3a;hpb=3c0c56d3c9f641e1c07534d55db2577287ef885f diff --git a/kmrcl.asd b/kmrcl.asd index 13d7442..0fab1a0 100644 --- a/kmrcl.asd +++ b/kmrcl.asd @@ -20,16 +20,15 @@ (defpackage #:kmrcl-system (:use #:asdf #:cl)) (in-package #:kmrcl-system) -#+(or allegro cmu lispworks sbcl scl openmcl) +#+(or allegro cmu clisp lispworks sbcl scl openmcl) (pushnew :kmr-mop cl:*features*) (defsystem kmrcl :name "kmrcl" :author "Kevin M. Rosenberg " - :version "1.31+" :maintainer "Kevin M. Rosenberg " :licence "LLGPL" - + :depends-on (#+sbcl sb-posix) :components ((:file "package") (:file "ifstar" :depends-on ("package")) @@ -50,7 +49,7 @@ (:file "math" :depends-on ("macros")) (:file "color" :depends-on ("macros")) #+kmr-mop (:file "mop" :depends-on ("macros")) - #+kmr-mop (:file "attrib-class" :depends-on ("seqs" "mop")) + ;; #+kmr-mop (:file "attrib-class" :depends-on ("seqs" "mop")) (:file "equal" :depends-on ("macros" #+kmr-mop "mop")) (:file "web-utils" :depends-on ("macros" "strings")) (:file "xml-utils" :depends-on ("macros")) @@ -58,7 +57,7 @@ (:file "processes" :depends-on ("macros")) (:file "listener" :depends-on ("sockets" "processes" "console")) (:file "repl" :depends-on ("listener" "strings")) - (:file "os" :depends-on ("macros")) + (:file "os" :depends-on ("macros" "impl")) )) (defmethod perform ((o test-op) (c (eql (find-system 'kmrcl))))