r11317: add wnlocal
[kmrcl.git] / kmrcl.asd
index 7a2ff95a0f62ae341a01396e318cd5701fa48944..0fab1a0f6f15f57dd5c3a01d339c114a47d1765a 100644 (file)
--- a/kmrcl.asd
+++ b/kmrcl.asd
 (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 <kevin@rosenberg.net>"
-    :version "1.31+"
     :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
     :licence "LLGPL"
-
+    :depends-on (#+sbcl sb-posix)
     :components 
     ((:file "package")
      (:file "ifstar" :depends-on ("package"))
@@ -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))))